criu/.github/workflows/centos-test.yml
Adrian Reber ffac3d649d ci: add CentOS 8 based CI run
Our CentOS based CI run is based on CentOS 7. CentOS 8 exists already
for some time and CentOS 7 will probably go end of life at some point.

This adds a CentOS 8 based CI run to be prepared for the time CentOS 7
goes away.

Signed-off-by: Adrian Reber <areber@redhat.com>
2020-11-08 01:55:25 -08:00

15 lines
301 B
YAML

name: CentOS Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
target: [centos7, centos8]
steps:
- uses: actions/checkout@v2
- name: Run CentOS ${{ matrix.target }} Test
run: sudo -E make -C scripts/ci ${{ matrix.target }}