ci: Actually use Clang in the Clang builds
authorManuel Nickschas <sputnick@quassel-irc.org>
Wed, 16 Dec 2020 08:30:22 +0000 (09:30 +0100)
committerManuel Nickschas <sputnick@quassel-irc.org>
Thu, 17 Dec 2020 13:28:13 +0000 (14:28 +0100)
Turns out that I forgot to actually enable the Clang compiler in
the relevant CI build jobs...

.github/workflows/main.yml

index 6dab044..58c0fdf 100644 (file)
@@ -20,7 +20,7 @@ jobs:
       fail-fast: false
       matrix:
         dist: [ debian-stable, debian-testing, ubuntu-xenial, ubuntu-bionic, ubuntu-eoan, ubuntu-focal ]
       fail-fast: false
       matrix:
         dist: [ debian-stable, debian-testing, ubuntu-xenial, ubuntu-bionic, ubuntu-eoan, ubuntu-focal ]
-        cxx: [ gcc, clang++ ]
+        cxx: [ 'g++', 'clang++' ]
         with-kde: [ -DWITH_KDE=ON ]
         extra-options: [ -DWITH_WEBENGINE=ON ]
         include:
         with-kde: [ -DWITH_KDE=ON ]
         extra-options: [ -DWITH_WEBENGINE=ON ]
         include:
@@ -39,6 +39,7 @@ jobs:
         CCACHE_BASEDIR: ${{ github.workspace }}
         CCACHE_DIR: ${{ github.workspace }}/ccache
         CCACHE_MAXSIZE: 100M
         CCACHE_BASEDIR: ${{ github.workspace }}
         CCACHE_DIR: ${{ github.workspace }}/ccache
         CCACHE_MAXSIZE: 100M
+        CXX: ${{ matrix.cxx }}
 
     steps:
     - name: Check out source code
 
     steps:
     - name: Check out source code