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:
Dimitrios Siganos 2022-11-15 18:28:06 +02:00 committed by GitHub
commit 754ee4abf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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