Skip to content

Commit

Permalink
Attempt to use gcc-13's standard library
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaim committed Feb 28, 2024
1 parent 98590e0 commit b09b7e0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b09b7e0

Please sign in to comment.