From 61a7f27e69337d0ec934bffcd70839c5787497a7 Mon Sep 17 00:00:00 2001 From: Peter Hunt Date: Tue, 1 Oct 2024 12:38:20 -0400 Subject: [PATCH] gh actions: call make correctly Signed-off-by: Peter Hunt --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 4d8d3675..08ca18ce 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -46,8 +46,8 @@ jobs: - name: Run CRI-O integration tests run: | CRIO_DIR=$(sudo go env GOPATH)/src/github.com/cri-o/cri-o - sudo -D "$CRIO_DIR" make all test-binaries + sudo make -C "$CRIO_DIR" all test-binaries # skip seccomp tests because they have permission denied issues in a container and accept signed image as they don't use conmon - sudo -D "$CRIO_DIR" -E $(CRIO_DIR)/test/test_runner.sh $(ls $(CRIO_DIR)/test/ | grep bats | grep -E -v seccomp\|image\|policy) + sudo -D "$CRIO_DIR" -E "$CRIO_DIR"/test/test_runner.sh $(sudo ls "$CRIO_DIR"/test/ | grep bats | grep -E -v seccomp\|image\|policy) env: JOBS: '2'