Skip to content

Commit

Permalink
e2e tests: skip label test on ARM
Browse files Browse the repository at this point in the history
Signed-off-by: Kornilios Kourtis <[email protected]>
  • Loading branch information
kkourt committed Oct 31, 2024
1 parent 65ef270 commit 0089022
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/run-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ jobs:
docker pull ${{ needs.prepare.outputs.operatorImage }}
- name: Run e2e Tests
env:
GHA_OS: ${{matrix.os}}
run: |
cd go/src/github.com/cilium/tetragon
make e2e-test E2E_TESTS=${{matrix.package.f}} E2E_BUILD_IMAGES=0 E2E_AGENT=${{ needs.prepare.outputs.agentImage }} E2E_OPERATOR=${{ needs.prepare.outputs.operatorImage }} EXTRA_TESTFLAGS="-cluster-name=${{ env.clusterName }} -args -v=4"
- name: Upload Tetragon Logs
Expand Down
5 changes: 5 additions & 0 deletions tests/e2e/tests/labels/labels_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ package labels_test
import (
"context"
"fmt"
"os"
"testing"
"time"

Expand Down Expand Up @@ -95,6 +96,10 @@ func TestMain(m *testing.M) {
}

func TestLabelsDemoApp(t *testing.T) {
if os.Getenv("GHA_OS") == "ubuntu-22.04-arm64" {
t.Skip("Skipping, see: ://github.com/cilium/tetragon/issues/3060")
}

// Must be called at the beginning of every test
runner.SetupExport(t)

Expand Down

0 comments on commit 0089022

Please sign in to comment.