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 f183037
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .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 @@ -29,7 +35,14 @@ jobs:
- name: Build
shell: cmd
run: |
cmake -DCMAKE_INSTALL_PREFIX=%CWD\=/%/build_cmake/install -DFMILIB_GENERATE_DOXYGEN_DOC=0 -B build_cmake . || exit 1
cmake -DCMAKE_INSTALL_PREFIX=%CD:\=/%/build_cmake/install -DFMILIB_GENERATE_DOXYGEN_DOC=0 -B build_cmake . || exit 1
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
shell: cmd
run: |
cd Test/test_installation
cmake -DFMIL_HOME=%CD:\=/%/../../build_cmake/install .
cmake --build .
ctest --output-on-failure

0 comments on commit f183037

Please sign in to comment.