aboutsummaryrefslogtreecommitdiff
path: root/openembedded-lkft-lsk-4.9-test.yaml
diff options
context:
space:
mode:
authorAlex Shi <alex.shi@linaro.org>2017-11-29 15:08:16 +0800
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2017-11-29 21:18:24 +0000
commitaaa3cf38c57cb5b56693c3e606b7e0bb93d3801a (patch)
treecc93b2be9d1a0bdc7d670bfa31b83fd5fef2fc39 /openembedded-lkft-lsk-4.9-test.yaml
parent19e1caf62eeb7fb830fa55bb9e4c47525edd1c05 (diff)
openembedded-lkft-lsk-4.9-test: additional LSK branches
Change-Id: I1587f1d348563abeae62cfd52b9ec8a480835248
Diffstat (limited to 'openembedded-lkft-lsk-4.9-test.yaml')
-rw-r--r--openembedded-lkft-lsk-4.9-test.yaml153
1 files changed, 153 insertions, 0 deletions
diff --git a/openembedded-lkft-lsk-4.9-test.yaml b/openembedded-lkft-lsk-4.9-test.yaml
new file mode 100644
index 0000000000..00b3696c6a
--- /dev/null
+++ b/openembedded-lkft-lsk-4.9-test.yaml
@@ -0,0 +1,153 @@
+- job:
+ name: openembedded-lkft-lsk-4.9-test
+ 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: KERNEL_BRANCH
+ default: 'linux-linaro-lsk-v4.9-test'
+ - string:
+ name: KERNEL_VERSION
+ default: '4.9'
+ - string:
+ name: KERNEL_RECIPE
+ default: 'linux-generic-lsk-test'
+ - string:
+ name: KERNEL_REPO
+ default: 'https://git.linaro.org/kernel/linux-linaro-stable.git'
+ - string:
+ name: KERNEL_DESCRIBE
+ - string:
+ name: SRCREV_kernel
+ - string:
+ name: MAKE_KERNELVERSION
+ - string:
+ name: IMAGES
+ default: 'rpb-console-image'
+ - string:
+ name: MANIFEST_BRANCH
+ default: 'morty'
+ - string:
+ name: LAVA_SERVER
+ default: 'https://lkft.validation.linaro.org/RPC2/'
+ - string:
+ name: QA_SERVER
+ default: 'https://qa-reports.linaro.org'
+ - string:
+ name: QA_SERVER_PROJECT
+ default: 'TBD'
+ - string:
+ name: SKIP_LAVA
+ default: '1'
+ disabled: false
+ node: master
+ display-name: 'LKFT - LSK 4.9 test (OpenEmbedded/morty)'
+ axes:
+ - axis:
+ type: user-defined
+ name: MACHINE
+ values:
+ - 'dragonboard-410c'
+ - 'hikey'
+ - 'intel-core2-32'
+ - 'juno'
+ - axis:
+ type: user-defined
+ name: DISTRO
+ values:
+ - rpb
+ - axis:
+ type: slave
+ name: label
+ values:
+ - docker-stretch-amd64
+ execution-strategy:
+ sequential: false
+ wrappers:
+ - 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
+
+ # Mapping for MACHINE -> DEVICE_TYPE
+ case "${MACHINE}" in
+ hikey)
+ DEVICE_TYPE=hi6220-hikey
+ ;;
+ dragonboard-410c)
+ DEVICE_TYPE=dragonboard-410c
+ ;;
+ intel-core2-32)
+ DEVICE_TYPE=x86
+ ;;
+ juno)
+ DEVICE_TYPE=juno-r2
+ ;;
+ esac
+
+ echo "DEVICE_TYPE=${DEVICE_TYPE}" > device_type_parameters
+ echo "#${BUILD_NUMBER}-${SRCREV_kernel:0:8}" > ${WORKSPACE}/version.txt
+ - build-name-setter:
+ name: 'version.txt'
+ file: true
+ - inject:
+ properties-file: device_type_parameters
+ - shell:
+ !include-raw: openembedded-lkft/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}/ ${BASE_URL}
+ - shell:
+ !include-raw: openembedded-lkft/submit_for_testing.sh
+ publishers:
+ - groovy-postbuild:
+ script:
+ !include-raw: openembedded-lkft/postbuild.groovy
+ - email-ext:
+ recipients: 'lkft-maintainers@lists.linaro.org'
+ matrix-trigger: only-configurations
+ subject: '[CI] ${MACHINE}: ${KERNEL_BRANCH} {{SRCREV_kernel}} ${BUILD_STATUS}'
+ body: |
+ Build URL: ${PROJECT_URL}${BUILD_NUMBER}/
+ Full log: ${PROJECT_URL}${BUILD_NUMBER}/consoleText
+ Parsed warnings/errors: ${PROJECT_URL}${BUILD_NUMBER}/parsed_console
+ Git branch: ${KERNEL_BRANCH}
+ Git URL: ${KERNEL_REPO}
+ Git commit: ${SRCREV_kernel}
+
+ Errors:
+ ${BUILD_LOG_REGEX, regex="^ERROR:.* ", linesBefore=0, linesAfter=0, showTruncatedLines=false}
+ presend-script:
+ !include-raw: openembedded-lkft/presend-script.groovy