CI: Enable parallel builds.

This commit is contained in:
Joachim Bauch 2021-01-05 08:58:53 +01:00
parent d2af40d229
commit 245e538fae
No known key found for this signature in database
GPG Key ID: 77C1D22D53E15F02
1 changed files with 4 additions and 2 deletions

View File

@ -39,8 +39,10 @@ jobs:
- name: Build applications - name: Build applications
run: | run: |
make client echo "Building with $(nproc) threads"
make server make client -j$(nproc)
make proxy -j$(nproc)
make server -j$(nproc)
- name: Run tests - name: Run tests
run: | run: |