👷 adding concurrency
This commit is contained in:
parent
a5e00f2cf7
commit
0a57c51a69
1 changed files with 4 additions and 4 deletions
|
@ -14,14 +14,14 @@ jobs:
|
||||||
name: Install GCC
|
name: Install GCC
|
||||||
command: 'apt-get update && apt-get install -y gcc g++'
|
command: 'apt-get update && apt-get install -y gcc g++'
|
||||||
- run:
|
- run:
|
||||||
name: Install CMake
|
name: Install CMake and Ninja
|
||||||
command: 'apt-get update && sudo apt-get install -y cmake'
|
command: 'apt-get update && sudo apt-get install -y cmake ninja-build'
|
||||||
- run:
|
- run:
|
||||||
name: Create build files
|
name: Create build files
|
||||||
command: 'mkdir build ; cd build ; cmake ..'
|
command: 'mkdir build ; cd build ; cmake .. -GNinja'
|
||||||
- run:
|
- run:
|
||||||
name: Compile
|
name: Compile
|
||||||
command: 'cmake --build build'
|
command: 'cmake --build build'
|
||||||
- run:
|
- run:
|
||||||
name: Execute test suite
|
name: Execute test suite
|
||||||
command: 'cd build ; ctest'
|
command: 'cd build ; ctest -j 10'
|
||||||
|
|
Loading…
Reference in a new issue