CI: Speedup the build step by using make’s parallelism

Using this option, the CI will now build the .o files in parallel on its
multiple cores, making the build step go from 1:40 down to 1:04 in one
run.
This commit is contained in:
Emmanuel Gil Peyrot 2021-10-10 23:51:33 +02:00 committed by Yannik Marchand
parent abdd9f3301
commit 63b9001111

View file

@ -27,4 +27,4 @@ jobs:
- name: Build
run: |
make
make -j$(nproc)