From: Manuel Nickschas Date: Wed, 16 Dec 2020 08:30:22 +0000 (+0100) Subject: ci: Actually use Clang in the Clang builds X-Git-Tag: 0.14-rc1~4 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=118f68d3c0547580f4c48d62ec9076a7a458e678;hp=48fd5ba54406c1140de7123d48d65f117b2053e7 ci: Actually use Clang in the Clang builds Turns out that I forgot to actually enable the Clang compiler in the relevant CI build jobs... --- diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6dab044e..58c0fdfa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,7 @@ jobs: 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: @@ -39,6 +39,7 @@ jobs: CCACHE_BASEDIR: ${{ github.workspace }} CCACHE_DIR: ${{ github.workspace }}/ccache CCACHE_MAXSIZE: 100M + CXX: ${{ matrix.cxx }} steps: - name: Check out source code