-
Notifications
You must be signed in to change notification settings - Fork 40
54 lines (54 loc) · 1.68 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "CI",
"on": {
"pull_request": null,
"push": {
"branches-ignore": "master",
"tags-ignore": "*",
},
},
"jobs": {
"linux": {
"runs-on": "ubuntu-latest",
"strategy": {
"fail-fast": false,
"matrix": {
"name": ["fedora-gcc", "fedora-clang", "debian-clang"],
"include": [
{
"name": "fedora-gcc",
"distro": "fedora:latest",
"compiler": "gcc",
"flake": "yes",
},
{
"name": "fedora-clang",
"distro": "fedora:latest",
"compiler": "clang",
},
{
"name": "debian-clang",
"distro": "debian:sid",
"compiler": "clang",
},
],
},
},
"steps": [
{
"name": "Check out code",
"uses": "actions/checkout@v2",
},
{
"name": "Build and test",
"run": "./ci/run_dockerized.sh",
"env": {
"DISTRO": "${{ matrix.distro }}",
"COMPILER": "${{ matrix.compiler }}",
"FLAKE": "${{ matrix.flake }}",
},
},
],
},
},
}