Skip to content

Commit f08e6f6

Browse files
committed
fixup! feat: Start using more than one thread while building
1 parent 2e4b403 commit f08e6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ pipeline {
8080
steps {
8181
dir('gluon') {
8282
script {
83-
def nproc_str = sh "nproc"
83+
def nproc_str = sh(script: 'nproc', returnStdout: true)
8484
def nproc = nproc_str as Integer
8585
def nproc_plus_one = nproc+1
8686
sh "make -j${nproc_plus_one} GLUON_TARGET=${params.GLUON_TARGET}"

0 commit comments

Comments
 (0)