Import Zuul v3 job

Add run-tests job in-tree for Zuul v3. This job has been converted to
Zuul v3 syntax.

Change-Id: I76139623f828cd5d27644df81bf632519f568f39
This commit is contained in:
Andreas Jaeger 2018-02-26 19:52:52 +01:00
parent 82f9e84b86
commit b0fb22d3fe
2 changed files with 20 additions and 0 deletions

13
.zuul.yaml Normal file
View File

@ -0,0 +1,13 @@
- job:
name: cl-openstack-client-run-tests
description: |
Run tests for cl-openstack-client project.
run: playbooks/run-tests/run.yaml
- project:
check:
jobs:
- cl-openstack-client-run-tests
gate:
jobs:
- cl-openstack-client-run-tests

View File

@ -0,0 +1,7 @@
- hosts: all
tasks:
- name: Run run-tests.sh
command: ./run-tests.sh
args:
chdir: '{{ zuul.project.src_dir }}'