aboutsummaryrefslogtreecommitdiff
path: root/jdk9-terasort-benchmark-persist-results.yaml
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2019-04-19 15:27:31 +0530
committerRiku Voipio <riku.voipio@linaro.org>2019-05-03 09:18:42 +0300
commit217a75135db924a492152d117e2c90b1800969c5 (patch)
treed2b1d6bf21f910a143f0fbd51d4a1dbb4b49ab46 /jdk9-terasort-benchmark-persist-results.yaml
parente7296994681e5ed2da84e521239a2a46df795228 (diff)
Cleanup: remove all deleted jobs
Change-Id: I59a2856f5d246141f169efb6f4ba2a19a3a9a6d7 Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
Diffstat (limited to 'jdk9-terasort-benchmark-persist-results.yaml')
-rw-r--r--jdk9-terasort-benchmark-persist-results.yaml85
1 files changed, 0 insertions, 85 deletions
diff --git a/jdk9-terasort-benchmark-persist-results.yaml b/jdk9-terasort-benchmark-persist-results.yaml
deleted file mode 100644
index 8d3b67a996..0000000000
--- a/jdk9-terasort-benchmark-persist-results.yaml
+++ /dev/null
@@ -1,85 +0,0 @@
-- job:
- name: jdk9-terasort-benchmark-persist-results
- project-type: matrix
- defaults: global
- description: |
- * Writes results to /work/openjdk-testing/hadoop-terasort-benchmark-results.
- properties:
- - authorization:
- linaro:
- - job-read
- openjdk-members:
- - job-extended-read
- - job-build
- - job-cancel
- - build-discarder:
- days-to-keep: 30
- num-to-keep: 10
- artifact-num-to-keep: 5
- disabled: true
- node: aarch64-06
- display-name: 'DELETE ME'
- axes:
- - axis:
- type: user-defined
- name: JVM_VARIANT
- values:
- - server
- - client
- - axis:
- type: user-defined
- name: BUILD_TYPE
- values:
- - release
- - axis:
- type: slave
- name: label
- values:
- - aarch64-06
- 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
-
- PERSIST=$HOME/srv/openjdk9u
- export BENCHMARK_RESULTS_DIR=$PERSIST/hadoop-terasort-benchmark-results
- new_results=incoming/BUILD_TYPE=${BUILD_TYPE},JVM_VARIANT=${JVM_VARIANT},label=${label}/*.csv
- prev_results=$BENCHMARK_RESULTS_DIR/results.csv
-
- # Ensure persistent directory exists.
- mkdir -p $BENCHMARK_RESULTS_DIR
-
- # Tolerate missing results.csv file.
- if [ ! -f $prev_results ]; then
- touch $prev_results
- fi
-
- SCRIPT_DIR=$PERSIST/hadoop-test-scripts
- if [ -d $SCRIPT_DIR ]; then
- (cd $SCRIPT_DIR; git pull)
- else
- git clone https://git.linaro.org/leg/openjdk/hadoop-test-scripts.git $SCRIPT_DIR
- fi
-
- echo "Previous Results"
- echo "----------------"
- cat ${prev_results}
- echo
-
- cat ${new_results} >> ${prev_results}
-
- $SCRIPT_DIR/update-results-db