aboutsummaryrefslogtreecommitdiff
path: root/lkft-omap-merge-mirrors.yaml
blob: bd5979aa6a9978ad669b293392cd8df617b25e1b (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
- job:
    name: lkft-omap-merge-mirrors
    project-type: freestyle
    defaults: global
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
            linaro:
                - job-build
                - job-cancel
        - build-discarder:
            days-to-keep: 180
            num-to-keep: 150
            artifact-num-to-keep: 1
    parameters:
        - string:
            name: KERNEL_BRANCH
        - string:
            name: KERNEL_DESCRIBE
        - string:
            name: SRCREV_kernel
        - string:
            name: MAKE_KERNELVERSION
    disabled: false
    node: docker-bionic-android-lkft
    display-name: 'LKFT - merge LTS changes for omap kernel'
    scm:
        - git:
            remotes:
                - linaro:
                    url: ssh://ci-bot@android-review.linaro.org:29418/kernel/omap.git
                    refspec: +refs/heads/android-beagle-x15-4.14-stable-lkft:refs/remotes/linaro/android-beagle-x15-4.14-stable-lkft +refs/heads/android-beagle-x15-4.14-lkft:refs/remotes/linaro/android-beagle-x15-4.14-lkft +refs/heads/android-beagle-x15-4.19-stable-lkft:refs/remotes/linaro/android-beagle-x15-4.19-stable-lkft
                    credentials-id: 'CI_BOT_SSH_KEY'
                - aosp:
                    url: https://android.googlesource.com/kernel/common
                    refspec: +refs/heads/android-4.14-stable:refs/remotes/aosp/android-4.14-stable +refs/heads/android-4.19-stable:refs/remotes/aosp/android-4.19-stable
            branches:
                - linaro/android-beagle-x15-4.14-lkft
            git-config-name: 'Linaro CI'
            git-config-email: 'ci-bot@linaro.org'
            skip-tag: true
            shallow-clone: false
            wipe-workspace: false
    wrappers:
        - timestamps
        - build-name:
            name: '#${BUILD_NUMBER}-${ENV,var="KERNEL_DESCRIBE"}-${ENV,var="KERNEL_BRANCH"}'
        - timeout:
            timeout: 500
        - ssh-agent-credentials:
            users:
                - 'CI_BOT_SSH_KEY'
    builders:
        - shell: |
            #!/bin/bash -ex
            git clean -fdx
            env

            git config --global user.name "Linaro CI"
            git config --global user.email "ci-bot@linaro.org"

            case "X${KERNEL_BRANCH}" in
                "Xandroid-4.14-stable")
                    target_branch="android-beagle-x15-4.14-stable-lkft"
                    ;;
                "Xandroid-4.19-stable")
                    target_branch="android-beagle-x15-4.19-stable-lkft"
                    ;;
                "X*")
                    target_branch=""
                    ;;
            esac

            if [ -n "${target_branch}" ]; then
              git checkout -B ${target_branch} linaro/${target_branch}
              git merge --log --no-edit aosp/${KERNEL_BRANCH}
              # push to the remote branch
              git push linaro HEAD:${target_branch}

              # Apply tag
              tag=${KERNEL_DESCRIBE}-$(date +"%Y%m%d")-${BUILD_NUMBER}
              git tag ${tag}

              # Push tag
              git push linaro ${tag}
            fi

    publishers:
        - logparser:
            parse-rules: '/var/jenkins_home/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: 'yongqin.liu@linaro.org'
            subject: '[CI] Merge LTS fixes for X15: ${KERNEL_BRANCH} ${SRCREV_kernel} ${BUILD_STATUS}'
            body: |
                Build URL: ${PROJECT_URL}${BUILD_NUMBER}/
                Full log: ${PROJECT_URL}${BUILD_NUMBER}/consoleText
                Parsed warnings/errors: ${PROJECT_URL}${BUILD_NUMBER}/parsed_console
                Git branch: ${KERNEL_BRANCH}
                Git URL: ${KERNEL_REPO}
                Git commit: ${SRCREV_kernel}

                Errors:
                ${BUILD_LOG_REGEX, regex="^ERROR:.* ", linesBefore=0, linesAfter=0, showTruncatedLines=false}
            presend-script:
                !include-raw: openembedded-lkft/presend-script.groovy