From 4be641088fdced0566b4fbb41bca6696ba738867 Mon Sep 17 00:00:00 2001 From: Johannes Lenzen Date: Tue, 2 Feb 2021 16:01:22 +0100 Subject: [PATCH] Make unittests in build job --- CI/ci-linux-build.sh | 3 +++ CI/ci-linux-test.sh | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CI/ci-linux-build.sh b/CI/ci-linux-build.sh index 503aa4ed..9932435b 100755 --- a/CI/ci-linux-build.sh +++ b/CI/ci-linux-build.sh @@ -52,6 +52,9 @@ if [ "$IWYU" == "IWYU" ]; then else # build it make $MAKE_OPTIONS + + # build unittests + make $MAKE_OPTIONS unittests fi cd .. \ No newline at end of file diff --git a/CI/ci-linux-test.sh b/CI/ci-linux-test.sh index b1fa1a09..9c793c8f 100755 --- a/CI/ci-linux-test.sh +++ b/CI/ci-linux-test.sh @@ -47,9 +47,6 @@ fi # Run cmake to make sure the tests are configured correctly for this system cmake -DOPENFLIPPER_BUILD_UNIT_TESTS=TRUE -DSTL_VECTOR_CHECKS=ON $OPTIONS ../ -#build the unit tests -make $MAKE_OPTIONS unittests - echo -e "${OUTPUT}" echo "" echo "======================================================================"