From 80daa193317acf6757f46cd6b6cf0bb56badda84 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 30 Mar 2019 17:39:50 +0100 Subject: [PATCH] :construction_worker: Ninja seems not to work --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f164c28d..0d2edbf6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,14 +14,14 @@ jobs: name: Install GCC command: 'apt-get update && apt-get install -y gcc g++' - run: - name: Install CMake and Ninja - command: 'apt-get update && sudo apt-get install -y cmake ninja-build' + name: Install CMake + command: 'apt-get update && sudo apt-get install -y cmake' - run: name: Create build files - command: 'mkdir build ; cd build ; cmake .. -GNinja' + command: 'mkdir build ; cd build ; cmake ..' - run: name: Compile command: 'cmake --build build' - run: name: Execute test suite - command: 'cd build ; ctest -j 10' + command: 'cd build ; ctest -j 2'