Skip to content

Commit

Permalink
Circleci: Install libs before building the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jjnicola committed Jan 28, 2020
1 parent 65bde92 commit 5569805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5569805

Please sign in to comment.