Skip to content

Commit

Permalink
Run driver tests and use debug preset for CI tests (temporary)
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanielloNTIA committed Jan 16, 2025
1 parent b801cb3 commit 628c106
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ jobs:
if: matrix.architecture != 'x86'
uses: lukka/run-cmake@v10
with:
configurePreset: release64
configurePresetAdditionalArgs: "['-DBUILD_DOCS=OFF']"
buildPreset: release64
testPreset: release64
configurePreset: debug64
configurePresetAdditionalArgs: "['-DBUILD_DOCS=OFF','-DRUN_DRIVER_TESTS=ON']"
buildPreset: debug64
testPreset: debug64

- name: "CMake: Build and Test (32-bit)"
if: matrix.architecture == 'x86'
uses: lukka/run-cmake@v10
with:
configurePreset: release32
configurePresetAdditionalArgs: "['-DBUILD_DOCS=OFF']"
buildPreset: release32
testPreset: release32
configurePreset: debug32
configurePresetAdditionalArgs: "['-DBUILD_DOCS=OFF,'-DRUN_DRIVER_TESTS=ON'']"
buildPreset: debug32
testPreset: debug32

0 comments on commit 628c106

Please sign in to comment.