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 e15adf5 commit f274733Copy full SHA for f274733
.github/workflows/ci.yml
@@ -25,6 +25,9 @@ jobs:
25
- name: Build (examples)
26
run: cmake --build ${{github.workspace}}/build --target examples
27
28
+ - name: Build (tools)
29
+ run: cmake --build ${{github.workspace}}/build --target tools
30
+
31
- name: Test
32
working-directory: ${{github.workspace}}/build
33
run: ctest --output-on-failure
appveyor.yml
@@ -24,7 +24,9 @@ before_build:
24
build_script:
- cmake --build build --config "%CONFIG%"
+ - cmake --build build --target examples --config "%CONFIG%"
+ - cmake --build build --target tools --config "%CONFIG%"
test_script:
- cd build
- - ctest -VV -C "%CONFIG%"
+ - ctest -C "%CONFIG%" --output-on-failure
0 commit comments