Changes in Jenkins/FullBuild [ef1d025d:e9ea53d]
- File:
-
- 1 edited
-
Jenkins/FullBuild (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkins/FullBuild
ref1d025d re9ea53d 32 32 stage('Package') { 33 33 trigger_dist( commitId, currentBuild.number.toString() ) 34 } 35 36 stage('Promote') { 37 trigger_prom() 34 38 } 35 39 } … … 123 127 } 124 128 129 def trigger_prom() { 130 def result = build job: 'Cforall_Promote_Ref', propagate: false 131 132 echo(result.result) 133 134 if(result.result != 'SUCCESS') { 135 sh("wget -q -O - https://cforall.uwaterloo.ca/jenkins/job/Cforall_Promote_Ref/${result.number}/consoleText") 136 error(result.result) 137 } 138 } 139 125 140 //=========================================================================================================== 126 141 //Routine responsible of sending the email notification once the build is completed
Note:
See TracChangeset
for help on using the changeset viewer.