We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1ad17 commit 68feec9Copy full SHA for 68feec9
.github/workflows/ci-pr-validation.yaml
@@ -289,7 +289,6 @@ jobs:
289
timeout-minutes: 120
290
name: Build CPP Client on macOS
291
runs-on: macos-12
292
- needs: unit-tests
293
steps:
294
- name: checkout
295
uses: actions/checkout@v3
@@ -306,6 +305,12 @@ jobs:
306
305
run: |
307
cmake --build ./build-macos --parallel --config Release
308
+ - name: Build with C++20
309
+ shell: bash
310
+ run: |
311
+ cmake -B build-macos-cpp20 -DCMAKE_CXX_STANDARD=20
312
+ cmake --build build-macos-cpp20 -j8
313
+
314
cpp-build-macos-static:
315
316
name: Build CPP Client on macOS with static dependencies
0 commit comments