summaryrefslogtreecommitdiff
path: root/.github/workflows/autotools-clang-6.yml
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-10-27 22:21:51 +0100
committerMurray Cumming <murrayc@murrayc.com>2019-10-27 22:50:48 +0100
commit94f2fe5e8c62c001da9cbbbd14e5efa6a0302df6 (patch)
treef1b435edb9dbf423fd1fbc4f7a86ea0109b5cee5 /.github/workflows/autotools-clang-6.yml
parentb486a13e14cd2596532e97bd089b85742dcba8e3 (diff)
downloadsigc++-94f2fe5e8c62c001da9cbbbd14e5efa6a0302df6.tar.gz
GitHub Actions CI: Specify CXX before make distcheck
As in the build step. Otherwise, the distcheck's configure run will just pick up the default compiler again.
Diffstat (limited to '.github/workflows/autotools-clang-6.yml')
-rw-r--r--.github/workflows/autotools-clang-6.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/autotools-clang-6.yml b/.github/workflows/autotools-clang-6.yml
index a2643db..61697ae 100644
--- a/.github/workflows/autotools-clang-6.yml
+++ b/.github/workflows/autotools-clang-6.yml
@@ -20,4 +20,7 @@ jobs:
- name: Test
run: make check
- name: Distcheck
- run: make distcheck
+ run: |
+ # distcheck runs configure again so we need to specify CXX again.
+ export CXX=clang++-6.0
+ make distcheck