Changes in Jenkins/FullBuild [c6a90bf:986e260]
- File:
-
- 1 edited
-
Jenkins/FullBuild (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkins/FullBuild
rc6a90bf r986e260 17 17 18 18 parallel ( 19 gcc_6_x64: { trigger_build( 'gcc-6', 'x64' ) },20 gcc_6_x86: { trigger_build( 'gcc-6', 'x86' ) },21 gcc_5_x64: { trigger_build( 'gcc-5', 'x64' ) },22 gcc_5_x86: { trigger_build( 'gcc-5', 'x86' ) },23 clang_x64: { trigger_build( 'clang', 'x64' ) },24 clang_x86: { trigger_build( 'clang', 'x86' ) },19 gcc_6_x64: { trigger_build( 'gcc-6', 'x64', true ) }, 20 gcc_6_x86: { trigger_build( 'gcc-6', 'x86', true ) }, 21 gcc_5_x64: { trigger_build( 'gcc-5', 'x64', false ) }, 22 gcc_5_x86: { trigger_build( 'gcc-5', 'x86', false ) }, 23 clang_x64: { trigger_build( 'clang', 'x64', false ) }, 24 clang_x86: { trigger_build( 'clang', 'x86', false ) }, 25 25 ) 26 26 } … … 56 56 //=========================================================================================================== 57 57 58 def trigger_build(String cc, String arch ) {58 def trigger_build(String cc, String arch, Boolean publish) { 59 59 def result = build job: 'Cforall/master', \ 60 60 parameters: [ \ … … 76 76 [$class: 'BooleanParameterValue', \ 77 77 name: 'Publish', \ 78 value: true], \78 value: publish], \ 79 79 [$class: 'BooleanParameterValue', \ 80 80 name: 'Silent', \
Note:
See TracChangeset
for help on using the changeset viewer.