ci/test: exclude some runc_nodmz jobs

1. Sort the list of matrix excludes in the order of matrix,
   add comments explaining why we disable some jobs.

2. Exclude some jobs:
 - runc_nodmz && go 1.20.x
 - runc_nodmz && -race

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2024-03-29 15:41:01 -07:00
parent 4641f17e86
commit 851e3882b7
+14 -4
View File
@@ -30,16 +30,26 @@ jobs:
criu: ["", "criu-dev"]
dmz: ["", "runc_nodmz"]
exclude:
- criu: criu-dev
rootless: rootless
# Disable most of criu-dev jobs, as they are expensive
# (need to compile criu) and don't add much value/coverage.
- criu: criu-dev
go-version: 1.20.x
- criu: criu-dev
rootless: rootless
- criu: criu-dev
race: -race
- dmz: runc_nodmz
criu: criu-dev
- criu: criu-dev
dmz: runc_nodmz
# Disable most of runc_nodmz jobs, as they don't add much value
# (as dmz is disabled by default anyway).
- dmz: runc_nodmz
os: ubuntu-20.04
- dmz: runc_nodmz
go-version: 1.20.x
- dmz: runc_nodmz
rootless: rootless
- dmz: runc_nodmz
race: -race
runs-on: ${{ matrix.os }}
steps: