Skip to content
Merged
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
61 changes: 61 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,13 @@ jobs:
cxx: "g++-14",
cxxver: 20,
}
- {
name: "Linux g++ 14 C++20 ARM",
os: ubuntu-24.04-arm,
buildtype: Release,
cxx: "g++-14",
cxxver: 20,
}
- {
name: "Linux g++ 15 (Debian) C++17",
os: ubuntu-24.04,
Expand All @@ -121,6 +128,22 @@ jobs:
cxx: "g++-15",
cxxver: 20,
}
- {
name: "Linux g++ 15 (Debian) C++23",
os: ubuntu-24.04,
container: debian:testing,
buildtype: Release,
cxx: "g++-15",
cxxver: 23,
}
- {
name: "Linux g++ 15 (Debian) C++26",
os: ubuntu-24.04,
container: debian:testing,
buildtype: Release,
cxx: "g++-15",
cxxver: 26,
}
- {
name: "Linux clang-13 C++17",
os: ubuntu-22.04,
Expand Down Expand Up @@ -247,6 +270,33 @@ jobs:
exe_linker_flags: -lc++,
cxxver: 20,
}
- {
name: "Linux clang-21 C++20",
os: ubuntu-24.04,
buildtype: Release,
cxx: "clang++-21",
cxx_flags: -stdlib=libc++,
exe_linker_flags: -lc++,
cxxver: 20,
}
- {
name: "Linux clang-21 C++23",
os: ubuntu-24.04,
buildtype: Release,
cxx: "clang++-21",
cxx_flags: -stdlib=libc++,
exe_linker_flags: -lc++,
cxxver: 23,
}
- {
name: "Linux clang-21 C++26",
os: ubuntu-24.04,
buildtype: Release,
cxx: "clang++-21",
cxx_flags: -stdlib=libc++,
exe_linker_flags: -lc++,
cxxver: 26,
}
- {
name: "Windows MSVC 2017 (x64) C++17",
os: windows-2019,
Expand Down Expand Up @@ -464,6 +514,17 @@ jobs:
sudo ./llvm.sh 20
sudo apt-get install libc++-20-dev libc++abi-20-dev libunwind-20-dev

- name: Install Clang 21
id: install_clang_21
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'clang++-21' )
shell: bash
working-directory: ${{ env.HOME }}
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 21
sudo apt-get install libc++-21-dev libc++abi-21-dev libunwind-21-dev

- name: Install g++ 10
id: install_gcc_10
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-10' )
Expand Down