aboutsummaryrefslogtreecommitdiff
path: root/trigger-lt-qcom-linux-aosp-4.14.0.yaml
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2017-11-29 16:48:03 +0100
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2017-11-29 16:52:09 +0100
commit6081be943ea354dbcb9e679446af33d5d116ae4b (patch)
tree9f30e43fadea4a778d34433ec5bcb387fe87f016 /trigger-lt-qcom-linux-aosp-4.14.0.yaml
parentb0e2c2c54de8e2f09bb748383de5be08da245771 (diff)
lt-qcom-linux-aosp: add new job
To be used to build the Kernel image for AOSP builds for DB410c. We reuse as much as possible the generic lt-qcom-linux job, however we need to publish the images so that they can be consumed by Android builds. Change-Id: I0acb2975cc90485f0ce663c5da5c09c9fb4b434f Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Diffstat (limited to 'trigger-lt-qcom-linux-aosp-4.14.0.yaml')
-rw-r--r--trigger-lt-qcom-linux-aosp-4.14.0.yaml53
1 files changed, 53 insertions, 0 deletions
diff --git a/trigger-lt-qcom-linux-aosp-4.14.0.yaml b/trigger-lt-qcom-linux-aosp-4.14.0.yaml
new file mode 100644
index 00000000..331ff6d4
--- /dev/null
+++ b/trigger-lt-qcom-linux-aosp-4.14.0.yaml
@@ -0,0 +1,53 @@
+- job:
+ name: trigger-lt-qcom-linux-aosp-4.14.0
+ project-type: freestyle
+ defaults: global
+ logrotate:
+ daysToKeep: 30
+ numToKeep: 30
+ properties:
+ - authorization:
+ anonymous:
+ - job-read
+ - job-extended-read
+ - job-workspace
+ linaro-landing-team-qualcomm-personnel:
+ - job-build
+ - job-cancel
+ disabled: false
+ node: build
+ display-name: 'Trigger for QCOM LT kernel 4.14 branch'
+ scm:
+ - git:
+ url: https://git.linaro.org/git/landing-teams/working/qualcomm/kernel.git
+ refspec: +refs/heads/release/*:refs/remotes/origin/release/*
+ name: origin
+ branches:
+ - refs/heads/release/android/qcomlt-4.14
+ skip-tag: true
+ shallow-clone: false
+ wipe-workspace: false
+ triggers:
+ - pollscm: 'H/5 * * * *'
+ wrappers:
+ - timestamps
+ - build-name:
+ name: '#${BUILD_NUMBER}-${GIT_REVISION,length=8}'
+ builders:
+ - shell: |
+ #!/bin/bash -e
+
+ # bring in stable and mainline tags
+ git fetch --tags https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux.git
+ git fetch --tags https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
+
+ echo KERNEL_VERSION=$(make kernelversion) > qcomlt_parameters
+ echo KERNEL_DESCRIBE=$(git describe --always) >> qcomlt_parameters
+ echo KERNEL_BRANCH=$(echo ${GIT_BRANCH} | sed 's|origin/||') >> qcomlt_parameters
+ cat qcomlt_parameters
+ publishers:
+ - trigger-parameterized-builds:
+ - project:
+ - 'lt-qcom-linux-aosp'
+ condition: SUCCESS
+ property-file: qcomlt_parameters