aboutsummaryrefslogtreecommitdiff
path: root/lava-lab-sanity-check.yaml
blob: 793cd3f2ce77b07fc8f37aabdefca114642c86ad (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
- job:
    name: lava-lab-sanity-check
    project-type: freestyle
    defaults: global
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
        - build-discarder:
            days-to-keep: 30
            num-to-keep: 30
    disabled: false
    node: build
    display-name: 'LAVA lab sanity check'
    scm:
        - git:
            url: https://review.linaro.org/${GERRIT_PROJECT}
            refspec: ${GERRIT_REFSPEC}
            branches:
                - ${GERRIT_BRANCH}
            skip-tag: true
            clean:
                before: true
            choosing-strategy: gerrit
            basedir: lava-lab
    triggers:
        - gerrit:
            server-name: 'review.linaro.org'
            override-votes: true
            gerrit-build-successful-codereview-value: 1
            gerrit-build-failed-codereview-value: -1
            readable-message: true
            successful-message: 'Sanity Check Successful'
            start-message: 'Sanity Check Started'
            # failure-message: 'Sanity Check Failed'
            failure-message-file: selfcheck.log
            trigger-for-unreviewed-patches: true
            projects:
                - project-compare-type: 'PLAIN'
                  project-pattern: 'lava/lava-lab'
                  branches:
                    - branch-compare-type: 'PLAIN'
                      branch-pattern: 'master'
    wrappers:
        - timestamps
    builders:
        - shell: |
            #!/bin/bash -e
            echo "#${BUILD_NUMBER}-${GERRIT_PATCHSET_REVISION:0:8}" > ${WORKSPACE}/version.txt
        - build-name-setter:
            name: 'version.txt'
            file: true
        - shell: |
            #!/bin/bash

            set -e

            rm ${WORKSPACE}/selfcheck.log | true
            echo ""
            echo "########################################################################"
            echo "    Gerrit Environment"
            env |grep '^GERRIT'
            echo "########################################################################"

            cd lava-lab/
            ./test-all.sh | tee ${WORKSPACE}/selfcheck.log

            exit_code=0
            # check for health check errors
            if (grep invalid ${WORKSPACE}/selfcheck.log); then
                exit_code=1
                echo "Health checks failed"
            fi

            # check for device dict errors
            if (grep -v environment ${WORKSPACE}/selfcheck.log | grep ERROR); then
                exit_code=1
                echo "Device dicts failed"
            fi
            exit ${exit_code}
        - build-name-setter:
            name: 'version.txt'
            file: true