Changeset 14d5461
- Timestamp:
- Mar 22, 2022, 11:20:30 AM (15 months ago)
- Branches:
- ADT, enum, master, pthread-emulation, qualifiedEnum
- Children:
- a8e9e9d
- Parents:
- a76202d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
ra76202d r14d5461 126 126 // Build outside of the src tree to ease cleaning 127 127 dir (BuildDir) { 128 sh "make -j $(nproc) --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 $(nproc) --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 $(nproc) --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 = "-j $(nproc)"163 jopt = '-j $(nproc)' 164 164 if( Settings.Architecture.node == 'x86' ) { 165 jopt = "-j2"165 jopt = '-j2' 166 166 } 167 167 //Run the tests from the tests directory
Note: See TracChangeset
for help on using the changeset viewer.