Changeset 3898392


Ignore:
Timestamp:
Apr 26, 2019, 4:16:15 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
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
Message:

Moved group globals into publish function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r7a230fd r3898392  
    167167}
    168168
    169 @Field PlotGroup CompileGroup = new PlotGroup('Compilation', 'seconds', true)
    170 @Field PlotGroup ConcurrencyGroup = new PlotGroup('Concurrency', 'nanoseconds', false)
    171 
    172169def publish() {
    173170        build_stage('Publish') {
     
    179176                }
    180177
     178                def groupCompile = new PlotGroup('Compilation', 'seconds', true)
     179                def groupConcurrency = new PlotGroup('Concurrency', 'nanoseconds', false)
     180
    181181                //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')
    189186        }
    190187}
Note: See TracChangeset for help on using the changeset viewer.