From 118f68d3c0547580f4c48d62ec9076a7a458e678 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Wed, 16 Dec 2020 09:30:22 +0100 Subject: [PATCH 1/1] 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... --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.20.1