From ca20f7d8017b359a801c111805d537985fabb5cc Mon Sep 17 00:00:00 2001 From: TotallyNotElite <38938720+TotallyNotElite@users.noreply.github.com> Date: Sat, 9 Jun 2018 15:53:02 +0200 Subject: [PATCH] Fix: Circleci fails to build if all cores are used --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 57019c63..f44289ff 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 ..