From 5569805be3780a986a1eadd94b4ab6d9e93ca37c Mon Sep 17 00:00:00 2001 From: Juan Jose Nicola Date: Tue, 28 Jan 2020 15:55:55 +0100 Subject: [PATCH] Circleci: Install libs before building the tests. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3a22eec94..dbe50c8be 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,7 @@ jobs: - checkout - run: name: Configure and run unit tests - command: mkdir build && cd build/ && cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=1 .. && make install && make tests && CTEST_OUTPUT_ON_FAILURE=1 make test + command: mkdir build && cd build/ && cmake -DCMAKE_BUILD_TYPE=Release .. && make install && cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=1 .. && make tests && CTEST_OUTPUT_ON_FAILURE=1 make test build_gcc_core: docker: - image: greenbone/build-env-gvm-libs-master-debian-stretch-gcc-core