aboutsummaryrefslogtreecommitdiff
path: root/jdk9-email-results.yaml
blob: 1f883fd30ed9de14478a4b800fcbeb72c547572c (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
- job:
    name: jdk9-email-results
    project-type: freestyle
    defaults: global
    description: |
        * Sends the report.txt file to the aarch64-port-dev mailing list.<br>
        * The text report is copied from the jdk9-generate-text-report job.
    logrotate:
        numToKeep: 10
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
    parameters:
        - string:
            name: RECIPIENTS
            default: 'fathi.boudra@linaro.org'
    disabled: false
    node: build
    display-name: 'OpenJDK 9 - Send e-mail report'
    wrappers:
        - timestamps
    builders:
        - copyartifact:
            project: jdk9-generate-email-report
            filter: 'report.txt'
        - shell: |
            #!/bin/bash

            FROM="OpenJDK Testing <openjdk-testing@linaro.org>"
            SUBJECT="JTREG, SPECjbb2013 and Hadoop/Terasort results for OpenJDK 9 on AArch64"
            MSG=$(cat report.txt)

            cat <<EOF | /usr/sbin/sendmail -t
            From: ${FROM}
            To: ${RECIPIENTS}
            Subject: ${SUBJECT}

            ${MSG}
            EOF