Skip to content

feat: adding support for nodeSelector with runtime-enforcer debugger deployment #1023

feat: adding support for nodeSelector with runtime-enforcer debugger deployment

feat: adding support for nodeSelector with runtime-enforcer debugger deployment #1023

Workflow file for this run

name: E2E Tests
on:
pull_request:
jobs:
test-e2e:
permissions:
contents: read
strategy:
matrix:
arch: [amd64, arm64]
include:
- arch: amd64
runner: ubuntu-latest
- arch: arm64
runner: ubuntu-24.04-arm
name: E2E test
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: "go.mod"
- name: Install system dependencies for eBPF build
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
libelf-dev \
clang \
llvm \
libbpf-dev
- name: Running Test e2e
run: |
make test-e2e
- name: Upload cluster logs
if: failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: e2e-test-cluster-logs
path: test/e2e/logs
if-no-files-found: error
retention-days: 7