Building everything in build-ci.sh (e.g. slow_test) (#3998)
Currently CI workflow do not build slow_tests and possibly other targets too. This makes the unit test workflow build everything so we can at least catch build time errors.
This commit is contained in:
parent
403105a8ec
commit
754ee4abf6
1 changed files with 2 additions and 2 deletions
|
@ -61,10 +61,10 @@ if [[ "$OS" == 'Linux' ]]; then
|
|||
if [[ ${LCOV:-0} == 1 ]]; then
|
||||
cmake --build ${PWD} --target generate_coverage -- -j2
|
||||
else
|
||||
cmake --build ${PWD} --target build_tests -k -- -j2
|
||||
cmake --build ${PWD} --target all -k -- -j2
|
||||
fi
|
||||
else
|
||||
sudo cmake --build ${PWD} --target build_tests -- -j2
|
||||
sudo cmake --build ${PWD} --target all -- -j2
|
||||
fi
|
||||
|
||||
popd
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue