aboutsummaryrefslogtreecommitdiff
path: root/rpb-kernel-enterprise.yaml
blob: 0a93711086a3220c413629465d0e6572d4ddf2da (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
- job:
    name: 96boards-reference-kernel-enterprise
    project-type: freestyle
    defaults: global
    logrotate:
        daysToKeep: 60
        numToKeep: 60
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
                - job-workspace
            linaro:
                - job-read
                - job-extended-read
                - job-build
                - job-cancel
    parameters:
        - string:
            name: KERNEL_GIT_BRANCH
            default: 'erp-noupstream'
        - string:
            name: KERNEL_GIT_URL
            default: 'https://github.com/Linaro/rpk.git'
        - string:
            name: DEBIAN_GIT_BRANCH
            default: 'rpb-stretch'
        - string:
            name: DEBIAN_GIT_URL
            default: 'https://github.com/Linaro/debian-kernel-packaging.git'
        - string:
            name: TARGET_REPO
            default: 'ERP:staging'
    disabled: false
    node: docker-stretch-amd64
    display-name: 'Reference Platform - Linux Kernel (EE)'
    scm:
        - git:
            url: ${KERNEL_GIT_URL}
            refspec: +refs/heads/${KERNEL_GIT_BRANCH}:refs/remotes/origin/${KERNEL_GIT_BRANCH}
            name: origin
            branches:
                - refs/heads/${KERNEL_GIT_BRANCH}
            basedir: linux
            skip-tag: true
            shallow-clone: false
            wipe-workspace: false
    wrappers:
        - timestamps
        - build-name:
            name: '#${BUILD_NUMBER}'
    builders:
        - linaro-publish-token
        - shell: |
            #!/bin/bash

            set -ex

            sudo apt-get update -q=2
            sudo apt-get install -y ccache python-requests quilt cpio rsync dh-exec

            # Checkout source code
            git clone --depth 1 -b ${DEBIAN_GIT_BRANCH} ${DEBIAN_GIT_URL} debian-pkg

            # Export the kernel packaging version
            cd ${WORKSPACE}/linux

            kernel_version=$(make kernelversion)
            kernel_deb_pkg_version=$(echo ${kernel_version} | sed -e 's/\.0-rc/~rc/')
            export KDEB_PKGVERSION="${kernel_deb_pkg_version}.linaro.${BUILD_NUMBER}-1"
            git tag -f v${kernel_deb_pkg_version//\~/-}

            # Build the debian source kernel
            cd ${WORKSPACE}/debian-pkg

            # Use build number as ABI
            sed -i "s/^abiname:.*/abiname: ${BUILD_NUMBER}/g" debian/config/defines

            cat << EOF > debian/changelog
            linux ($KDEB_PKGVERSION) unstable; urgency=medium

              * Auto build:
                - URL: ${GIT_URL}
                - Branch: ${GIT_BRANCH}
                - Commit: ${GIT_COMMIT}

             -- Fathi Boudra <fathi.boudra@linaro.org>  $(date -R)

            EOF

            debian/rules clean || true
            debian/bin/genorig.py ../linux
            debian/rules orig
            fakeroot debian/rules source
            debuild -S -uc -us -d
            cd ..

            cat > ${WORKSPACE}/build-package-params <<EOF
            source=${BUILD_URL}/artifact/$(echo *.dsc)
            repo=${TARGET_REPO}
            EOF

            # Final preparation for publishing
            mkdir out
            rm *.orig.tar.xz
            cp -a orig/*.orig.tar.xz ${WORKSPACE}/
            cp -a *.dsc *.changes *.debian.tar.xz *.orig.tar.xz out/

            # Create MD5SUMS file
            (cd out && md5sum * > MD5SUMS.txt)

            # Build information
            cat > out/HEADER.textile << EOF

            h4. Reference Platform - Linux Kernel

            Linux Kernel build consumed by the Reference Platform Enterprise Builds

            Build Description:
            * Build URL: "${BUILD_URL}":${BUILD_URL}
            * Git tree: "${GIT_URL}":${GIT_URL}
            * Git branch: ${GIT_BRANCH}
            * Git commit: ${GIT_COMMIT}
            * Kernel version: ${kernel_version}
            * Kernel deb version: ${KDEB_PKGVERSION}
            EOF

            # 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} \
              --link-latest \
              out 96boards/reference-platform/components/linux/enterprise/${BUILD_NUMBER}/
    publishers:
        - archive:
            artifacts: '*.dsc, *.xz'
        - trigger-parameterized-builds:
            - project: build-package-obs
              property-file: build-package-params
              condition: SUCCESS
        - email:
            recipients: 'fathi.boudra@linaro.org riku.voipio@linaro.org packages@lists.linaro.org'