Skip to content

Commit fba8237

Browse files
committed
Tweak and fix CI
1 parent 4f37a6b commit fba8237

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
run: |
2626
mkdir build
2727
cmake -S . -B build -Wdev -DCMAKE_INSTALL_PREFIX:PATH="${HOME}/OpenCoarrays" -DCMAKE_BUILD_TYPE:STRING="Debug" ..
28-
cmake --build build make -j $(nproc)
29-
cmake --build -t install -j || echo "installation failed"
28+
cmake --build build -j $(nproc)
29+
cmake --build build -t install -j $(nproc) || echo "installation failed"
3030
ctest --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
3131
make install
3232
make uninstall

.github/workflows/win-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
echo "${{ steps.setup-mpi.outputs.mpi }}"
3939
set -o verbose
40-
mpiexec -help
40+
# mpiexec -help
4141
type mpiexec
4242
ls "${I_MPI_ROOT}/bin"
4343
ls "${I_MPI_ROOT}"

0 commit comments

Comments
 (0)