mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 01:31:34 +00:00
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>
15 lines
301 B
YAML
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 }}
|