mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 23:14:20 +00:00
add option -j for make (#372)
This commit is contained in:
parent
a3b7940baf
commit
3f10ce47f0
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
|||
- name: Build bootloader in docker
|
||||
uses: ./.github/actions/docker
|
||||
with:
|
||||
run: make -C bootloader TARGET=${TARGET_VERSION}
|
||||
run: make -j$(nproc) -C bootloader TARGET=${TARGET_VERSION}
|
||||
|
||||
- name: Generate dfu file for bootloader
|
||||
uses: ./.github/actions/docker
|
||||
|
@ -48,7 +48,7 @@ jobs:
|
|||
- name: Build firmware in docker
|
||||
uses: ./.github/actions/docker
|
||||
with:
|
||||
run: make -C firmware TARGET=${TARGET_VERSION} APP_RELEASE=1
|
||||
run: make -j$(nproc) -C firmware TARGET=${TARGET_VERSION} APP_RELEASE=1
|
||||
|
||||
- name: Generate dfu file for firmware
|
||||
uses: ./.github/actions/docker
|
||||
|
|
Loading…
Reference in a new issue