Build with four parallel jobs.

This commit is contained in:
chriseth 2018-03-05 22:56:35 +01:00
parent 8259ce1e94
commit 556fe8a574

View File

@ -105,7 +105,11 @@ jobs:
command: ccache -M 80M && ccache -c && ccache -s && ccache -z
- run:
name: Build
command: ./scripts/build.sh RelWithDebInfo
command: |
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
make -j4
- run:
name: CCache statistics
command: ccache -s