summaryrefslogtreecommitdiff
path: root/.github/workflows/autotools-clang-6.yml
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-09-28 12:54:23 +0200
committerMurray Cumming <murrayc@murrayc.com>2019-09-28 14:14:14 +0200
commit781ce35097e67c080cc6c86a13c1bd5f5312574b (patch)
treed0fd5520574c847a9bbcb9af8569a073e8dcba04 /.github/workflows/autotools-clang-6.yml
parenta98df23dca5747ecc44a6347044811808a71ce6f (diff)
downloadsigc++-781ce35097e67c080cc6c86a13c1bd5f5312574b.tar.gz
GitHub Actions: Use specific compiler versions
We only try compiler versions that are known to have C++17 support. There is no point in trying older compiler versions.
Diffstat (limited to '.github/workflows/autotools-clang-6.yml')
-rw-r--r--.github/workflows/autotools-clang-6.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/autotools-clang-6.yml b/.github/workflows/autotools-clang-6.yml
new file mode 100644
index 0000000..fc62db4
--- /dev/null
+++ b/.github/workflows/autotools-clang-6.yml
@@ -0,0 +1,23 @@
+name: "CI: autotools: clang 6"
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-18.04
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Build
+ run: |
+ sudo apt update
+ sudo apt install mm-common clang-6.0
+ export CXX=clang++-6.0
+ ./autogen.sh
+ ./configure
+ make
+ - name: Test
+ run: make check
+ - name: Distcheck
+ run: make distcheck