Changes in Jenkins/FullBuild [d3af505:02a3972]
- File:
-
- 1 edited
-
Jenkins/FullBuild (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkins/FullBuild
rd3af505 r02a3972 18 18 19 19 parallel ( 20 gcc_08_x86_new: { trigger_build( 'gcc-10', 'x86' , false) },21 gcc_07_x86_new: { trigger_build( 'gcc-9', 'x86' , false) },22 gcc_10_x64_new: { trigger_build( 'gcc-10', 'x64' , false) },23 gcc_09_x64_new: { trigger_build( 'gcc-9', 'x64' , false) },24 gcc_08_x64_new: { trigger_build( 'gcc-8', 'x64' , false) },25 gcc_07_x64_new: { trigger_build( 'gcc-7', 'x64' , false) },26 gcc_06_x64_new: { trigger_build( 'gcc-6', 'x64' , false) },27 clang_x64_new: { trigger_build( 'clang', 'x64' , true) },20 gcc_08_x86_new: { trigger_build( 'gcc-10', 'x86' ) }, 21 gcc_07_x86_new: { trigger_build( 'gcc-9', 'x86' ) }, 22 gcc_10_x64_new: { trigger_build( 'gcc-10', 'x64' ) }, 23 gcc_09_x64_new: { trigger_build( 'gcc-9', 'x64' ) }, 24 gcc_08_x64_new: { trigger_build( 'gcc-8', 'x64' ) }, 25 gcc_07_x64_new: { trigger_build( 'gcc-7', 'x64' ) }, 26 gcc_06_x64_new: { trigger_build( 'gcc-6', 'x64' ) }, 27 clang_x64_new: { trigger_build( 'clang', 'x64' ) }, 28 28 ) 29 29 } … … 67 67 //=========================================================================================================== 68 68 69 def trigger_build(String cc, String arch , boolean doc) {69 def trigger_build(String cc, String arch) { 70 70 // Randomly delay the builds by a random amount to avoid hitting the SC server to hard 71 71 sleep(time: 5 * Math.random(), unit:"MINUTES") … … 92 92 [$class: 'BooleanParameterValue', \ 93 93 name: 'BuildDocumentation', \ 94 value: doc], \94 value: true], \ 95 95 [$class: 'BooleanParameterValue', \ 96 96 name: 'Publish', \
Note:
See TracChangeset
for help on using the changeset viewer.