Skip to content

Commit 2e2b110

Browse files
authored
use nproc for max jobs on github workflow (#652)
1 parent 432b4e3 commit 2e2b110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
image: 'devkitpro/devkita64'
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
with:
1919
persist-credentials: false
2020

2121
- name: build
22-
run: make -C nx -j2
22+
run: make -C nx -j$(nproc)

0 commit comments

Comments
 (0)