aboutsummaryrefslogtreecommitdiff
path: root/tcwg-abe-test.yaml
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2016-07-15 16:01:47 +0100
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2016-07-15 16:01:47 +0100
commit94e17dc19f4655518c84c4364799b75ca6f03e19 (patch)
tree22749cc0e8331968744133dde36ca4f17478d7be /tcwg-abe-test.yaml
parent733e711c5099d4de0aabe5df78c6ed42a91baf8d (diff)
tcwg-*: Remove obsolete jobs
Change-Id: I69eb06b28d5b269df6caaec4baa8859f9e782bd2
Diffstat (limited to 'tcwg-abe-test.yaml')
-rw-r--r--tcwg-abe-test.yaml73
1 files changed, 0 insertions, 73 deletions
diff --git a/tcwg-abe-test.yaml b/tcwg-abe-test.yaml
deleted file mode 100644
index 20c4a9cea6..0000000000
--- a/tcwg-abe-test.yaml
+++ /dev/null
@@ -1,73 +0,0 @@
-- job:
- name: tcwg-abe-test
- project-type: matrix
- defaults: global
- logrotate:
- daysToKeep: 30
- numToKeep: 30
- properties:
- - authorization:
- anonymous:
- - job-read
- - job-extended-read
- linaro:
- - job-build
- - job-cancel
- parameters:
- - string:
- name: abe_branch
- default: refs/heads/master
- description: 'ABE revision to test'
- disabled: true
- node: tcwg-x86_64-ex40
- retry-count: 3
- concurrent: true
- display-name: 'TCWG DEAD ZZZ ABE Test'
- scm:
- - git:
- url: https://git-us.linaro.org/toolchain/abe.git
- refspec: +refs/changes/*:refs/remotes/changes/*
- branches:
- - ${abe_branch}
- skip-tag: true
- shallow-clone: true
- wipe-workspace: true
- axes:
- - axis:
- type: slave
- name: label
- values:
- - tcwg-x86_64-ex40
- - axis:
- type: user-defined
- name: test
- values:
- - cross_build
- - native_build
- - testsuite
- execution-strategy:
- sequential: false
- wrappers:
- - timeout:
- timeout: 300
- - timestamps
- - ssh-agent-credentials:
- # tcwg-buildslave user id
- users:
- - 'e0958a95-204f-4c14-a66c-5e2be6c5d50a'
- - build-name:
- name: '#${BUILD_NUMBER}-${GIT_REVISION,length=8}'
- builders:
- - shell: |
- #!/bin/bash
-
- case "$test" in
- cross_build) bash -x ${WORKSPACE}/jenkins.sh -t arm-linux-gnueabihf --runtests --excludecheck gdb --fileserver ex40-01.tcwglab.linaro.org/snapshots-ref ;;
- native_build) bash -x ${WORKSPACE}/jenkins.sh -t native --runtests --bootstrap --excludecheck gdb --fileserver ex40-01.tcwglab.linaro.org/snapshots-ref ;;
- testsuite)
- set -e
- set -x
- ./configure --with-fileserver=ex40-01.tcwglab.linaro.org/snapshots-ref
- make check
- ;;
- esac