Skip to content

Commit

Permalink
Merge pull request #532 from m-a-d-n-e-s-s/JonathonMisiewicz-patch-1
Browse files Browse the repository at this point in the history
Make build pass
  • Loading branch information
evaleev authored Mar 21, 2024
2 parents 8c625b7 + afa2c4a commit 3bd89a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
-DMPIEXEC_PREFLAGS='--bind-to;none;--allow-run-as-root'
-DBUILD_TESTING=ON
-DMADNESS_ENABLE_CEREAL=ON
-DMADNESS_BUILD_MADWORLD_ONLY=${{ matrix.task_backend != 'Threads' }}
-DMADNESS_BUILD_MADWORLD_ONLY=${{ matrix.task_backend != 'Threads' || matrix.build_type == 'Debug' }}
-DMADNESS_BUILD_LIBRARIES_ONLY=${{ matrix.build_type != 'Debug' }}
steps:
Expand Down Expand Up @@ -145,6 +145,7 @@ jobs:
cmake -S $GITHUB_WORKSPACE/doc/tutorial -B test_install -DCMAKE_PREFIX_PATH=${{github.workspace}}/install
cmake --build test_install
test_install/test_runtime
if [ "X${{ matrix.task_backend }}" = "XThreads" ]; then # if built more than just MADWorld run the HF test
# if built more than just MADWorld run the HF test
if [ "X${{ matrix.task_backend }}" = "XThreads" && "X${{ matrix.build_type }}" != "XDebug" ]; then
test_install/simple_hf
fi

0 comments on commit 3bd89a0

Please sign in to comment.