Skip to content

Commit

Permalink
Tweak and fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeekman committed Jan 12, 2024
1 parent 4f37a6b commit fba8237
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
run: |
mkdir build
cmake -S . -B build -Wdev -DCMAKE_INSTALL_PREFIX:PATH="${HOME}/OpenCoarrays" -DCMAKE_BUILD_TYPE:STRING="Debug" ..
cmake --build build make -j $(nproc)
cmake --build -t install -j || echo "installation failed"
cmake --build build -j $(nproc)
cmake --build build -t install -j $(nproc) || echo "installation failed"
ctest --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
make install
make uninstall
2 changes: 1 addition & 1 deletion .github/workflows/win-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
echo "${{ steps.setup-mpi.outputs.mpi }}"
set -o verbose
mpiexec -help
# mpiexec -help
type mpiexec
ls "${I_MPI_ROOT}/bin"
ls "${I_MPI_ROOT}"
Expand Down

0 comments on commit fba8237

Please sign in to comment.