Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rc3d048c r8c700c1  
    1515        arch_name               = ''
    1616        architecture    = ''
    17 
     17       
    1818        do_alltests             = false
    1919        do_benchmark    = false
     
    183183                sh 'make clean > /dev/null'
    184184                sh 'make > /dev/null 2>&1'
    185         }
     185        } 
    186186        catch (Exception caughtError) {
    187187                err = caughtError //rethrow error later
     
    257257def build() {
    258258        build_stage('Build') {
    259 
     259       
    260260                def install_dir = pwd tmp: true
    261 
     261               
    262262                //Configure the conpilation (Output is not relevant)
    263263                //Use the current directory as the installation target so nothing
     
    290290                if( !do_benchmark ) return
    291291
     292                //Write the commit id to Benchmark
     293                writeFile  file: 'bench.csv', text:'data=' + gitRefNewValue + ',' + arch_name + ','
     294 
    292295                //Append bench results
    293                 sh 'make -C src/benchmark --no-print-directory jenkins githash=' + gitRefNewValue + ' arch=' + arch_name + ' | tee bench.json'
     296                sh 'make -C src/benchmark --no-print-directory csv-data >> bench.csv'
    294297        }
    295298}
     
    324327
    325328                //Then publish the results
    326                 sh 'curl -H "Content-Type: application/json" --silent --data @bench.json http://plg2:8082/jenkins/publish > /dev/null || true'
     329                sh 'curl --silent --data @bench.csv http://plg2:8082/jenkins/publish > /dev/null || true'
    327330        }
    328331}
Note: See TracChangeset for help on using the changeset viewer.