aboutsummaryrefslogtreecommitdiff
path: root/lhg-oe-thud.yaml
diff options
context:
space:
mode:
authorPeter Griffin <peter.griffin@linaro.org>2019-06-20 13:55:29 +0100
committerAndrey Konovalov <andrey.konovalov@linaro.org>2019-06-20 15:54:47 +0000
commit679f6dc742fcaca8e7a9219ef2d9537ebc4a5a8d (patch)
tree37ce78beb975dc649bdd51b1e6ee46cf91baf214 /lhg-oe-thud.yaml
parent9d8dece224b5d0fca6e1959ee2872bdaf860796c (diff)
lhg-oe-thud: new build job
Change-Id: Ia3c4d7a8ed5ac78361acff0758934ddccc95ecc8 Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Diffstat (limited to 'lhg-oe-thud.yaml')
-rw-r--r--lhg-oe-thud.yaml110
1 files changed, 110 insertions, 0 deletions
diff --git a/lhg-oe-thud.yaml b/lhg-oe-thud.yaml
new file mode 100644
index 00000000..22290c68
--- /dev/null
+++ b/lhg-oe-thud.yaml
@@ -0,0 +1,110 @@
+- job:
+ name: lhg-oe-thud
+ project-type: matrix
+ defaults: global
+ properties:
+ - authorization:
+ anonymous:
+ - job-read
+ - job-extended-read
+ - job-workspace
+ linaro:
+ - job-read
+ - job-extended-read
+ - job-build
+ - job-cancel
+ - build-discarder:
+ days-to-keep: 30
+ num-to-keep: 30
+ artifact-num-to-keep: 1
+ parameters:
+ - string:
+ name: IMAGES
+ default: 'rpb-westonchromium-image'
+ - string:
+ name: MANIFEST_URL
+ default: 'https://github.com/linaro-mmwg/lhg-oe-manifests.git'
+ - string:
+ name: MANIFEST_BRANCH
+ default: 'thud'
+ - string:
+ name: BASE_URL
+ default: 'https://snapshots.linaro.org/'
+ - string:
+ name: PUB_DEST
+ default: 'openembedded/pre-built/lhg/${MANIFEST_BRANCH}/${MACHINE}/${BUILD_NUMBER}/${DISTRO}'
+ - string:
+ name: LAVA_SERVER
+ default: 'https://validation.linaro.org/RPC2/'
+ - string:
+ name: QA_SERVER
+ default: 'https://qa-reports.linaro.org'
+ - string:
+ name: QA_SERVER_PROJECT
+ default: 'openembedded-thud'
+
+ disabled: false
+ node: lhg
+ display-name: 'LHG - OpenEmbedded (thud)'
+ axes:
+ - axis:
+ type: user-defined
+ name: MACHINE
+ values:
+ - am57xx-evm
+ - dragonboard-410c
+ - imx8mqevk
+ - axis:
+ type: user-defined
+ name: DISTRO
+ values:
+ - rpb-wayland
+ - axis:
+ type: slave
+ name: label
+ values:
+ - docker-stretch-amd64-lhg
+ execution-strategy:
+ sequential: false
+ wrappers:
+ - timestamps
+ - credentials-binding:
+ - text:
+ credential-id: QA_REPORTS_TOKEN
+ variable: QA_REPORTS_TOKEN
+ builders:
+ - shell: |
+ #!/bin/bash
+
+ # Mapping for MACHINE -> DEVICE_TYPE
+ case "${MACHINE}" in
+ dragonboard-410c)
+ DEVICE_TYPE=dragonboard-410c
+ ;;
+ am57xx-evm)
+ DEVICE_TYPE=am57xx-evm
+ ;;
+ *)
+ echo "Skip DEVICE_TYPE for ${MACHINE}"
+ ;;
+ esac
+
+ echo "DEVICE_TYPE=${DEVICE_TYPE}" > device_type_parameters
+ - inject:
+ properties-file: device_type_parameters
+ - shell:
+ !include-raw: lhg-oe-build/builders.sh
+ - inject:
+ properties-file: post_build_lava_parameters
+ - linaro-publish-token
+ - shell:
+ !include-raw: rpb-openembedded/publishers.sh
+ - inject:
+ properties-file: submit_for_testing_parameters
+ - shell:
+ !include-raw: lhg-oe-build/submit_for_testing.sh
+ publishers:
+ - archive:
+ artifacts: 'out/*'
+ - email:
+ recipients: 'andrey.konovalov@linaro.org peter.griffin@linaro.org'