Changes in Jenkinsfile [3149e7e:f51ef6f]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r3149e7e rf51ef6f 87 87 status_prefix = 'Documentation' 88 88 89 // sh 'make -C src/benchmark csv-data >> /u/cforall/public_html/perf-history/concurrency.csv' 89 // //We can't just write to a file outside our repo 90 // //Copy the file locally using ssh 91 // sh 'scp plg2.cs.uwaterloo.ca:/u/cforall/public_html/perf-history/concurrency.csv bench.csv' 92 93 // //Then append to the local file 94 // sh 'make -C src/benchmark csv-data >> bench.csv' 95 96 // //Then publish the file again 97 // sh 'scp bench.csv plg2.cs.uwaterloo.ca:/u/cforall/public_html/perf-history/concurrency.csv' 90 98 } 91 99 … … 172 180 ]]) 173 181 182 bIsSandbox = env.BRANCH_NAME == "jenkins-sandbox" 174 183 bIsFullBuild = isFullBuild == 'true' 175 184 architectureFlag = '' … … 224 233 225 234 //Send email with final results if this is not a full build 226 if( !bIsFullBuild ) {235 if( !bIsFullBuild && !bIsSandbox ) { 227 236 echo 'Notifying users of result' 228 237 email(currentBuild.result, log_needed)
Note:
See TracChangeset
for help on using the changeset viewer.