File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CI: autotools: gcc 10"
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-20.04
9
+
10
+ steps :
11
+ - uses : actions/checkout@v1
12
+ - name : Build
13
+ run : |
14
+ sudo apt update
15
+ sudo apt install mm-common g++-10
16
+ export CXX=g++-10
17
+ ./autogen.sh --enable-warnings=fatal
18
+ make
19
+ - name : Test
20
+ run : make check
21
+ - name : Distcheck
22
+ run : |
23
+ # distcheck runs configure again so we need to specify CXX again.
24
+ export CXX=g++-10
25
+ make distcheck
Original file line number Diff line number Diff line change
1
+ name : " CI: autotools: gcc 9"
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-20.04
9
+
10
+ steps :
11
+ - uses : actions/checkout@v1
12
+ - name : Build
13
+ run : |
14
+ sudo apt update
15
+ sudo apt install mm-common g++-9
16
+ export CXX=g++-9
17
+ ./autogen.sh --enable-warnings=fatal
18
+ make
19
+ - name : Test
20
+ run : make check
21
+ - name : Distcheck
22
+ run : |
23
+ # distcheck runs configure again so we need to specify CXX again.
24
+ export CXX=g++-9
25
+ make distcheck
You can’t perform that action at this time.
0 commit comments