Skip to content

Commit

Permalink
removing -j from ctest in agate.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeidler3 committed Nov 6, 2024
1 parent a530576 commit feec86e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/agate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
cd ./KORC
./build.sh
cd ./build && ctest -j ${{ steps.cpu-cores.outputs.count }} --output-on-failure
cd ./build && ctest --output-on-failure
- name: Show Cache
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/bin/egyro_test)
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/bin/mars_test)
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/bin/aorsa_test)

foreach(RANK IN ITEMS 1 2 4 8) #16)
foreach(RANK IN ITEMS 1 2 4 8)
if(${RANK} LESS_EQUAL ${MPIEXEC_MAX_NUMPROCS})
add_test (NAME egyro_test_${RANK}
COMMAND ${CMAKE_BINARY_DIR}/egyro_test/korc_egyro.sh ${RANK}
Expand Down

0 comments on commit feec86e

Please sign in to comment.