summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-09-28 13:40:47 +0200
committerMurray Cumming <murrayc@murrayc.com>2019-09-28 14:14:14 +0200
commit0a149f292e726c6a6b18d99391ac3a4887005b37 (patch)
tree65cf9fb2fdb4f27afe0e1d99b431e0dbbe2166aa
parent781ce35097e67c080cc6c86a13c1bd5f5312574b (diff)
downloadsigc++-0a149f292e726c6a6b18d99391ac3a4887005b37.tar.gz
GitHub Actions: Add workflow for gcc 9
Using Ubuntu 19.10 (Eoan) instead of Ubuntu 18.04.
-rw-r--r--.github/workflows/autotools-gcc-9.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/autotools-gcc-9.yml b/.github/workflows/autotools-gcc-9.yml
new file mode 100644
index 0000000..165fc00
--- /dev/null
+++ b/.github/workflows/autotools-gcc-9.yml
@@ -0,0 +1,24 @@
+name: "CI: autotools: gcc 9"
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - uses: docker://ubuntu:19.10
+ - name: Build
+ run: |
+ sudo apt update
+ sudo apt install mm-common g++-9
+ export CXX=g++-9
+ ./autogen.sh
+ ./configure
+ make
+ - name: Test
+ run: make check
+ - name: Distcheck
+ run: make distcheck