diff --git a/.zuul.yaml b/.zuul.yaml index 7e1815b5..06b50be7 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -1,45 +1,11 @@ - job: - name: tox - parent: base - pre-run: playbooks/tox/pre - post-run: playbooks/tox/post - -- job: - name: tox-cover - parent: tox - run: playbooks/tox/cover - voting: false - -- job: - name: tox-docs - parent: tox + name: openstack-doc-build + parent: zuul-tox-docs run: playbooks/tox/docs - post-run: playbooks/tox/docs-post - -- job: - name: tox-linters - parent: tox - run: playbooks/tox/linters - -- job: - name: tox-py27 - parent: tox - run: playbooks/tox/py27 - -- job: - name: tox-py35 - parent: tox - run: playbooks/tox/py35 - -- job: - name: tox-tarball - parent: tox - run: playbooks/tox/tarball - post-run: playbooks/tox/tarball-post - project: name: openstack-infra/openstack-zuul-jobs check: jobs: - - tox-docs - - tox-linters + - openstack-doc-build + - zuul-tox-linters diff --git a/playbooks/tox/cover.yaml b/playbooks/tox/cover.yaml deleted file mode 100644 index 6212a117..00000000 --- a/playbooks/tox/cover.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- hosts: all - roles: - - extra-test-setup - - revoke-sudo - - role: run-cover - envlist: cover diff --git a/playbooks/tox/docs-post.yaml b/playbooks/tox/docs-post.yaml deleted file mode 100644 index 120eeee1..00000000 --- a/playbooks/tox/docs-post.yaml +++ /dev/null @@ -1,3 +0,0 @@ -- hosts: all - roles: - - upload-sphinx-draft diff --git a/playbooks/tox/linters.yaml b/playbooks/tox/linters.yaml deleted file mode 100644 index c0930e0a..00000000 --- a/playbooks/tox/linters.yaml +++ /dev/null @@ -1,5 +0,0 @@ -- hosts: all - roles: - - revoke-sudo - - role: run-tox - envlist: pep8 diff --git a/playbooks/tox/post.yaml b/playbooks/tox/post.yaml deleted file mode 100644 index 771b6af0..00000000 --- a/playbooks/tox/post.yaml +++ /dev/null @@ -1,28 +0,0 @@ -- hosts: all - tasks: - - name: Find tox directories to synchrionize. - find: - file_type: directory - paths: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}/.tox" - # NOTE(pabelanger): The .tox/log folder is empty, ignore it. - patterns: ^(?!log).*$ - use_regex: yes - register: result - - - name: Collect tox logs. - synchronize: - dest: "{{ zuul.executor.log_root }}/tox" - mode: pull - src: "{{ item.path }}/log/" - with_items: "{{ result.files }}" - - - name: Collect test-results. - synchronize: - dest: "{{ zuul.executor.log_root }}" - mode: pull - rsync_opts: - - "--ignore-missing-args" - src: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}/{{ item }}" - with_items: - - "*testr_results.html.gz" - - "*testrepository.subunit.gz" diff --git a/playbooks/tox/pre.yaml b/playbooks/tox/pre.yaml deleted file mode 100644 index 8e705439..00000000 --- a/playbooks/tox/pre.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- hosts: all - gather_facts: true - gather_subset: - - "!all" - roles: - - run-bindep diff --git a/playbooks/tox/py27.yaml b/playbooks/tox/py27.yaml deleted file mode 100644 index 7d439f12..00000000 --- a/playbooks/tox/py27.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- hosts: all - roles: - - extra-test-setup - - revoke-sudo - - role: run-tox - envlist: py27 diff --git a/playbooks/tox/py35.yaml b/playbooks/tox/py35.yaml deleted file mode 100644 index 61c6b7f0..00000000 --- a/playbooks/tox/py35.yaml +++ /dev/null @@ -1,6 +0,0 @@ -- hosts: all - roles: - - extra-test-setup - - revoke-sudo - - role: run-tox - envlist: py35 diff --git a/playbooks/tox/tarball-post.yaml b/playbooks/tox/tarball-post.yaml deleted file mode 100644 index a3c125fa..00000000 --- a/playbooks/tox/tarball-post.yaml +++ /dev/null @@ -1,10 +0,0 @@ -- hosts: all - tasks: - - name: Collect tarball artifacts. - synchronize: - dest: "{{ zuul.executor.src_root }}/tarballs" - mode: pull - src: "{{ zuul_workspace_root }}/src/{{ zuul.project.canonical_name }}/dist/{{ item }}" - with_items: - - "*.tar.gz" - - "*.whl" diff --git a/playbooks/tox/tarball.yaml b/playbooks/tox/tarball.yaml deleted file mode 100644 index 3f30e785..00000000 --- a/playbooks/tox/tarball.yaml +++ /dev/null @@ -1,7 +0,0 @@ -- hosts: all - roles: - - revoke-sudo - - role: run-tarball - envlist: venv - - role: run-wheel - envlist: venv