aboutsummaryrefslogtreecommitdiff
path: root/jdk8-update-src-tree-persist.yaml
blob: 49941171a2c708edcdee86d4119f1ad6b64da238 (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
- job:
    name: jdk8-update-src-tree-persist
    project-type: freestyle
    defaults: global
    description: |
        This jobs writes the current jdk8 src tree to /work/openjdk-testing/openjdk8-jtreg-nightly-tests/...<br>
        It is used to report failure/errors against the jtreg results.
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
        - build-discarder:
            days-to-keep: 30
            num-to-keep: 10
            artifact-num-to-keep: 5
    disabled: false
    node: aarch64-06
    display-name: 'OpenJDK 8 - Write jdk8 source tree'
    wrappers:
        - workspace-cleanup:
            dirmatch: false
        - timestamps
    builders:
        - copyartifact:
            project: jdk8-update-src-tree
            filter: 'out/*'
            target: incoming
            flatten: true
        - shell: |
            #!/bin/bash

            set -exu

            : ${YEAR:=$(date +%Y)}
            : ${DAY_OF_YEAR:=$(date +%j)}

            TOP_DIR=$HOME/openjdk8-jtreg-nightly-tests
            src_dir=$TOP_DIR/src/$YEAR/$DAY_OF_YEAR
            mkdir -p $src_dir
            echo "Extracting tarball to $src_dir"
            tar -C $src_dir --strip-components=1 -xf $WORKSPACE/incoming/jdk8.tar.gz