aboutsummaryrefslogtreecommitdiff
path: root/jdk14-jcstress-test.yaml
blob: 027cf0bbfa6d7ba1c5cff4318745e9eb8cd3a239 (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
- job:
    name: jdk14-jcstress-test
    project-type: matrix
    defaults: global
    description: |
        This job runs the http://openjdk.java.net/projects/code-tools/jcstress/ tests.<br>
        <b>Note:</b> this test currently takes around <b>10 hours</b> to complete<br>
        This project currently runs the "server" variant only due to the amount of time both tests would take to complete.
    properties:
        - authorization:
            linaro:
                - job-read
            openjdk-members:
                - job-extended-read
                - job-build
                - job-cancel
        - build-discarder:
            days-to-keep: 30
            num-to-keep: 10
            artifact-num-to-keep: 5
    disabled: true
    node: j12-qrep-01
    display-name: 'OpenJDK 14 - Run jcstress tests'
    parameters:
        - string:
            name: JCSTRESS_MODE
            default: 'sanity'
    axes:
        - axis:
            type: user-defined

            name: BUILD_TYPE
            values:
                - release
        - axis:
            type: slave
            name: label
            values:
                - j12-qrep-01
    execution-strategy:
        sequential: true
    wrappers:
        - workspace-cleanup:
            dirmatch: false
        - timestamps
        - matrix-tie-parent:
            node: j12-qrep-01
        - timeout:
            timeout: 900
    builders:
        - shell: |
            #!/bin/bash

            set -eu

            TEST_TYPE=all
            DEPS=$HOME/workspace/jdk14-get-deps

            JCSTRESS_JAR=$DEPS/jcstress.jar
            rm -rf jdk14*
            tar xf ~/workspace/jdk14-build-image/BUILD_TYPE/${BUILD_TYPE}/label/${NODE_NAME}/out/jdk14-${BUILD_TYPE}.tar.gz
            export JAVA_HOME=${WORKSPACE}/jdk14-${BUILD_TYPE}
            export PATH=${JAVA_HOME}/bin:${PATH}
            which java
            java -version

            # XXX Don't fail the job if jcstress itself fails.
            set +e
            java -jar ${JCSTRESS_JAR} -m ${JCSTRESS_MODE}

            test_result=$?
            set -e

            rm -rf out
            mkdir out

            out_dirname=jcstress-results-${BUILD_TYPE}

            rm -rf ${out_dirname}
            mkdir -p ${out_dirname}
            cp jcstress-results*.bin.gz ${out_dirname}
            cp -a results ${out_dirname}

            tar czvf out/${out_dirname}.tar.gz ${out_dirname}
    publishers:
        - archive:
            artifacts: 'out/jcstress-results-*.tar.gz'
        - html-publisher:
            name: 'HTML Report'
            dir: 'results'
            files: 'index.html'
            keep-all: true