From a002cbab1ca9c872c214f3766d3e228a999e29ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz?= Date: Tue, 27 Oct 2015 16:47:30 -0600 Subject: jdk9-terasort-benchmark-persist-results: Add new OpenJDK9 CI job. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8b79315ca795eb836055f629c4a52eef2fced32d Signed-off-by: Daniel Díaz --- jdk9-terasort-benchmark-persist-results.yaml | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 jdk9-terasort-benchmark-persist-results.yaml (limited to 'jdk9-terasort-benchmark-persist-results.yaml') diff --git a/jdk9-terasort-benchmark-persist-results.yaml b/jdk9-terasort-benchmark-persist-results.yaml new file mode 100644 index 0000000000..699cd18bea --- /dev/null +++ b/jdk9-terasort-benchmark-persist-results.yaml @@ -0,0 +1,57 @@ +- job: + name: jdk9-terasort-benchmark-persist-results + project-type: matrix + defaults: global + description: | + * Writes results to /work/openjdk-testing/hadoop-terasort-benchmark-results. + logrotate: + numToKeep: 10 + properties: + - authorization: + linaro: + - job-read + disabled: false + node: aarch64-06 + display-name: 'OpenJDK9 - Write terasort results' + axes: + - axis: + type: user-defined + name: JVM_VARIANT + values: + - server + - client + - axis: + type: user-defined + name: BUILD_TYPE + values: + - release + execution-strategy: + sequential: true + wrappers: + - workspace-cleanup: + dirmatch: false + - timestamps + - matrix-tie-parent: + node: aarch64-06 + builders: + - copyartifact: + project: jdk9-terasort-benchmark + filter: 'out/terasort-results-${JVM_VARIANT}-${BUILD_TYPE}.csv' + target: incoming + flatten: true + - shell: | + #!/bin/bash + + set -exu + + new_results=incoming/BUILD_TYPE=${BUILD_TYPE},JVM_VARIANT=${JVM_VARIANT}/*.csv + prev_results=~openjdk-testing/hadoop-terasort-benchmark-results/results.csv + + echo "Previous Results" + echo "----------------" + cat ${prev_results} + echo + + cat ${new_results} >> ${prev_results} + + ~openjdk-testing/hadoop-test-scripts/update-results-db -- cgit v1.2.3