Skip to content

Commit

Permalink
fixup! feat: Start using more than one thread while building
Browse files Browse the repository at this point in the history
  • Loading branch information
AiyionPrime committed Jun 30, 2024
1 parent 2e4b403 commit bf805c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pipeline {
dir('gluon') {
script {
def nproc_str = sh "nproc"
def nproc = nproc_str as Integer
def nproc = nproc_str.toInteger()
def nproc_plus_one = nproc+1
sh "make -j${nproc_plus_one} GLUON_TARGET=${params.GLUON_TARGET}"
}
Expand Down

0 comments on commit bf805c1

Please sign in to comment.