aboutsummaryrefslogtreecommitdiff
path: root/jdk9-archive-test-scripts.yaml
diff options
context:
space:
mode:
authorDaniel Díaz <daniel.diaz@linaro.org>2015-10-27 16:47:30 -0600
committerLinaro Code Review <review@review.linaro.org>2015-11-06 10:24:52 +0000
commit2f0d2c60a9a8bfa6f3849d1ac5c16b204468e637 (patch)
tree094ba7ff0ded75f7812995e716de5474712f33e2 /jdk9-archive-test-scripts.yaml
parent0ad0250a64910711f3f07c0b76dc42e468940eb1 (diff)
jdk9-archive-test-scripts: Add new OpenJDK9 CI job.
Change-Id: I8e54199475f785043e36bf43067f45e16cb17cc6 Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
Diffstat (limited to 'jdk9-archive-test-scripts.yaml')
-rw-r--r--jdk9-archive-test-scripts.yaml34
1 files changed, 34 insertions, 0 deletions
diff --git a/jdk9-archive-test-scripts.yaml b/jdk9-archive-test-scripts.yaml
new file mode 100644
index 00000000..52349217
--- /dev/null
+++ b/jdk9-archive-test-scripts.yaml
@@ -0,0 +1,34 @@
+- job:
+ name: jdk9-archive-test-scripts
+ project-type: freestyle
+ defaults: global
+ description: |
+ * This job is no longer necessary as these directories are held at git.linaro.org.
+ logrotate:
+ numToKeep: 10
+ artifactNumToKeep: 1
+ properties:
+ - authorization:
+ anonymous:
+ - job-read
+ - job-extended-read
+ disabled: false
+ node: aarch64-06
+ display-name: 'OpenJDK9 - Archive OpenJDK 9 test scripts'
+ wrappers:
+ - timestamps
+ builders:
+ - shell: |
+ #!/bin/bash
+
+ set -exu
+
+ rm -rf out
+ mkdir out
+ cd ~openjdk-testing
+ tar --exclude=.git -acvf ${WORKSPACE}/out/specjbb-test-scripts.tar.gz specjbb-test-scripts
+ tar --exclude=.git --exclude=jdk9 -acvf ${WORKSPACE}/out/openjdk-test-scripts.tar.gz openjdk-test-scripts
+ tar --exclude=.git -acvf ${WORKSPACE}/out/hadoop-test-scripts.tar.gz hadoop-test-scripts
+ publishers:
+ - archive:
+ artifacts: 'out/*.tar.gz'