Fix: Circleci fails to build if all cores are used

This commit is contained in:
TotallyNotElite 2018-06-09 15:53:02 +02:00 committed by GitHub
parent f85da89ff3
commit ca20f7d801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,4 +7,4 @@ jobs:
- checkout
- run:
name: "Compiling cathook"
command: git submodule update --init --recursive; mkdir build; cd build; cmake ..; make -j$(grep -c '^processor' /proc/cpuinfo); cd ..
command: git submodule update --init --recursive; mkdir build; cd build; cmake ..; make; cd ..