Skip to content

Commit

Permalink
Try 4 processors
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed May 21, 2024
1 parent a0aa483 commit 2f5345d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ jobs:
run: cmake -B build

- name: Build pfUnit
run: cmake --build build --parallel
run: cmake --build build --parallel 4

- name: Build Tests
run: cmake --build build --parallel -t build-tests
run: cmake --build build --parallel 4 -t build-tests

- name: Run Tests
run: ctest --test-dir build --parallel 1 --output-on-failure --repeat until-pass:4 --schedule-random
Expand Down
2 changes: 1 addition & 1 deletion tools/ci-install-mpi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ then
tar xjf ${MPI_IMPL}-${MPI_VER}.tar.bz2 && rm ${MPI_IMPL}-${MPI_VER}.tar.bz2
cd ${MPI_IMPL}-${MPI_VER}
./configure --prefix=${HOME}/local/${MPI_IMPL} --disable-wrapper-rpath --disable-wrapper-runpath --with-hwloc=internal --with-libevent=internal
make -j $(nproc)
make -j 4
make install-strip
cd .. && rm -r ${MPI_IMPL}-${MPI_VER}
exit 0
Expand Down

0 comments on commit 2f5345d

Please sign in to comment.