From b6699f02690b5cde2358552c5e07cc81e6a964f3 Mon Sep 17 00:00:00 2001 From: "Echo J." Date: Thu, 26 Mar 2026 15:27:48 +0200 Subject: [PATCH] CI: Use direct compiler variables instead of a native file This interferes with our ccache setup --- .github/workflows/build-linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 1850b0ff1..36c2deb84 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -49,13 +49,13 @@ jobs: env: CC: "ccache clang" CXX: "ccache clang++" + CC_LD: lld + CXX_LD: lld run: | - meson setup build --wipe --native-file=./scripts/llvm_native.txt + meson setup build --wipe - name: Build with Meson env: - CC: "ccache clang" - CXX: "ccache clang++" CCACHE_DIR: ${{ runner.temp }}/ccache run: | # Use all available cores for faster parallel builds