Changes in Jenkinsfile [f51ef6f:f97b614]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rf51ef6f rf97b614 80 80 make_doc() 81 81 } 82 }83 84 def benchmark() {85 stage 'Benchmark'86 87 status_prefix = 'Documentation'88 89 // //We can't just write to a file outside our repo90 // //Copy the file locally using ssh91 // sh 'scp plg2.cs.uwaterloo.ca:/u/cforall/public_html/perf-history/concurrency.csv bench.csv'92 93 // //Then append to the local file94 // sh 'make -C src/benchmark csv-data >> bench.csv'95 96 // //Then publish the file again97 // sh 'scp bench.csv plg2.cs.uwaterloo.ca:/u/cforall/public_html/perf-history/concurrency.csv'98 82 } 99 83 … … 180 164 ]]) 181 165 182 bIsSandbox = env.BRANCH_NAME == "jenkins-sandbox"183 166 bIsFullBuild = isFullBuild == 'true' 184 167 architectureFlag = '' … … 200 183 doc_build() 201 184 202 //Run benchmark and save result203 benchmark()204 205 185 if( bIsFullBuild ) { 206 186 //Compile using gcc-5 … … 233 213 234 214 //Send email with final results if this is not a full build 235 if( !bIsFullBuild && !bIsSandbox) {215 if( !bIsFullBuild ) { 236 216 echo 'Notifying users of result' 237 217 email(currentBuild.result, log_needed)
Note:
See TracChangeset
for help on using the changeset viewer.