Changeset 3c40dc2a


Ignore:
Timestamp:
Apr 24, 2019, 5:22:09 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:
cefa6ca
Parents:
13c98a4
Message:

Tentative fix for plot using dir command

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r13c98a4 r3c40dc2a  
    424424
    425425def do_plot(String file, String group, String title) {
    426         echo "file is ${BuildDir}/benchmark/${file}.csv, group ${group}, title ${title}"
    427         fileExists "${BuildDir}/benchmark/${file}.csv"
    428         plot csvFileName: "cforall-${env.BRANCH_NAME}-${file}.csv",
    429                 csvSeries: [[
    430                         file: "'${BuildDir}/benchmark/${file}.csv'",
    431                         exclusionValues: '',
    432                         displayTableFlag: false,
    433                         inclusionFlag: 'OFF',
    434                         url: ''
    435                 ]],
    436                 group: "${group}",
    437                 title: "${title}",
    438                 style: 'lineSimple',
    439                 exclZero: false,
    440                 keepRecords: false,
    441                 logarithmic: false,
    442                 numBuilds: '120',
    443                 useDescr: true,
    444                 yaxis: '',
    445                 yaxisMaximum: '',
    446                 yaxisMinimum: ''
    447 }
     426        dir("${BuildDir}/benchmark/") {
     427                plot csvFileName: "cforall-${env.BRANCH_NAME}-${file}.csv",
     428                        csvSeries: [[
     429                                file: "${file}.csv",
     430                                exclusionValues: '',
     431                                displayTableFlag: false,
     432                                inclusionFlag: 'OFF',
     433                                url: ''
     434                        ]],
     435                        group: "${group}",
     436                        title: "${title}",
     437                        style: 'lineSimple',
     438                        exclZero: false,
     439                        keepRecords: false,
     440                        logarithmic: false,
     441                        numBuilds: '120',
     442                        useDescr: true,
     443                        yaxis: '',
     444                        yaxisMaximum: '',
     445                        yaxisMinimum: ''
     446        }
     447}
Note: See TracChangeset for help on using the changeset viewer.