From 245e538fae91b344ae726f7c875d9d7bfce84aa0 Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Tue, 5 Jan 2021 08:58:53 +0100 Subject: [PATCH] CI: Enable parallel builds. --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5e75c9..ab36591 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,8 +39,10 @@ jobs: - name: Build applications run: | - make client - make server + echo "Building with $(nproc) threads" + make client -j$(nproc) + make proxy -j$(nproc) + make server -j$(nproc) - name: Run tests run: |