We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4561522 commit ae07db7Copy full SHA for ae07db7
.github/workflows/main.yml
@@ -68,8 +68,15 @@ jobs:
68
run: |
69
"${GITHUB_WORKSPACE}/bin/bazel" test --config=clang --config=cpp20 //...
70
71
- - name: Build & Test (CMake)
+ - name: Build (CMake)
72
73
cmake -S . -B build -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
74
cmake --build build
75
ctest --test-dir build --output-on-failure
76
+
77
+ - name: Build w/ Tests (CMake)
78
+ run: |
79
+ rm -rf build
80
+ cmake -S . -B build -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DPIXELMATCH_BUILD_TESTS=ON
81
+ cmake --build build
82
+ ctest --test-dir build --output-on-failure
0 commit comments