Changeset 3898392
- Timestamp:
- Apr 26, 2019, 4:16:15 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- cbef27b
- Parents:
- 7a230fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r7a230fd r3898392 167 167 } 168 168 169 @Field PlotGroup CompileGroup = new PlotGroup('Compilation', 'seconds', true)170 @Field PlotGroup ConcurrencyGroup = new PlotGroup('Concurrency', 'nanoseconds', false)171 172 169 def publish() { 173 170 build_stage('Publish') { … … 179 176 } 180 177 178 def groupCompile = new PlotGroup('Compilation', 'seconds', true) 179 def groupConcurrency = new PlotGroup('Concurrency', 'nanoseconds', false) 180 181 181 //Then publish the results 182 do_plot('compile', CompilationGroup, 'Compilation') 183 184 do_plot('ctxswitch', ConcurrencyGroup, 'Context Switching') 185 186 do_plot('mutex', ConcurrencyGroup, 'Mutual Exclusion') 187 188 do_plot('signal', ConcurrencyGroup, 'Internal and External Scheduling') 182 do_plot('compile' , groupCompile , 'Compilation') 183 do_plot('ctxswitch', groupConcurrency, 'Context Switching') 184 do_plot('mutex' , groupConcurrency, 'Mutual Exclusion') 185 do_plot('signal' , groupConcurrency, 'Internal and External Scheduling') 189 186 } 190 187 }
Note: See TracChangeset
for help on using the changeset viewer.