From 43c44fd6f794018d08332b2ec60a6c2b1db82740 Mon Sep 17 00:00:00 2001 From: Tobias Leibner <7058290+tobiasleibner@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:56:17 +0100 Subject: [PATCH] Remove redundant C++17 workflows Since the CMAKE_CXX_STANDARD is only a minimum version and does not enforce C++17 usage, these pipelines use C++20 anyway (since that is the default in most compilers today). --- .github/workflows/windows.yml | 5 +---- .github/workflows/windows_shared.yml | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e459284c..d4b15a1f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -21,10 +21,7 @@ jobs: strategy: matrix: toolset: [ClangCl, v143] - std: [17, 20] - exclude: - - toolset: v143 - std: 17 + std: [20] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/windows_shared.yml b/.github/workflows/windows_shared.yml index 5016881d..adced379 100644 --- a/.github/workflows/windows_shared.yml +++ b/.github/workflows/windows_shared.yml @@ -21,10 +21,7 @@ jobs: strategy: matrix: toolset: [ClangCl, v143] - std: [17, 20] - exclude: - - toolset: v143 - std: 17 + std: [20] steps: - uses: actions/checkout@v3