Select Git revision
build.gradle
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
}