Przeglądaj źródła

build: C++20 only workflows (but still ready for C++23)

skypjack 3 miesięcy temu
rodzic
commit
db024cff7d
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      .github/workflows/build.yml
  2. 1 1
      .github/workflows/sanitizer.yml

+ 1 - 1
.github/workflows/build.yml

@@ -87,7 +87,7 @@ jobs:
       matrix:
         os: [windows-latest, macOS-latest, ubuntu-latest]
         id_type: ["std::uint32_t", "std::uint64_t"]
-        cxx_std: [cxx_std_17, cxx_std_20]
+        cxx_std: [cxx_std_20]
 
     timeout-minutes: 15
     runs-on: ${{ matrix.os }}

+ 1 - 1
.github/workflows/sanitizer.yml

@@ -11,7 +11,7 @@ jobs:
       matrix:
         compiler: [clang++]
         id_type: ["std::uint32_t", "std::uint64_t"]
-        cxx_std: [cxx_std_17, cxx_std_20]
+        cxx_std: [cxx_std_20]
 
     runs-on: ubuntu-latest