Skip to content
Snippets Groups Projects
Select Git revision
  • dcea58aea7f6a8d6b44f4d00d71e08a670e27a95
  • master default protected
  • restructure-2021
  • ae-submission
  • journal-diagrams
  • artifact-evaluation
  • artifact-evaluation-poster
  • ci
8 results

build.gradle

Blame
  • build.gradle 674 B
    task doMerge(type: Exec) {
        group = 'Benchmark'
        description = 'Merges the results'
        commandLine './do-merge.sh'
    }
    
    task plot(type: Exec) {
        group = 'Benchmark'
        description = 'Plots the \'classic\' TrainBenchmark result'
        commandLine 'Rscript', 'report.R'
        dependsOn doMerge
    }
    
    task plotIndividual(type: Exec) {
        group = 'Benchmark'
        description = 'Plots the individual TrainBenchmark results'
        commandLine 'Rscript', 'individual.R'
        dependsOn doMerge
    }
    
    task plotToolwise(type: Exec) {
        group = 'Benchmark'
        description = 'Plots the individual TrainBenchmark results per tool'
        commandLine './toolwise.sh'
        dependsOn doMerge
    }