👷 Ninja seems not to work

pull/1565/head
Niels Lohmann 2019-03-30 17:39:50 +01:00
parent 0a57c51a69
commit 80daa19331
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
1 changed files with 4 additions and 4 deletions

View File

@ -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'