aboutsummaryrefslogtreecommitdiff
path: root/lt-qcom-openembedded-images.yaml
blob: ea72ea56669822caea0a95dc3dd7e8e22de450d0 (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
- job:
    name: lt-qcom-openembedded-images
    project-type: matrix
    defaults: global
    logrotate:
        daysToKeep: 30
        numToKeep: 30
        artifactNumToKeep: 1
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
                - job-workspace
            linaro-landing-team-qualcomm-personnel:
                - job-build
                - job-cancel
    parameters:
        - string:
            name: IMAGES
            default: 'core-image-minimal weston-image weston-chromium-image'
    disabled: false
    node: build
    display-name: 'OpenEmbedded/Yocto Project based images for Qualcomm Snapdragon'
    axes:
        - axis:
            type: user-defined
            name: MANIFEST_BRANCH
            values:
                - master
                - jethro
        - axis:
            type: user-defined
            name: OE_MACHINE
            values:
                - dragonboard-410c
                - ifc6410
        - axis:
            type: slave
            name: label
            values:
                - docker-utopic-amd64
    execution-strategy:
        sequential: true
    wrappers:
        - timestamps
        - matrix-tie-parent:
            node: build
    builders:
        - shell: |
            #!/bin/bash

            set -ex

            trap cleanup_exit INT TERM EXIT

            cleanup_exit()
            {
                echo "Running cleanup_exit..."
            }

            sudo sed -i -e 's/archive.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
            sudo apt-get update
            sudo apt-get install -y python-pycurl chrpath gawk texinfo libsdl1.2-dev

            mkdir -p ${HOME}/bin
            curl https://storage.googleapis.com/git-repo-downloads/repo > ${HOME}/bin/repo
            chmod a+x ${HOME}/bin/repo
            export PATH=${HOME}/bin:${PATH}

            # initialize repo if not done already
            if [ ! -e ".repo/manifest.xml" ]; then
               repo init -u https://github.com/ndechesne/qcom-oe-manifest.git -b ${MANIFEST_BRANCH}

               # link to shared downloads on persistent disk
               # our builds config is expecting downloads and sstate-cache, here.
               mkdir -p ${HOME}/srv/oe/downloads ${HOME}/srv/oe/sstate-cache
               ln -s ${HOME}/srv/oe/downloads
               ln -s ${HOME}/srv/oe/sstate-cache
            fi

            repo sync
            repo manifest -r
            MANIFEST_COMMIT=$(cd .repo/manifests && git rev-parse --short HEAD)

            # the setup-environment will create local.conf, make sure we get rid
            # of old config. Let's remove the previous TMPDIR as well. We want
            # to preserve build/buildhistory though.
            rm -rf build/conf build/tmp-glibc/
            QCOM_EULA=1 MACHINE=${OE_MACHINE} source setup-environment build

            # Add job BUILD_NUMBER to image file names
            echo "IMAGE_NAME_append = \"-${BUILD_NUMBER}\"" >> conf/local.conf

            bitbake ${IMAGES}

            # Archive buildhistory
            cd buildhistory
            repo manifest -r > MSG
            git tag -F MSG ${MANIFEST_BRANCH}-${BUILD_NUMBER}-git${MANIFEST_COMMIT}
            # TODO: push buildhistory
            cd -

            # Prepare files to publish
            rm -f ${WORKSPACE}/build/tmp-glibc/deploy/images/${OE_MACHINE}/*.txt
            find ${WORKSPACE}/build/tmp-glibc/deploy/images/${OE_MACHINE} -type l -delete

            # Create MD5SUMS file
            (cd ${WORKSPACE}/build/tmp-glibc/deploy/images/${OE_MACHINE} && md5sum * > MD5SUMS.txt)

            wget -q https://git.linaro.org/ci/publishing-api.git/blob_plain/HEAD:/linaro-cp.py -O ${HOME}/bin/linaro-cp.py
        - linaro-publish-token:
            host: builds.96boards.org
        - shell: |
            #!/bin/bash
            set -ex

            # Publish on 96boards.org
            if [ "${OE_MACHINE}" == "dragonboard-410c" ]; then
               time python ${HOME}/bin/linaro-cp.py \
                    --server ${PUBLISH_SERVER} \
                    --link-latest \
                    ${WORKSPACE}/build/tmp-glibc/deploy/images/${OE_MACHINE} \
                    snapshots/${OE_MACHINE//-}/linaro/openembedded/${MANIFEST_BRANCH}/${BUILD_NUMBER}
            else
                echo "Do not publish ${OE_MACHINE} on ${PUBLISH_SERVER}"
            fi
        - linaro-publish-token:
            host: snapshots.linaro.org
        - shell: |
            #!/bin/bash
            set -ex

            # Publish on linaro.org
            if [ "${OE_MACHINE}" == "ifc6410" ]; then
               time python ${HOME}/bin/linaro-cp.py \
                    --server ${PUBLISH_SERVER} \
                    --link-latest \
                    ${WORKSPACE}/build/tmp-glibc/deploy/images/${OE_MACHINE} \
                    openembedded/pre-built/${OE_MACHINE//-}/${MANIFEST_BRANCH}/${BUILD_NUMBER}
            else
                echo "Do not publish ${OE_MACHINE} on ${PUBLISH_SERVER}"
            fi
    publishers:
        - archive:
            artifacts: 'build/tmp-glibc/deploy/images/${OE_MACHINE}/*'
        - email:
            recipients: 'nicolas.dechesne@linaro.org fathi.boudra@linaro.org'
        - ircbot:
            channels:
                - name: '#linaro-lt-qcomm'
                  password: ${LT_QCOM_KEY}