Changeset 597e395
- Timestamp:
- Sep 15, 2022, 4:51:45 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 9a90092
- Parents:
- 0fc91db1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r0fc91db1 r597e395 150 150 sh 'ulimit -a' 151 151 152 Tools.BuildStage('Test: short', !Settings.RunAllTests) { 152 jopt = '-j $(nproc)' 153 154 Tools.BuildStage('Test: Debug') { 153 155 dir (BuildDir) { 154 156 //Run the tests from the tests directory 155 sh " make --no-print-directory -C tests archiveerrors=${BuildDir}/tests/crashes/short"157 sh """make ${jopt} --no-print-directory -C tests timeouts="--timeout=600 --global-timeout=14400" all-tests debug=yes archiveerrors=${BuildDir}/tests/crashes/full-debug""" 156 158 } 157 159 } 158 160 159 Tools.BuildStage('Test: full', Settings.RunAllTests) {161 Tools.BuildStage('Test: Release', Settings.RunAllTests) { 160 162 dir (BuildDir) { 161 jopt = '-j $(nproc)' 162 if( Settings.Architecture.node == 'x86' ) { 163 jopt = '-j2' 164 } 165 //Run the tests from the tests directory 166 sh """make ${jopt} --no-print-directory -C tests timeouts="--timeout=600 --global-timeout=14400" all-tests debug=yes archiveerrors=${BuildDir}/tests/crashes/full-debug""" 167 sh """make ${jopt} --no-print-directory -C tests timeouts="--timeout=600 --global-timeout=14400" all-tests debug=no archiveerrors=${BuildDir}/tests/crashes/full-nodebug""" 163 //Run the tests from the tests directory 164 sh """make ${jopt} --no-print-directory -C tests timeouts="--timeout=600 --global-timeout=14400" all-tests debug=no archiveerrors=${BuildDir}/tests/crashes/full-nodebug""" 168 165 } 169 166 } … … 384 381 ], \ 385 382 [$class: 'BooleanParameterDefinition', \ 386 description: 'If false, only the quick test suite is ran',\383 description: 'If false, the test suite is only ran in debug', \ 387 384 name: 'RunAllTests', \ 388 385 defaultValue: false, \
Note: See TracChangeset
for help on using the changeset viewer.