Skip to content

Commit

Permalink
CI: Add c++20 gnu build
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Aug 28, 2024
1 parent 7d12086 commit 4e4c54d
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build_variant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ jobs:
sanitizer: "NO" # address, integer, thread, memory, undefined
}
- {
name: "C++20 build serial",
name: "C++20 build serial clang",
os: ubuntu-latest,
compiler: "clang",
debug: "NO",
Expand All @@ -336,6 +336,23 @@ jobs:
extra_args: "-DCMAKE_CXX_STANDARD:STRING=20",
sanitizer: "NO" # address, integer, thread, memory, undefined
}
- {
name: "C++20 build serial gnu",
os: ubuntu-latest,
compiler: "gnu",
debug: "NO",
threadsafe: "NO",
fortran: "YES",
use_kokkos: "NO",
use_adios2: "NO",
use_faodel: "NO",
use_metis: "NO",
use_catalyst2: "NO",
gtest: "NO",
extra: "",
extra_args: "-DCMAKE_CXX_STANDARD:STRING=20",
sanitizer: "NO" # address, integer, thread, memory, undefined
}
- {
name: "C++20 build parallel",
os: ubuntu-latest,
Expand Down

0 comments on commit 4e4c54d

Please sign in to comment.