Skip to content

Commit

Permalink
👷 Ninja seems not to work
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Mar 30, 2019
1 parent 0a57c51 commit 80daa19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -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'

0 comments on commit 80daa19

Please sign in to comment.