From b09b7e0e034d8244ec518e9664f119ce5e1a5769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klaim=20=28Jo=C3=ABl=20Lamotte=29?= <142265+Klaim@users.noreply.github.com> Date: Wed, 28 Feb 2024 17:25:31 +0100 Subject: [PATCH] Attempt to use gcc-13's standard library --- .github/workflows/linux.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8d566bb6..8fa0b2f2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -24,16 +24,18 @@ jobs: steps: - - name: Install LLVM and Clang - if: matrix.sys.compiler == 'clang' - uses: egor-tensin/setup-clang@v1 + + # We need a recent gcc install for clang too to find it's standard library by default + - name: Install GCC + uses: egor-tensin/setup-gcc@v1 with: version: ${{matrix.sys.version}} platform: x64 - - name: Install GCC - if: matrix.sys.compiler == 'gcc' - uses: egor-tensin/setup-gcc@v1 + + - name: Install LLVM and Clang + if: matrix.sys.compiler == 'clang' + uses: egor-tensin/setup-clang@v1 with: version: ${{matrix.sys.version}} platform: x64