From 5ea31534cb64c988e9c0ce8c66fcb1527582b08b Mon Sep 17 00:00:00 2001 From: Alessio Greggi Date: Sat, 7 Sep 2024 02:42:56 +0200 Subject: [PATCH] connect pipelines Signed-off-by: Alessio Greggi --- .github/workflows/tests.yaml | 3 ++- utils.go | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e8eceeb..38e9a1b 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -191,6 +191,7 @@ jobs: trace-integration-test: runs-on: ubuntu-latest + needs: [integration-test] steps: - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # ratchet:actions/checkout@v3 @@ -255,7 +256,7 @@ jobs: build-seccomp-profile: runs-on: ubuntu-latest - needs: [trace-unit-test] + needs: [trace-unit-test, trace-integration-test] steps: - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # ratchet:actions/checkout@v3 diff --git a/utils.go b/utils.go index 33dedd4..52f3a56 100644 --- a/utils.go +++ b/utils.go @@ -58,6 +58,7 @@ func execCmd(ts *testscript.TestScript, neg bool, args []string) { "main.main", "--save", "--directory", + // TODO: change it to a general one "/home/runner/work/fwdctl/fwdctl/integration-test-syscalls", "--include-cmd-stdout", "--include-cmd-stderr",