Merge pull request #495 from TotallyNotElite/master

CI: Improve performance by utilizing all available threads
This commit is contained in:
LightCat 2018-06-09 16:24:25 +02:00 committed by GitHub
commit 293db439f2
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; cd ..
command: git submodule update --init --recursive; mkdir build; cd build; cmake -DEnableWarnings=0 ..; make -j8; cd ..