Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
fintarin committed Feb 15, 2024
1 parent c4703dd commit cef4e53
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:
strategy:
matrix:
config:
- { name: Ubuntu GCC, os: ubuntu-latest, cc: gcc, cxx: g++ }
# TODO: remove version specifiers after gcc upgrades to version 13
- { name: Ubuntu GCC, os: ubuntu-latest, cc: gcc-13, cxx: g++-13 }
- { name: Ubuntu Clang, os: ubuntu-latest, cc: clang, cxx: clang++ }
# TODO: remove version specifiers after macOS-latest upgrades to version 13
- { name: macOS GCC, os: macOS-13, cc: gcc, cxx: g++ }
- { name: macOS GCC, os: macOS-13, cc: gcc-13, cxx: g++-13 }
- { name: macOS Clang, os: macOS-13, cc: clang, cxx: clang++ }
- { name: Windows GCC, os: windows-latest, cc: gcc, cxx: g++ }
- { name: Windows Clang, os: windows-latest, cc: clang, cxx: clang++ }
Expand All @@ -34,7 +35,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'true'
submodules: "true"

# TODO: remove this step after the default Clang is updated to version 16
- name: Install LLVM and Clang
Expand Down

0 comments on commit cef4e53

Please sign in to comment.