aboutsummaryrefslogtreecommitdiff
path: root/odp-diff-abi-publish.yaml
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2017-11-23 18:35:11 +0200
committerFathi Boudra <fathi.boudra@linaro.org>2017-11-23 18:46:34 +0000
commit0d0bc6f3a998d863b60680b5b93dad5b376e7f25 (patch)
treecb27337939b19ee3a8ab909b8800a90ec8061cb6 /odp-diff-abi-publish.yaml
parent9e97bc07e582183a4675a16df51b2eaa6bd061db (diff)
lng: remove LNG related jobs
Per Maxim Uvarov request on https://projects.linaro.org/browse/CTT-247 Change-Id: Ib6f2ff977f2371719d1f7de7d05a1446fe790bc9 Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Diffstat (limited to 'odp-diff-abi-publish.yaml')
-rw-r--r--odp-diff-abi-publish.yaml92
1 files changed, 0 insertions, 92 deletions
diff --git a/odp-diff-abi-publish.yaml b/odp-diff-abi-publish.yaml
deleted file mode 100644
index d10f1df1f7..0000000000
--- a/odp-diff-abi-publish.yaml
+++ /dev/null
@@ -1,92 +0,0 @@
-- job:
- name: odp-diff-abi-publish
- project-type: matrix
- defaults: global
- description: |
- * Diff ODP ABI between different implementations and the released version<br>
- * (i.e., ODPs master branch). The diff is the ABI differences.<br>
- properties:
- - authorization:
- anonymous:
- - job-read
- - job-extended-read
- linaro:
- - job-read
- - job-extended-read
- - job-build
- - job-cancel
- - build-discarder:
- days-to-keep: 30
- num-to-keep: 30
- disabled: false
- node: master
- child-workspace: .
- display-name: 'ODP diff ABI publish'
- triggers:
- - timed: '@daily'
- axes:
- - axis:
- type: user-defined
- name: platform_type
- values:
- - generic
- - dpdk
- - axis:
- type: user-defined
- name: COMPARE_BRANCH
- values:
- - master
- - next
- - api-next
- - axis:
- type: slave
- name: label
- values:
- - docker-jessie-amd64
- execution-strategy:
- combination-filter: |
- !(platform_type=="dpdk" && (COMPARE_BRANCH=="api-next" || COMPARE_BRANCH=="next")) || !(platform_type=="generic" && COMPARE_BRANCH=="master")
- wrappers:
- - timestamps
- - matrix-tie-parent:
- node: master
- - timeout:
- timeout: 60
- builders:
- - shell: |
- #!/bin/bash
-
- set -ex
-
- rm -rf check-odp
- git clone --depth 1 git://git.linaro.org/lng/check-odp.git
-
- ./check-odp/pre-install.sh
-
- case "${platform_type}" in
- dpdk)
- mkdir -p ${HOME}/bin
- cp check-odp/helper/ci-uname ${HOME}/bin/uname
- export PATH=${HOME}/bin:${PATH}
- export COMPARE_URL=git://git.linaro.org/lng/odp-dpdk.git
- ;;
- esac
-
- bash -x ${WORKSPACE}/check-odp/diff-abi.sh |tee
- - ssh:
- site: 'docs.opendataplane.org'
- target: 'incoming/odp-diff-abi-publish/${platform_type}/${BUILD_NUMBER}'
- source: 'check-odp/publishing/**'
- command: |
- cd /srv/docs.opendataplane.org
- mkdir -p snapshots/odp-diff-abi-publish/${platform_type}/${BUILD_NUMBER}
- cp -a incoming/odp-diff-abi-publish/${platform_type}/${BUILD_NUMBER}/* snapshots/odp-diff-abi-publish/${platform_type}/${BUILD_NUMBER}
- rm -rf $(pwd)/snapshots/odp-diff-abi-publish/${platform_type}/latest
- ln -sf $(pwd)/snapshots/odp-diff-abi-publish/${platform_type}/${BUILD_NUMBER} snapshots/odp-diff-abi-publish/${platform_type}/latest
- rm -rf incoming/odp-diff-abi-publish/${platform_type}/${BUILD_NUMBER}
- timeout: 120000
- remove-prefix: 'check-odp/publishing'
- always-publish-from-master: true
- publishers:
- - email:
- recipients: 'lng-ci@lists.linaro.org'