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