aboutsummaryrefslogtreecommitdiff
path: root/warp7-openembedded-sumo.yaml
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2019-04-12 16:03:57 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2019-04-12 16:31:19 +0100
commit45fcad983e3eb9eb7c089600ae6408da7b0e32db (patch)
tree65ed81304863c51348d3e8366c6c68f360adc2d4 /warp7-openembedded-sumo.yaml
parent7a5a46af812dc9f581c44429ae19c897ec3b1124 (diff)
warp7-openembedded: added new job for WaRP7 board
Add a new job definition for building WaRP7 with rpb-openembedded style builds. This was copied from rpb-openembedded-sumo.yaml and related files, then customised for WaRP7. Change-Id: I73a7a1a1bd1c32b4573bfa799f91f5bdc5b77b13 Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'warp7-openembedded-sumo.yaml')
-rw-r--r--warp7-openembedded-sumo.yaml141
1 files changed, 141 insertions, 0 deletions
diff --git a/warp7-openembedded-sumo.yaml b/warp7-openembedded-sumo.yaml
new file mode 100644
index 00000000..8881cc2c
--- /dev/null
+++ b/warp7-openembedded-sumo.yaml
@@ -0,0 +1,141 @@
+- job:
+ name: warp7-openembedded-sumo
+ project-type: matrix
+ defaults: global
+ logrotate:
+ daysToKeep: 30
+ numToKeep: 30
+ artifactNumToKeep: 1
+ properties:
+ - authorization:
+ anonymous:
+ - job-read
+ - job-extended-read
+ - job-workspace
+ linaro:
+ - job-read
+ - job-extended-read
+ - job-build
+ - job-cancel
+ parameters:
+ - string:
+ name: IMAGES
+ default: 'warp7-console-image'
+ - string:
+ name: IMAGES_RPB
+ default: ''
+ - string:
+ name: IMAGES_RPB_WAYLAND
+ default: ''
+ - string:
+ name: MANIFEST_URL
+ default: 'https://git.linaro.org/people/ryan.harkin/oe-rpb-manifest.git'
+ - string:
+ name: MANIFEST_BRANCH
+ default: 'sumo'
+ - string:
+ name: BASE_URL
+ default: 'http://snapshots.linaro.org/'
+ - string:
+ name: LAVA_SERVER
+ default: 'validation.linaro.org/RPC2/'
+ - string:
+ name: QA_SERVER
+ default: 'https://qa-reports.linaro.org'
+ - string:
+ name: QA_SERVER_TEAM
+ default: 'warp7'
+ - string:
+ name: QA_SERVER_PROJECT
+ default: 'warp7'
+ - string:
+ name: AUTH_GROUPS
+ default: 'linaro'
+ disabled: false
+ node: master
+ display-name: 'WaRP7 OpenEmbedded (sumo)'
+ axes:
+ - axis:
+ type: user-defined
+ name: MACHINE
+ values:
+ - 'imx7s-warp'
+ - axis:
+ type: user-defined
+ name: DISTRO
+ values:
+ - rpb
+ - axis:
+ type: slave
+ name: label
+ values:
+ - docker-stretch-amd64
+ execution-strategy:
+ sequential: false
+ wrappers:
+ - timeout:
+ timeout: 180
+ - timestamps
+ - ssh-agent-credentials:
+ users:
+ - 'OE_COMMIT_BOT_KEY'
+ - credentials-binding:
+ - text:
+ credential-id: QA_REPORTS_TOKEN
+ variable: QA_REPORTS_TOKEN
+ builders:
+ - shell: |
+ #!/bin/bash
+ PUB_DEST="openembedded/warp7/${MANIFEST_BRANCH}/${MACHINE}/${BUILD_NUMBER}/${DISTRO}"
+ echo "PUB_DEST=${PUB_DEST}" > pub_dest_parameters
+ - inject:
+ properties-file: pub_dest_parameters
+ - shell: |
+ #!/bin/bash
+
+ # Mapping for MACHINE -> DEVICE_TYPE
+ case "${MACHINE}" in
+ am57xx-evm)
+ DEVICE_TYPE=x15
+ ;;
+ dragonboard-410c)
+ DEVICE_TYPE=dragonboard-410c
+ ;;
+ hikey)
+ DEVICE_TYPE=hi6220-hikey-r2
+ ;;
+ juno)
+ DEVICE_TYPE=juno
+ ;;
+ stih410-b2260)
+ DEVICE_TYPE=b2260
+ ;;
+ imx7s-warp)
+ DEVICE_TYPE=imx7s-warp
+ ;;
+ *)
+ echo "Skip DEVICE_TYPE for ${MACHINE}"
+ ;;
+ esac
+
+ echo "DEVICE_TYPE=${DEVICE_TYPE}" > device_type_parameters
+ - inject:
+ properties-file: device_type_parameters
+ - shell:
+ !include-raw: rpb-openembedded/builders.sh
+ - inject:
+ properties-file: post_build_lava_parameters
+ - linaro-publish-token
+ - shell:
+ !include-raw: rpb-openembedded/publishers.sh
+ - shell:
+ !include-raw: warp7-openembedded/submit_for_testing.sh
+ publishers:
+ - groovy-postbuild:
+ script:
+ !include-raw:
+ - openembedded-lkft/postbuild.groovy
+ - email-ext:
+ recipients: 'ryan.harkin@linaro.org'
+ always: true
+ matrix-trigger: only-parent