From 754ee4abf6fb619257774c757a45205e9ef45391 Mon Sep 17 00:00:00 2001 From: Dimitrios Siganos Date: Tue, 15 Nov 2022 18:28:06 +0200 Subject: [PATCH] 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. --- ci/build-ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/build-ci.sh b/ci/build-ci.sh index 2c879402..3bc74600 100755 --- a/ci/build-ci.sh +++ b/ci/build-ci.sh @@ -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