aboutsummaryrefslogtreecommitdiff
path: root/lkft-hikey-aosp-4.4.yaml
blob: f0555ea7d6c53ea10e146ee694b13082683e5993 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
- job:
    name: lkft-hikey-aosp-4.4
    project-type: freestyle
    defaults: global
    logrotate:
        daysToKeep: 60
        numToKeep: 60
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
            linaro:
                - job-build
                - job-cancel
    parameters:
        - string:
            name: REFERENCE_BUILD_URL
            default: 'http://builds.96boards.org/snapshots/hikey/linaro/aosp-master/432/'
        - string:
            name: KERNEL_BRANCH
            default: 'android-hikey-linaro-4.4'
        - string:
            name: KERNEL_REPO
            default: 'https://android.googlesource.com/kernel/hikey-linaro'
        - string:
            name: QA_SERVER
            default: 'https://qa-reports.linaro.org'
    disabled: false
    node: docker-xenial-aosp
    display-name: 'LKFT - AOSP 4.4 (Android)'
    scm:
        - git:
            url: ${KERNEL_REPO}
            refspec: +refs/heads/${KERNEL_BRANCH}:refs/remotes/origin/${KERNEL_BRANCH}
            name: origin
            branches:
                - origin/${KERNEL_BRANCH}
            skip-tag: true
            shallow-clone: true
            wipe-workspace: false
    wrappers:
        - timestamps
        - build-name:
            name: '#${BUILD_NUMBER}-${GIT_REVISION,length=8}'
        - timeout:
            timeout: 500
        - credentials-binding:
            - text:
                credential-id: QA_REPORTS_TOKEN
                variable: QA_REPORTS_TOKEN
            - text:
                credential-id: ARTIFACTORIAL_TOKEN
                variable: ARTIFACTORIAL_TOKEN
    builders:
        - shell:
            !include-raw:
                - lkft/hikey-aosp/builders.sh
        - inject:
            properties-file: injected_build_variables
        - linaro-publish-token
        - shell: |
            #!/bin/bash

            wget -q https://git.linaro.org/ci/job/configs.git/blob_plain/HEAD:/android-lcr/hikey/build-info/aosp-master-template.txt -O out/BUILD-INFO.txt

            # Publish
            test -d ${HOME}/bin || mkdir ${HOME}/bin
            wget -q https://git.linaro.org/ci/publishing-api.git/blob_plain/HEAD:/linaro-cp.py -O ${HOME}/bin/linaro-cp.py
            time python ${HOME}/bin/linaro-cp.py \
              --server ${PUBLISH_SERVER} \
              --build-info out/BUILD-INFO.txt \
              --link-latest \
              out/ android/lkft/${JOB_NAME}/${BUILD_NUMBER}

            PUB_DEST=android/lkft/${JOB_NAME}/${BUILD_NUMBER}
        - shell: |
            #!/bin/bash

            export DEVICE_TYPE=hi6220-hikey
            export LAVA_SERVER=https://lkft.validation.linaro.org/RPC2/
            export PUB_DEST=android/lkft/${JOB_NAME}/${BUILD_NUMBER}
            export DOWNLOAD_URL=https://snapshots.linaro.org/${PUB_DEST}

            if [ ! -z "${KERNEL_DESCRIBE}" ]; then
                export QA_BUILD_VERSION=${KERNEL_DESCRIBE}
            else
                export QA_BUILD_VERSION=${KERNEL_COMMIT:0:12}
            fi

            rm -rf configs
            git clone --depth 1 http://git.linaro.org/ci/job/configs.git

            python configs/openembedded-lkft/submit_for_testing.py \
                --device-type ${DEVICE_TYPE} \
                --build-number ${BUILD_NUMBER} \
                --lava-server ${LAVA_SERVER} \
                --qa-server ${QA_SERVER} \
                --qa-server-team lkft \
                --qa-server-project aosp-${KERNEL_BRANCH} \
                --git-commit ${QA_BUILD_VERSION} \
                --template-path configs/lkft/lava-job-definitions \
                --template-names template-boot.yaml template-vts-kernel-part1.yaml template-vts-kernel-part2.yaml template-vts-kernel-part3.yaml \
                --quiet

            for CTS_MODULE_NAME in CtsVmTestCases CtsLibcoreTiestCases CtsBionicTestCases \
                    CtsCompilationTestCases CtsDramTestCases CtsFileSystemTestCases \
                    CtsHardwareTestCases CtsJobSchedulerTestCases CtsOsTestCases \
                    CtsPermissionTestCases CtsPermission2TestCases CtsSecurityTestCases \
                    CtsUsbTests
            do
                export CTS_MODULE_NAME=${CTS_MODULE_NAME}
                python configs/openembedded-lkft/submit_for_testing.py \
                    --device-type ${DEVICE_TYPE} \
                    --build-number ${BUILD_NUMBER} \
                    --lava-server ${LAVA_SERVER} \
                    --qa-server ${QA_SERVER} \
                    --qa-server-team lkft \
                    --qa-server-project aosp-${KERNEL_BRANCH} \
                    --git-commit ${QA_BUILD_VERSION} \
                    --template-path configs/lkft/lava-job-definitions \
                    --template-names template-cts.yaml \
                    --quiet
            done
    publishers:
        - logparser:
            parse-rules: '/var/lib/jenkins/userContent/android.parse'
            unstable-on-warning: false
            fail-on-error: false
        - fingerprint:
            files: 'build/fingerprints/*'
        - groovy-postbuild:
            script:
                !include-raw: openembedded-lkft/postbuild.groovy
        - email:
            recipients: 'vishal.bhoj@linaro.org fathi.boudra@linaro.org'