Skip to content

Commit

Permalink
gh actions: call make correctly
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Hunt <[email protected]>
  • Loading branch information
haircommander committed Oct 1, 2024
1 parent 31b0bb6 commit 60a5338
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 sh -c "cd $CRIO_DIR && ./test/test_runner.sh $(ls test/ | grep bats | grep -E -v seccomp\|image\|policy)"
env:
JOBS: '2'

0 comments on commit 60a5338

Please sign in to comment.