File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 27
27
cmake -S . -B build -Wdev -DCMAKE_INSTALL_PREFIX:PATH="${HOME}/OpenCoarrays" -DCMAKE_BUILD_TYPE:STRING="Debug" ..
28
28
cmake --build build -j $(nproc)
29
29
cmake --build build -t install -j $(nproc) || echo "installation failed"
30
- ctest --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
31
- make install
30
+ ctest --test-dir build -- output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
31
+ cd build
32
32
make uninstall
Original file line number Diff line number Diff line change 54
54
cmake -Wdev -G "Unix Makefiles" -S . -B build -DCMAKE_INSTALL_PREFIX="${HOME}/apps/OpenCoarrays" -DCMAKE_BUILD_TYPE:STRING="Debug"
55
55
cmake --build build -j
56
56
cmake --build build -t install -j || echo "installation failed"
57
- cd build
58
- ctest --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
59
- cd ..
57
+ ctest --test-dir build --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
60
58
echo "${HOME}/apps/OpenCoarrays/bin" >> $GITHUB_PATH
61
59
export PATH="${HOME}/apps/OpenCoarrays/bin:${PATH}"
62
60
which caf || true
You can’t perform that action at this time.
0 commit comments