Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
Signed-off-by: Trung-DV <TrungDV.PMB@gmail.com>
  • Loading branch information
Trung-DV committed Apr 23, 2024
1 parent eae054e commit 87ed230
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@ jobs:
- id: set-packages
name: Listing e2e tests packages
shell: bash
run: echo PACKAGES=$(make ls-e2e-test | jq -Rsc 'split("\n")[:-1]') | tee -a $GITHUB_STEP_SUMMARY | tee -a $GITHUB_OUTPUT
run: |
echo PACKAGES=$(make ls-e2e-test | jq -Rnc '[inputs | {"s": split("/")[-1], "f":.}]') | tee -a $GITHUB_STEP_SUMMARY | tee -a $GITHUB_OUTPUT
run-e2e-test:
needs: list-e2e-pkg
runs-on: ${{ matrix.os }}
timeout-minutes: 40
name: '${{matrix.os}}-${{ matrix.package.s }}'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -98,7 +101,7 @@ jobs:
run: |
cd go/src/github.com/cilium/tetragon
make e2e-test E2E_TESTS=${{matrix.package}} E2E_BUILD_IMAGES=0 E2E_AGENT=${{ steps.vars.outputs.agentImage }} E2E_OPERATOR=${{ steps.vars.outputs.operatorImage }} EXTRA_TESTFLAGS="-cluster-name=${{ env.clusterName }} -args -v=4"
make e2e-test E2E_TESTS=${{matrix.package.f}} E2E_BUILD_IMAGES=0 E2E_AGENT=${{ steps.vars.outputs.agentImage }} E2E_OPERATOR=${{ steps.vars.outputs.operatorImage }} EXTRA_TESTFLAGS="-cluster-name=${{ env.clusterName }} -args -v=4"
- name: Upload Tetragon Logs
if: failure() || cancelled()
Expand Down

0 comments on commit 87ed230

Please # to comment.