aboutsummaryrefslogtreecommitdiff
path: root/jdkX-jtreg-test-publish-results.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'jdkX-jtreg-test-publish-results.yaml')
-rw-r--r--jdkX-jtreg-test-publish-results.yaml71
1 files changed, 71 insertions, 0 deletions
diff --git a/jdkX-jtreg-test-publish-results.yaml b/jdkX-jtreg-test-publish-results.yaml
new file mode 100644
index 0000000000..204d5c9283
--- /dev/null
+++ b/jdkX-jtreg-test-publish-results.yaml
@@ -0,0 +1,71 @@
+- job:
+ name: jdkX-jtreg-test-publish-results
+ project-type: freestyle
+ defaults: global
+ description: |
+ * Results are published to http://openjdk.linaro.org/jdkX/openjdk-jtreg-nightly-tests/
+ properties:
+ - authorization:
+ anonymous:
+ - job-read
+ - job-extended-read
+ openjdk-members:
+ - job-build
+ - job-cancel
+ - build-discarder:
+ days-to-keep: 30
+ num-to-keep: 10
+ artifact-num-to-keep: 5
+ parameters:
+ - string:
+ name: PUBLISH_DEST
+ default: ''
+ - string:
+ name: PUBLISH_HOST
+ default: ''
+ - string:
+ name: YEAR
+ default: 'default'
+ - string:
+ name: DAY_OF_YEAR
+ default: 'default'
+ disabled: false
+ node: aarch64-06
+ display-name: 'OpenJDK X - Publish jtreg results'
+ wrappers:
+ - timestamps
+ - ssh-agent-credentials:
+ users:
+ - '744cffb4-9ce1-4856-b103-9fdda06dad36'
+ builders:
+ - copyartifact:
+ project: jtreg-build
+ filter: 'jtreg-build-4.2.0-SNAPSHOT.tar.xz'
+ flatten: true
+ - shell: |
+ #!/bin/bash
+
+ set -ex
+
+ PERSIST=$HOME/srv/openjdkX
+ SCRIPT_DIR=$PERSIST/openjdk-test-scripts
+ export JDK_VERSION=X
+
+ (unset PRIVATE_KEY; env | sort >$WORKSPACE/env.out)
+ tree -fd -L 5 $PERSIST | xz >$WORKSPACE/tree.out.xz
+
+ if [ -d $SCRIPT_DIR ]; then
+ (cd $SCRIPT_DIR; git pull)
+ else
+ git clone https://git.linaro.org/leg/openjdk/openjdk-test-scripts.git $SCRIPT_DIR
+ fi
+
+ tar xf jtreg-build-4.2.0-SNAPSHOT.tar.xz
+ export PATH=${WORKSPACE}/jtreg/bin:$PATH
+ which jtdiff
+ TOP_DIR=$PERSIST/openjdk-jtreg-nightly-tests bash -x $SCRIPT_DIR/publish $PUBLISH_DEST $NODE_NAME
+ publishers:
+ - archive:
+ artifacts: 'tree.out.xz, env.out'
+ - email:
+ recipients: 'fathi.boudra@linaro.org stuart.monteith@linaro.org'