criu/.github/workflows/docker-test.yml
Adrian Reber a2b018a188 ci: try to fix broken docker test
Upgrade to 22.04 base image and use the existing version of docker.

Signed-off-by: Adrian Reber <areber@redhat.com>
2024-09-11 16:02:11 -07:00

19 lines
484 B
YAML

name: Docker Test
on: [push, pull_request]
# Cancel any preceding run on the pull request.
concurrency:
group: docker-test-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/criu-dev' }}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v2
- name: Run Docker Test (${{ matrix.os }})
run: sudo make -C scripts/ci docker-test