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 2, 2024
1 parent 59b266c commit 3619051
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ 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 rm -f "$CRIO_DIR"/test/seccomp*.bats "$CRIO_DIR"/test/image.bats "$CRIO_DIR"/test/policy.bats
sudo sh -c "cd $CRIO_DIR; ./test/test_runner.sh"
env:
JOBS: '2'

0 comments on commit 3619051

Please sign in to comment.