Skip to content

Commit

Permalink
e2e tests: skip label test on ARM
Browse files Browse the repository at this point in the history
[ upstream commit 0089022 ("e2e tests: skip label test on ARM") ]

e2e tests: skip label test on ARM

Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>
  • Loading branch information
kkourt authored and mtardy committed Nov 19, 2024
1 parent e4b1de8 commit 989cf7e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/run-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ jobs:
docker pull ${{ steps.vars.outputs.operatorImage }}
- name: Run e2e Tests
env:
GHA_OS: ${{matrix.os}}
run: |
cd go/src/github.com/cilium/tetragon
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 @@ -93,6 +94,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 989cf7e

Please sign in to comment.