Changeset 0b4ddb71
- Timestamp:
- Mar 18, 2022, 2:52:14 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- adb3ea1
- Parents:
- 22226e4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r22226e4 r0b4ddb71 108 108 109 109 // Configure libcfa 110 sh 'make -j 8--no-print-directory configure-libcfa'110 sh 'make -j $(nproc) --no-print-directory configure-libcfa' 111 111 } 112 112 } … … 116 116 dir (BuildDir) { 117 117 // Build driver 118 sh 'make -j 8--no-print-directory -C driver'118 sh 'make -j $(nproc) --no-print-directory -C driver' 119 119 120 120 // Build translator 121 sh 'make -j 8--no-print-directory -C src'121 sh 'make -j $(nproc) --no-print-directory -C src' 122 122 } 123 123 } … … 126 126 // Build outside of the src tree to ease cleaning 127 127 dir (BuildDir) { 128 sh "make -j 8--no-print-directory -C libcfa/${Settings.Architecture.name}-debug"128 sh "make -j $(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-debug" 129 129 } 130 130 } … … 133 133 // Build outside of the src tree to ease cleaning 134 134 dir (BuildDir) { 135 sh "make -j 8--no-print-directory -C libcfa/${Settings.Architecture.name}-nodebug"135 sh "make -j $(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-nodebug" 136 136 } 137 137 } … … 140 140 // Build outside of the src tree to ease cleaning 141 141 dir (BuildDir) { 142 sh "make -j 8--no-print-directory install"142 sh "make -j $(nproc) --no-print-directory install" 143 143 } 144 144 } … … 161 161 Tools.BuildStage('Test: full', Settings.RunAllTests) { 162 162 dir (BuildDir) { 163 jopt = " "163 jopt = "-j $(nproc)" 164 164 if( Settings.Architecture.node == 'x86' ) { 165 165 jopt = "-j2"
Note: See TracChangeset
for help on using the changeset viewer.