name: e2e permissions: {} on: pull_request: branches: - "*" paths: - '.github/workflows/e2e.yml' - 'api/**' - 'controllers/**' - 'pkg/**' - 'e2e/*' - 'Dockerfile' - 'go.*' - 'main.go' - 'Makefile' concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: e2e: name: E2E Testing runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 0 - uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 with: go-version-file: 'go.mod' - uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4 with: version: v3.14.2 - name: unit tracing run: sudo make trace-unit - name: e2e tracing run: sudo make trace-e2e - name: build seccomp profile run: make seccomp - name: upload artifact uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: capsule-seccomp path: capsule-seccomp.json