From 9ed67480447a1925c6c4a2dbc947fb100cc3fc39 Mon Sep 17 00:00:00 2001 From: Alexis Engelke Date: Sun, 7 Jul 2024 22:43:00 +0200 Subject: [PATCH] ci: Use Clang for faster compilation --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ddc577d..4b05d6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: - name: Install dependencies run: sudo apt install -y ninja-build meson - name: Configure - run: mkdir build; meson -Dbuildtype=debugoptimized -Dwith_encode2=true build + run: mkdir build; CC=clang CXX=clang++ meson -Dbuildtype=debugoptimized -Dwith_encode2=true build - name: Build run: ninja -v -C build - name: Test