Skip to content

Commit

Permalink
change preset name
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Basler committed Jun 2, 2024
1 parent f504bbb commit 01ee12a
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/windows_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,13 @@ jobs:

- run: conan install . --options enable_tests=True --build=missing
- run: cmake --list-presets
- run: cmake --preset conan-release
- run: cmake --preset conan-default
- run: cmake --build --list-presets
- run: cmake --build --preset conan-release -j${{ steps.cpu-cores.outputs.count }}
- run: cmake --build --preset conan-default -j${{ steps.cpu-cores.outputs.count }}
- run: ctest --list-presets
- run: ctest --preset conan-release

- name: cmake
run: cmake -S . -B build -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=cmake/conan_provider.cmake -DLIBCMAES_BUILD_PYTHON=On -DLIBCMAES_BUILD_TESTS=On -DLIBCMAES_USE_OPENMP=On -DCMAKE_BUILD_TYPE=Release
- name: compile
run: cd build && cmake --build . -j${{ steps.cpu-cores.outputs.count }} --config Release
- name: Run ctest
run: cd build && ctest -j${{ steps.cpu-cores.outputs.count }} --output-on-failure -C Release
- run: ctest --preset conan-default --output-on-failure





0 comments on commit 01ee12a

Please sign in to comment.