Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
type: string
env:
CC: ${{ inputs.compiler }}
CXX: ${{ inputs.compiler == 'clang-19' && 'clang++-19' || 'g++' }}
CXX: ${{ inputs.compiler == 'clang-20' && 'clang++-20' || 'g++' }}

jobs:
build:
Expand All @@ -29,7 +29,7 @@ jobs:
pipx ensurepath
sudo pipx install conan
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
sudo apt install clang-tools-19
sudo apt install clang-tools-20 clang-20

- name: Setup conan
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
ubuntu_version: [22,24]
build_type: [Debug,RelWithDebInfo]
compiler: [gcc, clang-19]
compiler: [gcc, clang-20]
fail-fast: false
uses: ./.github/workflows/build-and-test.yml
with:
Expand Down