File tree 1 file changed +18
-8
lines changed
1 file changed +18
-8
lines changed Original file line number Diff line number Diff line change 12
12
workflow_dispatch :
13
13
14
14
jobs :
15
-
15
+
16
16
linux-test :
17
17
name : Linux test
18
+ strategy :
19
+ fail-fast : false
20
+ matrix :
21
+ compiler : [g++-11]
18
22
runs-on : ubuntu-latest
19
23
20
24
steps :
21
25
- uses : actions/checkout@v2
26
+ with :
27
+ submodules : recursive
28
+
22
29
- name : make
23
30
run : |
24
- git submodule init
25
- git submodule update --init --recursive
26
- make
31
+ make -j CXX=${{matrix.compiler}}
27
32
28
33
- name : predict (out dir)
29
34
run : |
@@ -40,13 +45,18 @@ jobs:
40
45
41
46
macos-build :
42
47
name : macOS test
43
- runs-on : macOS-latest
48
+ strategy :
49
+ fail-fast : false
50
+ matrix :
51
+ compiler : [g++-11]
52
+ runs-on : macOS-12
44
53
45
54
steps :
46
55
- uses : actions/checkout@v2
56
+ with :
57
+ submodules : recursive
58
+
47
59
- name : make
48
60
run : |
49
- git submodule init
50
- git submodule update --init --recursive
51
- make
61
+ make -j CXX=${{matrix.compiler}}
52
62
You can’t perform that action at this time.
0 commit comments