Changeset ae151cf for Jenkins/FullBuild
- Timestamp:
- Oct 2, 2022, 10:00:43 PM (6 months ago)
- Branches:
- master
- Children:
- 815943f
- Parents:
- f704974 (diff), f92e7b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkins/FullBuild
rf704974 rae151cf 18 18 19 19 parallel ( 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' ) },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 ) }, 28 28 ) 29 29 } … … 67 67 //=========================================================================================================== 68 68 69 def trigger_build(String cc, String arch ) {69 def trigger_build(String cc, String arch, boolean doc) { 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: true], \94 value: doc], \ 95 95 [$class: 'BooleanParameterValue', \ 96 96 name: 'Publish', \
Note: See TracChangeset
for help on using the changeset viewer.