summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-10-27 21:27:13 +0100
committerMurray Cumming <murrayc@murrayc.com>2019-10-27 22:14:36 +0100
commitb486a13e14cd2596532e97bd089b85742dcba8e3 (patch)
tree620d8dc3ff2dc2a30b0d4d40c075577902d87177
parenta87f57feca7aded51f7eb99f3cdba3925aeb8267 (diff)
downloadsigc++-b486a13e14cd2596532e97bd089b85742dcba8e3.tar.gz
GitHub Actions CI: Add a clang++ 9 build
This uses a newer Ubuntu version by specifying a different docker image. Because of that, we no longer need to use sudo with apt.
-rw-r--r--.github/workflows/autotools-clang-9.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/autotools-clang-9.yml b/.github/workflows/autotools-clang-9.yml
new file mode 100644
index 0000000..b2f9af6
--- /dev/null
+++ b/.github/workflows/autotools-clang-9.yml
@@ -0,0 +1,24 @@
+name: "CI: autotools: clang 9"
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ container: ubuntu:19.10
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Build
+ run: |
+ apt update
+ apt install mm-common clang-9 --yes
+ export CXX=clang++-9
+ ./autogen.sh --enable-warnings=fatal
+ ./configure
+ make
+ - name: Test
+ run: make check
+ - name: Distcheck
+ run: make distcheck