Skip to content

chore(deps): update dependency containers/automation_images to v20240821 #1103

chore(deps): update dependency containers/automation_images to v20240821

chore(deps): update dependency containers/automation_images to v20240821 #1103

Workflow file for this run

name: integration
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
conmon:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-conmon-${{ hashFiles('**/go.mod') }}
restore-keys: go-integration-conmon-
- run: hack/github-actions-setup
- name: Run conmon integration tests
run: |
sudo make vendor
sudo mkdir -p /var/run/crio
sudo make test-binary
cri-o:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-cri-o-${{ hashFiles('**/go.mod') }}
restore-keys: go-integration-cri-o-
- run: hack/github-actions-setup
- name: Run CRI-O integration tests
run: |
cd $(go env GOPATH)/src/github.com/cri-o/cri-o
make 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 -E test/test_runner.sh $(ls test/ | grep bats | grep -E -v seccomp\|image\|policy)
env:
JOBS: '2'