diff options
author | Juha Alanen <juha.alanen@mapbox.com> | 2020-01-29 14:38:35 +0200 |
---|---|---|
committer | Juha Alanen <juha.alanen@mapbox.com> | 2020-01-30 12:26:38 +0200 |
commit | cc3b3e038c57b89f4902398b0f67c7534b6b704c (patch) | |
tree | e9a7bbb2c340bf19de51783ae022b7ed68714664 | |
parent | 8ea4d3cec34b2ec642b10a5aae4cfb6b8ee36c06 (diff) | |
download | qtlocation-mapboxgl-cc3b3e038c57b89f4902398b0f67c7534b6b704c.tar.gz |
[build] Use all available cores for CI buildsupstream/jmalanen-http-server
-rw-r--r-- | circle.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/circle.yml b/circle.yml index 2191a09e1d..65a37e3bf2 100644 --- a/circle.yml +++ b/circle.yml @@ -236,7 +236,7 @@ commands: name: Build command: | ccache --zero-stats --max-size=2G - cmake --build build -j 8 << parameters.build_params >> + cmake --build build -j $(nproc) << parameters.build_params >> ccache --show-stats install: steps: @@ -538,7 +538,7 @@ jobs: - run: name: Clang Tidy command: | - run-clang-tidy-8 -quiet -j24 -p build $PWD/src/.*cpp $PWD/platform/.*cpp |tee clang-tidy.log + run-clang-tidy-8 -quiet -j $(nproc) -p build $PWD/src/.*cpp $PWD/platform/.*cpp |tee clang-tidy.log grep -o \\[[a-z].*-.*[a-z]\] clang-tidy.log |sort |uniq -c |sort -n - save baselines: |