aboutsummaryrefslogtreecommitdiff
path: root/jdk8-jcstress-test-publish-results.yaml
blob: b1fd84c6264124a2ef95fc96f79484fd73473589 (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
- job:
    name: jdk8-jcstress-test-publish-results
    project-type: freestyle
    defaults: global
    description: |
        * Reports are published to http://openjdk.linaro.org/jcstress-nightly-runs/
    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 - Publish jcstress report'
    wrappers:
        - timestamps
    builders:
        - shell: |
            #!/bin/bash


            PERSIST=$HOME/src/openjdk
            SCRIPT_DIR=$PERSIST/jcstress-test-scripts
            if [ -d $SCRIPT_DIR ]; then
                (cd $SCRIPT_DIR; git pull)
            else
                git clone https://git.linaro.org/leg/openjdk/jcstress-test-scripts.git $SCRIPT_DIR
            fi
            export TOP_DIR=$PERSIST

            $SCRIPT_DIR/jcstress-publish /home/openjdk-testing
    publishers:
        - email:
            recipients: 'fathi.boudra@linaro.org'