Skip to content

Commit

Permalink
External test
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Jul 2, 2024
1 parent fe3a820 commit 582ebd8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
cmake --build build_cmake --target install --parallel 4
- name: Test
run: ctest --test-dir build_cmake --output-on-failure
- name: External test
run: |
cd Test/test_installation
cmake -DFMIL_HOME=~/.local .
cmake --build .
ctest --output-on-failure
windows:
runs-on: windows-latest
Expand All @@ -33,3 +39,9 @@ jobs:
cmake --build build_cmake --target install --parallel 4 || exit 1
- name: Test
run: ctest --test-dir build_cmake --output-on-failure -C Release --timeout 200
- name: External test
run: |
cd Test/test_installation
cmake -DFMIL_HOME=%CWD\=/%/../../build_cmake/install .
cmake --build .
ctest --output-on-failure

0 comments on commit 582ebd8

Please sign in to comment.