From d016b01ea3c6b3ed3c92ea9c89e623201a5bf232 Mon Sep 17 00:00:00 2001 From: "Jonathan M. Waldrop" Date: Thu, 20 Nov 2025 01:00:09 -0600 Subject: [PATCH 1/2] Update test compilers; Set cpp standard --- .github/workflows/pull_request.yaml | 2 +- CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 9de4067..87f3879 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -32,4 +32,4 @@ jobs: test_library: uses: NWChemEx/.github/.github/workflows/test_nwx_library.yaml@master with: - compilers: '["gcc-11", "clang-14"]' + compilers: '["gcc-14", "clang-19"]' diff --git a/CMakeLists.txt b/CMakeLists.txt index e658957..00ca629 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,6 +21,7 @@ include(cmake/get_nwx_cmake.cmake) include(get_version_from_git) get_version_from_git(simde_version "${CMAKE_CURRENT_LIST_DIR}") project(simde VERSION "${simde_version}" LANGUAGES CXX) +set(CMAKE_CXX_STANDARD 20) include(nwx_versions) include(get_cmaize) From 3e8e03c13b78b0c38d92d5e7ba62a960c22be2ce Mon Sep 17 00:00:00 2001 From: "Jonathan M. Waldrop" Date: Thu, 20 Nov 2025 13:03:43 -0600 Subject: [PATCH 2/2] Update clang version in pull request workflow --- .github/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 87f3879..7a6060d 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -32,4 +32,4 @@ jobs: test_library: uses: NWChemEx/.github/.github/workflows/test_nwx_library.yaml@master with: - compilers: '["gcc-14", "clang-19"]' + compilers: '["gcc-14", "clang-18"]'