Changeset 02af79b0 for Jenkinsfile


Ignore:
Timestamp:
May 9, 2019, 4:47:53 PM (7 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:
b038fe4
Parents:
ec28948 (diff), db27767 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rec28948 r02af79b0  
    170170        build_stage('Publish') {
    171171
    172                 if( !Settings.RunBenchmark ) { echo 'No results to publish!!!' }
     172                if( Settings.Publish && !Settings.RunBenchmark ) { echo 'No results to publish!!!' }
    173173
    174174                def groupCompile = new PlotGroup('Compilation', 'seconds', true)
     
    433433}
    434434
    435 def do_plot(boolean silent, String file, PlotGroup group, String title) {
    436 
    437         def series = silent ? [] : [[
     435def do_plot(boolean new_data, String file, PlotGroup group, String title) {
     436
     437        if(new_data) {
     438                echo "Publishing new data"
     439        }
     440
     441        def series = new_data ? [] : [[
    438442                                file: "${file}.csv",
    439443                                exclusionValues: '',
Note: See TracChangeset for help on using the changeset viewer.