Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Nov 29, 2023
1 parent 5693bbb commit 92cfe91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cross_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
echo "debug_flag_filename=debug-" >> $GITHUB_ENV
- name: Compile
run: make all -j 6 CONNECT_TYPE=${{ inputs.connect-type }} ${{ env.debug_flag_compile }} CROSS_COMPILE=arm-linux-gnueabihf-
run: make all -j -j $(nproc) CONNECT_TYPE=${{ inputs.connect-type }} ${{ env.debug_flag_compile }} CROSS_COMPILE=arm-linux-gnueabihf-

# We need to tar the binary outputs to retain the executable
# file permission. Currently, actions/upload-artifact only
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
echo "debug_flag_filename=debug-" >> $GITHUB_ENV
- name: Compile
run: make all -j 6 CONNECT_TYPE=${{ FULLSPEC }} ${{ env.debug_flag_compile }}
run: make all -j $(nproc) -DCONNECT_TYPE=FULLSPEC ${{ env.debug_flag_compile }}

0 comments on commit 92cfe91

Please sign in to comment.