Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
strategy:
matrix:
go-version: [stable, oldstable]
critest: [0, 1]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
Expand All @@ -39,13 +40,13 @@ jobs:
sudo apt-get update
sudo apt-get install -y bats
- run: sudo hack/github-actions-setup
- name: Run CRI-O integration tests
- name: Run CRI-O integration tests (critest=${{ matrix.critest }})
run: |
CRIO_DIR=$(sudo go env GOPATH)/src/github.com/cri-o/cri-o
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 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"
sudo sh -c "cd $CRIO_DIR; RUN_CRITEST=${{ matrix.critest }} ./test/test_runner.sh"
env:
JOBS: '2'

Expand Down
Loading