From 2dc1ef46e10898c75797bd14b5fe443e05aa76b6 Mon Sep 17 00:00:00 2001 From: nu774 Date: Thu, 11 Jan 2024 13:04:25 +0900 Subject: [PATCH] github workflow: make: use -j2 or -j3 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dec9fa6..eaf7ec9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: run: | autoreconf -fiv ./configure - make + make -j2 sudo make install - name: Test run: | @@ -51,7 +51,7 @@ jobs: run: | autoreconf -fiv ./configure --host=${{ matrix.arch }}-w64-mingw32 --prefix=/usr/${{ matrix.arch }}-w64-mingw32 - make + make -j2 sudo make install macos: @@ -67,7 +67,7 @@ jobs: run: | autoreconf -fiv ./configure - make + make -j3 make install - name: Test run: | @@ -102,7 +102,7 @@ jobs: run: | autoreconf -fiv ./configure - make + make -j2 make install - name: Test run: |