File tree Expand file tree Collapse file tree 1 file changed +33
-7
lines changed
Expand file tree Collapse file tree 1 file changed +33
-7
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,39 @@ jobs:
1414 build-and-test :
1515 strategy :
1616 matrix :
17- runs_on : ["ubuntu-24.04"]
18- build_runs_on : ["ubuntu-24.04"]
19- arch : ["x86_64"]
20- kernel_compiler : ["gcc", "llvm"]
21- gcc_version : [14]
22- llvm_version : [20]
17+ include :
18+ # x86_64 configs
19+ - arch : x86_64
20+ kernel_compiler : gcc
21+ gcc_version : 14
22+ llvm_version : 20
23+ runs_on : ubuntu-latest
24+ build_runs_on : ubuntu-latest
25+ - arch : x86_64
26+ kernel_compiler : gcc
27+ gcc_version : 15
28+ llvm_version : 20
29+ runs_on : ubuntu-latest
30+ build_runs_on : ubuntu-latest
31+ - arch : x86_64
32+ kernel_compiler : llvm
33+ gcc_version : 14
34+ llvm_version : 20
35+ runs_on : ubuntu-latest
36+ build_runs_on : ubuntu-latest
37+ # aarch64 configs
38+ - arch : aarch64
39+ kernel_compiler : gcc
40+ gcc_version : 14
41+ llvm_version : 20
42+ runs_on : ubuntu-arm
43+ build_runs_on : ubuntu-latest
44+ - arch : aarch64
45+ kernel_compiler : gcc
46+ gcc_version : 15
47+ llvm_version : 20
48+ runs_on : ubuntu-arm
49+ build_runs_on : ubuntu-latest
2350 kernel : ["LATEST"]
2451 build_release : [false]
2552 tests :
5178 run_tests : true
5279 download_sources : true
5380 build_release : ${{ matrix.build_release }}
54-
You can’t perform that action at this time.
0 commit comments