aboutsummaryrefslogtreecommitdiff
path: root/lhg-oe-build-next.yaml
diff options
context:
space:
mode:
authorAndrey Konovalov <andrey.konovalov@linaro.org>2016-11-22 17:34:40 +0300
committerFathi Boudra <fathi.boudra@linaro.org>2016-11-23 09:13:57 +0000
commit1ab538fd5e6e582b365c4487f59ba9ead5d58c8b (patch)
tree8192a6679123b09f8ec3372964ec93d6dc0d4802 /lhg-oe-build-next.yaml
parent49cfed9365d5a8981ffdb829d50e4044394d262d (diff)
ynk-lhg-oe-build*: drop "ynk-" prefix, publish lhg-oe-build, share the build script
Change-Id: Ibbaf987bf3272667be93c6363187e107de2a1e89 Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
Diffstat (limited to 'lhg-oe-build-next.yaml')
-rw-r--r--lhg-oe-build-next.yaml72
1 files changed, 72 insertions, 0 deletions
diff --git a/lhg-oe-build-next.yaml b/lhg-oe-build-next.yaml
new file mode 100644
index 0000000000..59fe0e405b
--- /dev/null
+++ b/lhg-oe-build-next.yaml
@@ -0,0 +1,72 @@
+- job:
+ name: lhg-oe-build-next
+ project-type: matrix
+ defaults: global
+ logrotate:
+ daysToKeep: 30
+ numToKeep: 30
+ artifactNumToKeep: 1
+ properties:
+ - authorization:
+ anonymous:
+ - job-read
+ - job-extended-read
+ - job-workspace
+ linaro:
+ - job-build
+ - job-cancel
+ - job-configure
+ parameters:
+ - string:
+ name: MANIFEST_BRANCH
+ default: 'krogoth-staging'
+ - string:
+ name: DISTRO
+ default: 'rpb-wayland'
+ - string:
+ name: image_type
+ default: 'rpb-westonchromium-image'
+ disabled: false
+ node: lhg
+ display-name: 'LHG rpb-based build (staging)'
+ axes:
+ - axis:
+ type: slave
+ name: label
+ values:
+ - lhg
+ - axis:
+ type: user-defined
+ name: MACHINE
+ values:
+ - dragonboard-410c
+ - hikey
+ - am57xx-evm
+ execution-strategy:
+ sequential: true
+ wrappers:
+ - timestamps
+ - matrix-tie-parent:
+ node: lhg
+ builders:
+ - shell:
+ !include-raw: lhg-oe-build/builders.sh
+ - inject:
+ properties-file: post_build_lava_parameters
+ - linaro-publish-token
+ - shell: |
+ #!/bin/bash
+
+ # 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 \
+ ${DEPLOY_DIR_IMAGE}/ \
+ openembedded/pre-built/lhg/${MANIFEST_BRANCH}/${MACHINE}/${DISTRO}/${BUILD_NUMBER}
+ publishers:
+ - archive:
+ artifacts: 'out/*'
+ - email:
+ recipients: 'andrey.konovalov@linaro.org'