Skip to content

Commit

Permalink
comment ctest
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Nov 29, 2023
1 parent fd10866 commit 8edaee4
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,16 @@ jobs:
with:
limit-access-to-actor: false

- name: Build the c++ library to run tests
run: |
cd application
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DWITH_TESTS=ON -DCMAKE_PREFIX_PATH=${CONDA_PREFIX}
make
cd tests
ctest
# # This doesn't work in the CI for some reason. ctest is somewhat redundant, but it's useful during development.
# - name: Build the c++ library and run tests
# run: |
# cd application
# mkdir -p build
# cd build
# cmake .. -DCMAKE_BUILD_TYPE=Debug -DWITH_TESTS=ON -DCMAKE_PREFIX_PATH=${CONDA_PREFIX}
# make
# cd tests
# ctest

- name: Build the c++ library
run: |
Expand Down

0 comments on commit 8edaee4

Please sign in to comment.