aboutsummaryrefslogtreecommitdiff
path: root/openembedded-odp-rootfs.yaml
blob: 2ee8e393abf03e56f030a1591720f9bcc5ac74e2 (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
- job:
    name: openembedded-odp-rootfs
    project-type: matrix
    defaults: global
    description: |
        * Build tip ODP in openembedded and setup a testplan on arm(be), arm64(be)
        * and x86-64 to be able to run the validation tests.
    logrotate:
        daysToKeep: 30
        numToKeep: 30
    parameters:
        - string:
            name: LAVA_SERVER
            default: 'lng.validation.linaro.org/RPC2/'
        - string:
            name: BUNDLE_STREAM_NAME
            default: '/public/team/lng/odp/'
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
            linaro:
                - job-build
                - job-cancel
    disabled: false
    node: build
    display-name: 'OpenEmbedded build for ODP'
    scm:
        - git:
            url: https://git.linaro.org/openembedded/jenkins-setup.git
            refspec: +refs/heads/master:refs/remotes/origin/master
            name: origin
            branches:
                - refs/heads/master
            skip-tag: true
            shallow-clone: true
            wipe-workspace: false
    axes:
        - axis:
            type: slave
            name: label
            values:
                - x86_64-07
        - axis:
            type: user-defined
            name: gcc_version
            values:
                - 5.2
        - axis:
            type: user-defined
            name: arch
            values:
                - armv7a
                - armv7ab
                - armv8
                - x86-64
    execution-strategy:
        sequential: true
        touchstone:
            expr: 'arch=="armv7a"'
    wrappers:
        - timestamps
        - build-name:
            name: '#${BUILD_NUMBER}-${GIT_REVISION,length=8}'
    builders:
        - linaro-publish-token
        - shell: |
            #!/bin/bash

            set -ex

            export PATH="$HOME/bin:$PATH"

            trap cleanup_exit INT TERM EXIT

            cleanup_exit()
            {
              cd ${WORKSPACE}/meta-linaro
              git reset --hard
            }

            # we clean build and populate it from cache
            bash -x pre-build-do-cleanup.sh

            # do a build
            bash -x init-and-build.sh -a ${arch} -g ${gcc_version} -p virtual/libc

            source ./openembedded-core/oe-init-build-env build
            cd ${WORKSPACE}

            ./srcrev-check.py -d meta-linaro/meta-linaro/recipes-extra/odp -u

            bash -x init-and-build.sh -a ${arch} -g ${gcc_version} -p linaro-image-lng

            bash -x post-build-create-image-manifest.sh

            # Capture what we're building in the build output.
            repo manifest -r

            cd ${WORKSPACE}

            case "${arch}" in
              armv7a)
                hwpack="arndale"
                DEVICE_TYPE="arndale"
                ;;
              armv7ab)
                hwpack="arndale-be"
                DEVICE_TYPE="arndale"
                ;;
              armv8)
                hwpack="vexpress64"
                DEVICE_TYPE="juno"
                ;;
              x86-64)
                hwpack="x86_64"
                DEVICE_TYPE="x86"
                ;;
            esac

            KERNEL_URL="http://snapshots.linaro.org/kernel-hwpack/linux-linaro-lng-v4.1/${hwpack}/$(wget  -q --no-check-certificate -O - https://ci.linaro.org/job/linux-lng-v4.1/hwpack=${hwpack},label=docker-jessie-amd64/lastSuccessfulBuild/buildNumber)"
            DTB_URL=${KERNEL_URL}/dtbs
            export ROOTFS_BUILD_URL="http://snapshots.linaro.org/openembedded/images/odp-${arch}-gcc-${gcc_version}/${BUILD_NUMBER}/$(ls ${WORKSPACE}/out/linaro-image-lng-*.tar.gz |xargs basename)"
            STARTUP_NSH="${KERNEL_URL}/startup.nsh"

            cat << EOF > post_build_lava_parameters
            DEVICE_TYPE=${DEVICE_TYPE}
            BUNDLE_STREAM_NAME=${BUNDLE_STREAM_NAME}
            LAVA_SERVER=${LAVA_SERVER}
            KERNEL_URL=${KERNEL_URL}
            DTB_URL=${DTB_URL}
            STARTUP_NSH=${STARTUP_NSH}
            hwpack_type=${hwpack}
            ROOTFS_BUILD_URL=${ROOTFS_BUILD_URL}
            EOF
        - inject:
            properties-file: post_build_lava_parameters
        - shell: |
            #!/bin/bash

            set -ex

            template_file="template-base"
            case "${arch}" in
              armv7ab)
                template_file="template-be-base"
                ;;
            esac

            # Parse recipe and get GIT_URL/GIT_BRANCH/GIT_COMMIT
            export GIT_URL=$(grep "^SRC_URI =" ${WORKSPACE}/meta-linaro/meta-linaro/recipes-extra/odp/odp_*.bb | cut -d'"' -f2 | cut -d';' -f1)
            export GIT_COMMIT=$(grep "^SRCREV_odp =" ${WORKSPACE}/meta-linaro/meta-linaro/recipes-extra/odp/odp_*.bb |cut -d'"' -f2 | cut -d'=' -f2)

            mkdir -p ${WORKSPACE}/out/lava
            rm -rf configs lci-build-tools
            git clone --depth 1 http://git.linaro.org/ci/lci-build-tools.git
            git clone --depth 1 http://git.linaro.org/ci/job/configs.git

            export test=oe-vald
            export DIST=openembedded
            export TARGET_TYPE=oe
            export TESTDEF_FILE="common/odp-validation"
            export ROOTFS_TYPE=odp-${arch}-gcc-${gcc_version}
            export SKIP_INSTALL=all
            ./lci-build-tools/yaml-to-json.py configs/odp/lava-job-definitions/${DEVICE_TYPE}/${template_file}.yaml > ${WORKSPACE}/out/lava/${template_file}.json

            # Publish to snapshots
            test -d ${HOME}/bin || mkdir ${HOME}/bin
            wget 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 \
               --api_version 3 \
               --link-latest ${WORKSPACE}/out openembedded/images/odp-${arch}-gcc-${gcc_version}/${BUILD_NUMBER}
        - inject:
            properties-file: post_build_lava_parameters
        - conditional-step:
            condition-kind: strings-match
            condition-string1: '${ENV,var="arch"}'
            condition-string2: 'armv7a'
            steps:
                - trigger-builds:
                    - project: 'odp-armv7a-test-definitions'
                      predefined-parameters: UPSTREAM_BUILD_NUMBER=${BUILD_NUMBER}
                      block: true
        - conditional-step:
            condition-kind: strings-match
            condition-string1: '${ENV,var="arch"}'
            condition-string2: 'armv7ab'
            steps:
                - trigger-builds:
                    - project: 'odp-armv7ab-test-definitions'
                      predefined-parameters: UPSTREAM_BUILD_NUMBER=${BUILD_NUMBER}
                      block: true
        - conditional-step:
            condition-kind: strings-match
            condition-string1: '${ENV,var="arch"}'
            condition-string2: 'armv8'
            steps:
                - trigger-builds:
                    - project: 'odp-armv8-test-definitions'
                      predefined-parameters: UPSTREAM_BUILD_NUMBER=${BUILD_NUMBER}
                      block: true
        - conditional-step:
            condition-kind: strings-match
            condition-string1: '${ENV,var="arch"}'
            condition-string2: 'x86-64'
            steps:
                - trigger-builds:
                    - project: 'odp-x86-64-test-definitions'
                      predefined-parameters: UPSTREAM_BUILD_NUMBER=${BUILD_NUMBER}
                      block: true
    publishers:
        - email:
            recipients: 'fathi.boudra@linaro.org anders.roxell@linaro.org'