aboutsummaryrefslogtreecommitdiff
path: root/trigger-lkft-aosp-common.yaml
blob: e081d06ac14d3f86c47dff0f970374bcd9978afa (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
- job:
    name: trigger-lkft-aosp-common
    project-type: freestyle
    defaults: global
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
        - build-discarder:
            days-to-keep: 180
            num-to-keep: 150
    disabled: false
    node: triggers
    display-name: 'Trigger for changes on aosp common 4.14/4.19 branches'
    scm:
        - git:
            remotes:
                - common:
                    url: https://android.googlesource.com/kernel/common
                - linux-stable:
                    url: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
                    refspec: +refs/heads/linux-4.14.y:refs/remotes/linux-stable/linux-4.14.y +refs/heads/linux-4.19.y:refs/remotes/linux-stable/linux-4.19.y
            branches:
              - common/android-4.14-stable
              - common/android-4.19-stable
              - common/android-4.4-p
              - common/android-4.9-p
              - common/android-4.9-q
              - common/android-4.14-p
              - common/android-4.14-q
              - common/android-4.19-q
            skip-tag: true
            shallow-clone: false
            wipe-workspace: false
    triggers:
        - pollscm:
            cron: 'H H/3 * * *'
    wrappers:
        - timestamps
        - build-name:
            name: '#${BUILD_NUMBER}-${PROPFILE,file="properties.txt",property="KERNEL_DESCRIBE"}-${GIT_BRANCH#common/}'
    builders:
        - shell: |
            #!/bin/bash -ex
            git clean -fdx
            env

            MAKE_KERNELVERSION=$(make kernelversion)
            KERNEL_BRANCH=$(echo $GIT_BRANCH|sed s,common/,,)
            KERNEL_DESCRIBE=${MAKE_KERNELVERSION}-${GIT_COMMIT:0:12}

            echo KERNEL_DESCRIBE=${KERNEL_DESCRIBE} > properties.txt
            echo KERNEL_BRANCH=${KERNEL_BRANCH} >> properties.txt

            params=lkft-parameters-hikey.txt
            echo KERNEL_DESCRIBE=${KERNEL_DESCRIBE} >> $params
            echo SRCREV_kernel=${GIT_COMMIT} >> $params
            echo MAKE_KERNELVERSION=${MAKE_KERNELVERSION} >> $params
            echo KERNEL_BRANCH=${KERNEL_BRANCH} >> $params
            cat $params

            if [ "X${KERNEL_BRANCH}X" = "Xandroid-4.14-stableX" ] || [ "X${KERNEL_BRANCH}X" = "Xandroid-4.19-stableX" ]; then
              # only trigger the lkft-omap-merge-mirrors build job for the android-4.14-stable and android-4.19-stable branches
              cp  "${params}" lkft-parameters-x15.txt
            fi

        - trigger-builds:
            - project: lkft-omap-merge-mirrors
              property-file: lkft-parameters-x15.txt
            - project: lkft-hikey-merge-mirrors
              property-file: lkft-parameters-hikey.txt
    publishers:
        - email:
            recipients: 'lkft-maintainers@lists.linaro.org'