We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77e831d commit 04a4c6bCopy full SHA for 04a4c6b
.github/workflows/sanity-test.yml
@@ -209,7 +209,7 @@ jobs:
209
fail-fast: false
210
matrix:
211
compiler: [gcc-9, clang-9]
212
- std: [c++11, c++14, c++17, c++2a]
+ cxx-std: ["11", "14", "17", "20"]
213
steps:
214
- uses: aws-actions/configure-aws-credentials@v4
215
with:
@@ -226,9 +226,7 @@ jobs:
226
227
- name: Build aws-crt-cpp with ${{ matrix.compiler }}/${{ matrix.std }}
228
run: |
229
- export CXXFLAGS=-std=${{ matrix.std }}
230
- export VERBOSE=1
231
- python3 builder.pyz build -p aws-crt-cpp --compiler=${{ matrix.compiler }}
+ python3 builder.pyz build -p aws-crt-cpp --compiler=${{ matrix.compiler }} --cmake-extra=-DCMAKE_CXX_STANDARD=${{ matrix.cxx-std }}
232
233
release_notes:
234
strategy:
0 commit comments