Skip to content

Commit

Permalink
Remove redundant C++17 workflows
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
tobiasleibner committed Feb 3, 2025
1 parent 187b8ab commit 43c44fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/windows_shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 43c44fd

Please sign in to comment.