From f85da89ff3fa26c58d421ed63834694b13e24bea Mon Sep 17 00:00:00 2001 From: TotallyNotElite <38938720+TotallyNotElite@users.noreply.github.com> Date: Sat, 9 Jun 2018 15:40:40 +0200 Subject: [PATCH] Use all cores provided by circleci --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f44289ff..57019c63 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; cd .. + command: git submodule update --init --recursive; mkdir build; cd build; cmake ..; make -j$(grep -c '^processor' /proc/cpuinfo); cd ..