aboutsummaryrefslogtreecommitdiff
path: root/jdk7u-update-src-tree.yaml
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2015-10-26 10:33:06 +0200
committerFathi Boudra <fathi.boudra@linaro.org>2015-10-26 10:33:06 +0200
commit1070f9bd775d989f6ebb5774ee14125e3c380ca1 (patch)
tree9069333c2ee34d34d1a0bbe452a16bfa11252eb8 /jdk7u-update-src-tree.yaml
parent32fff8afa26740dd09f6e49f8f60ac7f0c03ab92 (diff)
jdk7u-update-src-tree: add new OpenJDK CI job
Change-Id: I408330378292de8d1389970952788100b6187cdd Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Diffstat (limited to 'jdk7u-update-src-tree.yaml')
-rw-r--r--jdk7u-update-src-tree.yaml64
1 files changed, 64 insertions, 0 deletions
diff --git a/jdk7u-update-src-tree.yaml b/jdk7u-update-src-tree.yaml
new file mode 100644
index 0000000000..a43e5ef629
--- /dev/null
+++ b/jdk7u-update-src-tree.yaml
@@ -0,0 +1,64 @@
+- job:
+ name: jdk7u-update-src-tree
+ project-type: freestyle
+ defaults: global
+ description: |
+ * Polls the upstream jdk7 source tree(s) and archives the source tree.
+ logrotate:
+ numToKeep: 10
+ artifactNumToKeep: 1
+ properties:
+ - authorization:
+ anonymous:
+ - job-read
+ - job-extended-read
+ disabled: true
+ node: aarch64-06
+ display-name: 'OpenJDK - Archive jdk7 source tree'
+ scm:
+ - hg:
+ url: http://hg.openjdk.java.net/jdk7u/jdk7u
+ clean: true
+ subdir: jdk7u
+ - hg:
+ url: http://hg.openjdk.java.net/jdk7u/jdk7u/corba
+ clean: true
+ subdir: jdk7u/corba
+ - hg:
+ url: http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot
+ clean: true
+ subdir: jdk7u/hotspot
+ - hg:
+ url: http://hg.openjdk.java.net/jdk7u/jdk7u/jaxp
+ clean: true
+ subdir: jdk7u/jaxp
+ - hg:
+ url: http://hg.openjdk.java.net/jdk7u/jdk7u/jaxws
+ clean: true
+ subdir: jdk7u/jaxws
+ - hg:
+ url: http://hg.openjdk.java.net/jdk7u/jdk7u/jdk
+ clean: true
+ subdir: jdk7u/jdk
+ - hg:
+ url: http://hg.openjdk.java.net/jdk7u/jdk7u/langtools
+ clean: true
+ subdir: jdk7u/langtools
+ triggers:
+ - pollscm: 'H 10 * * *'
+ wrappers:
+ - timestamps
+ builders:
+ - shell: |
+ #!/bin/bash
+
+ set -exu
+
+ rm -rf out
+ mkdir out
+ tar --exclude=.hg -acf out/jdk7u.tar.gz jdk7u
+ publishers:
+ - archive:
+ artifacts: 'out/jdk7u.tar.gz'
+ - email:
+ recipients: 'fathi.boudra@linaro.org'