Skip to content

Commit 0a149f2

Browse files
committed
GitHub Actions: Add workflow for gcc 9
Using Ubuntu 19.10 (Eoan) instead of Ubuntu 18.04.
1 parent 781ce35 commit 0a149f2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/autotools-gcc-9.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "CI: autotools: gcc 9"
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: docker://ubuntu:19.10
13+
- name: Build
14+
run: |
15+
sudo apt update
16+
sudo apt install mm-common g++-9
17+
export CXX=g++-9
18+
./autogen.sh
19+
./configure
20+
make
21+
- name: Test
22+
run: make check
23+
- name: Distcheck
24+
run: make distcheck

0 commit comments

Comments
 (0)