diff options
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/turris.run | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/turris.run b/templates/turris.run index ad6bd8e..359a425 100755 --- a/templates/turris.run +++ b/templates/turris.run @@ -2,8 +2,8 @@ # vim: ft=sh . "$(dirname "$(readlink -f "$0")")/../job.common" ################################################### -parallel=-j4 -make="make -j4 IS_TTY=1 BUILD_LOG=1" +parallel=-j$(($(nproc) * 2)) -l$(nproc) +make="make $paralel IS_TTY=1 BUILD_LOG=1" if [ "$V" -ge 1 ]; then parallel=-j1 make="make -j1 IS_TTY=1 BUILD_LOG=1 V=99" |