aboutsummaryrefslogtreecommitdiff
path: root/jdk11-generate-email-report.yaml
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2018-04-20 14:23:20 +0100
committerStuart Monteith <stuart.monteith@linaro.org>2018-06-26 15:03:46 +0100
commit6016be543a509f680f196fee532c376f24a98a5b (patch)
tree683c4444ebe87c4082e789d06570d91b7398ffb2 /jdk11-generate-email-report.yaml
parent45e4717389fac7914f9ed7484b2e8db7be046ae5 (diff)
jdk: Create JDK 11 jobs.
The JDK 11 tree has branched off of the mainline. Create the appropriate jobs for building and testing it. Change-Id: Id6b23a35f0b4d33c163b1f8696cc5d4e9c9a1633
Diffstat (limited to 'jdk11-generate-email-report.yaml')
-rw-r--r--jdk11-generate-email-report.yaml74
1 files changed, 74 insertions, 0 deletions
diff --git a/jdk11-generate-email-report.yaml b/jdk11-generate-email-report.yaml
new file mode 100644
index 0000000000..4af1be678a
--- /dev/null
+++ b/jdk11-generate-email-report.yaml
@@ -0,0 +1,74 @@
+- job:
+ name: jdk11-generate-email-report
+ project-type: freestyle
+ defaults: global
+ description: |
+ This job aggregates the results from various jobs:<br>
+ <br>
+ * jcstress<br>
+ * jtreg<br>
+ * terasort<br>
+ * specjbb<br>
+ <br>
+ in text form suitable for the aarch64-port-dev mailing list.
+ 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: ZERO_BASELINE
+ default: '14115'
+ - string:
+ name: SERVER_MAX_JOPS_BASELINE
+ default: '4090'
+ - string:
+ name: SERVER_CRITICAL_JOPS_BASELINE
+ default: '1015'
+ disabled: false
+ node: aarch64-06
+ display-name: 'OpenJDK 11 - Generate e-mail report'
+ wrappers:
+ - timestamps
+# Replaced by parameters
+# - inject:
+# properties-file: '${HOME}/performance-baseline.properties'
+ builders:
+ - copyartifact:
+ project: jtreg-build
+ filter: 'jtreg-build-4.2.0-SNAPSHOT.tar.xz'
+ target: incoming
+ flatten: true
+ - shell: |
+ #!/bin/bash
+
+ tar xf incoming/jtreg-build-4.2.0-SNAPSHOT.tar.xz
+ PATH=${WORKSPACE}/jtreg/bin:${PATH}
+ PERSIST=$HOME/srv/openjdk11
+ export SPECJBB_PRODUCT_HOME=$PERSIST/SPECjbb2015
+ export JDK_VERSION=11
+ which jtdiff
+
+ TOP_DIR=${PERSIST}/openjdk-jtreg-nightly-tests ${PERSIST}/openjdk-test-scripts/openjdk-test-summary release > ${WORKSPACE}/report.txt
+ echo "" >> ${WORKSPACE}/report.txt
+
+ TOP_DIR=${PERSIST} ${PERSIST}/specjbb-test-scripts/specjbb-report >> ${WORKSPACE}/report.txt
+ echo "" >> ${WORKSPACE}/report.txt
+
+ BENCHMARK_RESULTS_DIR=$PERSIST/hadoop-terasort-benchmark-results ${PERSIST}/hadoop-test-scripts/benchmark-terasort-report >> ${WORKSPACE}/report.txt
+ echo "" >> ${WORKSPACE}/report.txt
+
+ TOP_DIR=${PERSIST} ${PERSIST}/jcstress-test-scripts/jcstress-report --url http://openjdk.linaro.org/jdk${JDK_VERSION}/ >> ${WORKSPACE}/report.txt
+ publishers:
+ - archive:
+ artifacts: 'report.txt'
+ - email:
+ recipients: 'fathi.boudra@linaro.org'