use nproc for max jobs on github workflow (#652)

This commit is contained in:
Dave Murphy 2024-11-25 00:55:17 +00:00 committed by GitHub
parent 432b4e3900
commit 2e2b110668
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,9 +14,9 @@ jobs:
image: 'devkitpro/devkita64'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: build
run: make -C nx -j2
run: make -C nx -j$(nproc)