aboutsummaryrefslogtreecommitdiff
path: root/jdk7u-update-src-tree.yaml
blob: f35aef9b3f5a7c1b3f7e7baf3d9f46618a6108cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
- scm:
    name: jdk7u
    scm:
        - hg:
            url: http://hg.openjdk.java.net/jdk7u/jdk7u
            clean: true
            subdir: jdk7u
- scm:
    name: corba
    scm:
        - hg:
            url: http://hg.openjdk.java.net/jdk7u/jdk7u/corba
            clean: true
            subdir: jdk7u/corba
- scm:
    name: hotspot
    scm:
        - hg:
            url: http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot
            clean: true
            subdir: jdk7u/hotspot
- scm:
    name: jaxp
    scm:
        - hg:
            url: http://hg.openjdk.java.net/jdk7u/jdk7u/jaxp
            clean: true
            subdir: jdk7u/jaxp
- scm:
    name: jaxws
    scm:
        - hg:
            url: http://hg.openjdk.java.net/jdk7u/jdk7u/jaxws
            clean: true
            subdir: jdk7u/jaxws
- scm:
    name: jdk
    scm:
        - hg:
            url: http://hg.openjdk.java.net/jdk7u/jdk7u/jdk
            clean: true
            subdir: jdk7u/jdk
- scm:
    name: langtools
    scm:
        - hg:
            url: http://hg.openjdk.java.net/jdk7u/jdk7u/langtools
            clean: true
            subdir: jdk7u/langtools
- 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
            linaro:
                - job-build
                - job-cancel
    disabled: false
    node: aarch64-06
    display-name: 'OpenJDK - Archive jdk7 source tree'
    scm:
        - jdk7u
        - corba
        - hotspot
        - jaxp
        - jaxws
        - jdk
        - 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'