From c198ffd99467da2745914ce0e8aa9ee3dbde9751 Mon Sep 17 00:00:00 2001 From: Paul-Louis Ageneau Date: Thu, 28 May 2020 15:35:58 +0200 Subject: [PATCH] Added -j2 option to make --- .github/workflows/build-gnutls.yml | 4 ++-- .github/workflows/build-nice.yml | 2 +- .github/workflows/build-openssl.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-gnutls.yml b/.github/workflows/build-gnutls.yml index 82421cc..4f1d40a 100644 --- a/.github/workflows/build-gnutls.yml +++ b/.github/workflows/build-gnutls.yml @@ -18,7 +18,7 @@ jobs: - name: cmake run: cmake -B build -DUSE_JUICE=1 -DUSE_GNUTLS=1 - name: make - run: (cd build; make) + run: (cd build; make -j2) - name: test run: ./build/tests build-macos: @@ -35,6 +35,6 @@ jobs: # hack to bypass EPERM issue on sendto() CFLAGS: -DJUICE_ENABLE_ADDRS_LOCALHOST - name: make - run: (cd build; make) + run: (cd build; make -j2) - name: test run: ./build/tests diff --git a/.github/workflows/build-nice.yml b/.github/workflows/build-nice.yml index db996a7..ac4d009 100644 --- a/.github/workflows/build-nice.yml +++ b/.github/workflows/build-nice.yml @@ -18,7 +18,7 @@ jobs: - name: cmake run: cmake -B build -DUSE_JUICE=0 -DUSE_GNUTLS=1 - name: make - run: (cd build; make) + run: (cd build; make -j2) - name: test run: ./build/tests diff --git a/.github/workflows/build-openssl.yml b/.github/workflows/build-openssl.yml index a447b16..93469b5 100644 --- a/.github/workflows/build-openssl.yml +++ b/.github/workflows/build-openssl.yml @@ -18,7 +18,7 @@ jobs: - name: cmake run: cmake -B build -DUSE_JUICE=1 -DUSE_GNUTLS=0 - name: make - run: (cd build; make) + run: (cd build; make -j2) - name: test run: ./build/tests build-macos: @@ -35,6 +35,6 @@ jobs: # hack to bypass EPERM issue on sendto() CFLAGS: -DJUICE_ENABLE_ADDRS_LOCALHOST - name: make - run: (cd build; make) + run: (cd build; make -j2) - name: test run: ./build/tests