Skip to content

👷 Add gcc 14 to CI #217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2025
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
17 changes: 12 additions & 5 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
CMAKE_GENERATOR: Ninja
DEFAULT_CXX_STANDARD: 20
DEFAULT_LLVM_VERSION: 20
DEFAULT_GCC_VERSION: 13
DEFAULT_GCC_VERSION: 14
MULL_LLVM_VERSION: 18
MULL_VERSION: 0.24.0
HYPOTHESIS_PROFILE: default
Expand All @@ -30,7 +30,7 @@ jobs:
fail-fast: false
matrix:
compiler: [clang, gcc]
version: [12, 13, 16, 17, 18, 19, 20]
version: [12, 13, 14, 16, 17, 18, 19, 20]
cxx_standard: [17, 20]
stdlib: [libstdc++, libc++]
build_type: [Debug]
Expand Down Expand Up @@ -87,6 +87,11 @@ jobs:
- compiler: gcc
toolchain_root: "/usr"
cxx_flags: ""
- version: 14
compiler: gcc
install: sudo apt update && sudo apt install -y gcc-14 g++-14
cc: "gcc-14"
cxx: "g++-14"
- version: 13
compiler: gcc
install: sudo apt update && sudo apt install -y gcc-13 g++-13
Expand All @@ -109,6 +114,8 @@ jobs:
version: 17
- compiler: gcc
version: 16
- compiler: clang
version: 14
- compiler: clang
version: 13
- compiler: clang
Expand Down Expand Up @@ -320,9 +327,9 @@ jobs:
install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 20
toolchain_root: "/usr/lib/llvm-20"
- compiler: gcc
cc: "gcc-13"
cxx: "g++-13"
install: sudo apt update && sudo apt install -y gcc-13 g++-13
cc: "gcc-14"
cxx: "g++-14"
install: sudo apt update && sudo apt install -y gcc-14 g++-14
toolchain_root: "/usr"

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ Some of the extras are available only with C++20 or later.
*stdx* supports:

- clang 14 through 19
- gcc 12 through 13
- gcc 12 through 14

See the [full documentation](https://intel.github.io/cpp-std-extensions/).