Skip to content

Commit

Permalink
DNM: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Spredzy committed Oct 8, 2018
1 parent 47139a0 commit 1f9162b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions playbooks/clean-static-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@
args:
chdir: "{{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
removes: "awx.egg-info"

- name: Remove old project directory
file:
path: "{{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
state: absent

12 changes: 12 additions & 0 deletions zuul.d/jobs.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- job:
name: prepare-awx-environment
run: playbooks/clean-static-node.yaml

- job:
name: tox-awx
parent: tox
Expand All @@ -8,23 +12,31 @@
- job:
name: tox-awx-api-lint
parent: tox-awx
dependencies:
- prepare-awx-environment
vars:
tox_envlist: api-lint

- job:
name: tox-awx-ui-lint
parent: tox-awx
dependencies:
- prepare-awx-environment
vars:
tox_envlist: ui-lint

- job:
name: tox-awx-api
parent: tox-awx
dependencies:
- prepare-awx-environment
vars:
tox_envlist: api

- job:
name: tox-awx-ui
parent: tox-awx
dependencies:
- prepare-awx-environment
vars:
tox_envlist: ui

0 comments on commit 1f9162b

Please sign in to comment.