Skip to content

Commit

Permalink
github workflow: make: use -j2 or -j3
Browse files Browse the repository at this point in the history
  • Loading branch information
nu774 committed Jan 11, 2024
1 parent f95566e commit 2dc1ef4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
autoreconf -fiv
./configure
make
make -j2
sudo make install
- name: Test
run: |
Expand Down Expand Up @@ -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:
Expand All @@ -67,7 +67,7 @@ jobs:
run: |
autoreconf -fiv
./configure
make
make -j3
make install
- name: Test
run: |
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
run: |
autoreconf -fiv
./configure
make
make -j2
make install
- name: Test
run: |
Expand Down

0 comments on commit 2dc1ef4

Please sign in to comment.