Skip to content

Commit

Permalink
Instruct make to execute tasks in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckenzie committed Nov 24, 2021
1 parent 4a91df9 commit 9223c16
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .config
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ CONFIG_PACKAGE_kmod-usb-ohci=y
CONFIG_PACKAGE_kmod-usb2=y
CONFIG_PACKAGE_kmod-usb3=y

# Netfilter kernal modules
# Netfilter kernel modules
CONFIG_PACKAGE_kmod-ipt-nat6=y

# WWAN kernel modules
Expand Down
7 changes: 6 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
displayName: 'Make defconfig'
- script: |
make -j1 V=s
NPROC=`nproc`
echo Number of CPUs is $NPROC
displayName: 'Print number of CPUs'
- script: |
make -j`nproc` V=s
workingDirectory: $(workingDirectory)
displayName: 'Build the project'
Expand Down

0 comments on commit 9223c16

Please sign in to comment.