Changes in Jenkins/FullBuild [985b624:d3af505]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkins/FullBuild
r985b624 rd3af505 20 20 gcc_08_x86_new: { trigger_build( 'gcc-10', 'x86', false ) }, 21 21 gcc_07_x86_new: { trigger_build( 'gcc-9', 'x86', false ) }, 22 gcc_11_x64_new: { trigger_build( 'gcc-11', 'x64', false ) },23 22 gcc_10_x64_new: { trigger_build( 'gcc-10', 'x64', false ) }, 24 23 gcc_09_x64_new: { trigger_build( 'gcc-9', 'x64', false ) }, 25 24 gcc_08_x64_new: { trigger_build( 'gcc-8', 'x64', false ) }, 26 25 gcc_07_x64_new: { trigger_build( 'gcc-7', 'x64', false ) }, 27 //gcc_06_x64_new: { trigger_build( 'gcc-6', 'x64', false ) },26 gcc_06_x64_new: { trigger_build( 'gcc-6', 'x64', false ) }, 28 27 clang_x64_new: { trigger_build( 'clang', 'x64', true ) }, 29 28 ) … … 42 41 } 43 42 44 // 45 // 43 //If an exception is caught we need to change the status and remember to 44 //attach the build log to the email 46 45 catch (Exception caughtError) { 47 46 echo('error caught') … … 74 73 // Run the build 75 74 // Don't propagate, it doesn't play nice with our email setup 76 def result = build job: 'Cforall/master', 75 def result = build job: 'Cforall/master', \ 77 76 parameters: [ \ 78 77 [$class: 'StringParameterValue', \ … … 84 83 [$class: 'BooleanParameterValue', \ 85 84 name: 'NewAST', \ 86 value: true], \85 value: true], \ 87 86 [$class: 'BooleanParameterValue', \ 88 87 name: 'RunAllTests', \ 89 value: true], \88 value: true], \ 90 89 [$class: 'BooleanParameterValue', \ 91 90 name: 'RunBenchmark', \ 92 value: true], \91 value: true], \ 93 92 [$class: 'BooleanParameterValue', \ 94 name: 'BuildDocumentation', 93 name: 'BuildDocumentation', \ 95 94 value: doc], \ 96 95 [$class: 'BooleanParameterValue', \ 97 96 name: 'Publish', \ 98 value: true], \97 value: true], \ 99 98 [$class: 'BooleanParameterValue', \ 100 99 name: 'Silent', \ 101 value: true], \102 ], \100 value: true], \ 101 ], \ 103 102 propagate: false 104 103 … … 112 111 113 112 def trigger_dist(String commitId, String buildNum) { 114 def result = build job: 'Cforall_Distribute_Ref', 113 def result = build job: 'Cforall_Distribute_Ref', \ 115 114 parameters: [ \ 116 115 string(name: 'GitRef', value: commitId), \ 117 string(name: 'Build' , value: buildNum) 118 ], \116 string(name: 'Build' , value: buildNum) \ 117 ], \ 119 118 propagate: false 120 119
Note:
See TracChangeset
for help on using the changeset viewer.