Skip to content

Commit f274733

Browse files
committed
CI: Always build tools and examples too
1 parent e15adf5 commit f274733

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
- name: Build (examples)
2626
run: cmake --build ${{github.workspace}}/build --target examples
2727

28+
- name: Build (tools)
29+
run: cmake --build ${{github.workspace}}/build --target tools
30+
2831
- name: Test
2932
working-directory: ${{github.workspace}}/build
3033
run: ctest --output-on-failure

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ before_build:
2424

2525
build_script:
2626
- cmake --build build --config "%CONFIG%"
27+
- cmake --build build --target examples --config "%CONFIG%"
28+
- cmake --build build --target tools --config "%CONFIG%"
2729

2830
test_script:
2931
- cd build
30-
- ctest -VV -C "%CONFIG%"
32+
- ctest -C "%CONFIG%" --output-on-failure

0 commit comments

Comments
 (0)