Add OSC plugin job

Change-Id: I3a02a86bf63d5bf7b95db55ef2dbebbfb7021c9b
This commit is contained in:
Dean Troyer 2017-10-02 16:52:41 -05:00
parent ea505bb55d
commit 26c538dbc2
2 changed files with 101 additions and 0 deletions

39
.zuul.yaml Normal file
View File

@ -0,0 +1,39 @@
# from o-z-j/zuul.d/zuul-legacy-jobs.yaml
- job:
name: openstackclient-check-plugins
parent: legacy-base
run: playbooks/openstackclient-check-plugins/run
timeout: 1800
voting: false
required-projects:
- openstack/openstackclient
- openstack/python-openstackclient
- openstack/python-barbicanclient
- openstack/python-cloudkittyclient
- openstack/python-congressclient
- openstack/python-designateclient
- openstack/python-heatclient
- openstack/python-ironic-inspector-client
- openstack/python-ironicclient
- openstack/python-karborclient
- openstack/python-mistralclient
- openstack/python-muranoclient
- openstack/python-neutronclient
- openstack/python-octaviaclient
- openstack/python-pankoclient
- openstack/python-rsdclient
- openstack/python-saharaclient
- openstack/python-searchlightclient
- openstack/python-senlinclient
- openstack/python-tripleoclient
- openstack/python-troveclient
- openstack/python-vitrageclient
- openstack/python-watcherclient
- openstack/python-zaqarclient
- project:
name: openstack/openstackclient
check:
jobs:
- openstackclient-check-plugins:
voting: false

View File

@ -0,0 +1,62 @@
- hosts: all
name: Autoconverted job legacy-check-osc-plugins from old job check-osc-plugins
tasks:
- name: Ensure legacy workspace directory
file:
path: '{{ ansible_user_dir }}/workspace'
state: directory
- shell:
cmd: |
set -e
set -x
CLONEMAP=`mktemp`
function cleanup {
# In cases where zuul-cloner is aborted during a git
# clone operation, git will remove the git work tree in
# its cleanup. The work tree in these jobs is the
# workspace directory, which means that subsequent
# jenkins post-build actions can not run because the
# workspace has been removed.
# To reduce the likelihood of this having an impact,
# recreate the workspace directory if needed
mkdir -p $WORKSPACE
rm -f $CLONEMAP
}
trap cleanup EXIT
cat > $CLONEMAP << EOF
clonemap:
- name: $ZUUL_PROJECT
dest: .
EOF
/usr/zuul-env/bin/zuul-cloner -m $CLONEMAP --cache-dir /opt/git \
git://git.openstack.org $ZUUL_PROJECT
executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'
- shell:
cmd: /usr/local/jenkins/slave_scripts/install-distro-packages.sh
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'
- shell:
cmd: |
set -x
sudo rm -f /etc/sudoers.d/zuul
# Prove that general sudo access is actually revoked
! sudo -n true
executable: /bin/bash
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'
- shell:
cmd: |
pwd
set
echo {{ ansible_user_dir }}
ls -l
src/{{ zuul.project.canonical_name }}/openstackclient/tests/plugins/check-osc-plugins.sh
chdir: '{{ ansible_user_dir }}/workspace'
environment: '{{ zuul | zuul_legacy_vars }}'