Skip to content

Commit

Permalink
Fix and small tweaks to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeekman committed Jan 12, 2024
1 parent 0d2f9cb commit 717ebef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
cmake -S . -B build -Wdev -DCMAKE_INSTALL_PREFIX:PATH="${HOME}/OpenCoarrays" -DCMAKE_BUILD_TYPE:STRING="Debug" ..
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
ctest --test-dir build --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
cd build
make uninstall
4 changes: 1 addition & 3 deletions .github/workflows/win-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ jobs:
cmake -Wdev -G "Unix Makefiles" -S . -B build -DCMAKE_INSTALL_PREFIX="${HOME}/apps/OpenCoarrays" -DCMAKE_BUILD_TYPE:STRING="Debug"
cmake --build build -j
cmake --build build -t install -j || echo "installation failed"
cd build
ctest --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
cd ..
ctest --test-dir build --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
echo "${HOME}/apps/OpenCoarrays/bin" >> $GITHUB_PATH
export PATH="${HOME}/apps/OpenCoarrays/bin:${PATH}"
which caf || true
Expand Down

0 comments on commit 717ebef

Please sign in to comment.