File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,17 @@ name: Windows
33on : [push, pull_request]
44
55jobs :
6+ debug-test-cpp17 :
7+ runs-on : windows-latest
8+ steps :
9+ - uses : actions/checkout@v3
10+ - name : cmake
11+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_BUILD_BENCHMARKS=ON -DCMAKE_BUILD_PROFILER=ON -DCMAKE_CXX_STANDARD=17
12+ - name : build
13+ run : cmake --build build --parallel 10
14+ - name : test
15+ run : cd build ; ctest --exclude-regex "test-unicode" --output-on-failure
16+
617 release-test-cpp17 :
718 runs-on : windows-latest
819 steps :
1829# C++ 20 standard test:
1930# ##############################################################################
2031
32+ debug-test-cpp20 :
33+ runs-on : windows-latest
34+ steps :
35+ - uses : actions/checkout@v3
36+ - name : cmake
37+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_STANDARD=20
38+ - name : build
39+ run : cmake --build build --parallel 10
40+ - name : test
41+ run : cd build ; ctest --exclude-regex "test-unicode" --output-on-failure
42+
2143 release-test-cpp20 :
2244 runs-on : windows-latest
2345 steps :
You can’t perform that action at this time.
0 commit comments