Merge "Make stackviz tasks not to fail jobs"

This commit is contained in:
Zuul 2021-04-10 13:41:29 +00:00 committed by Gerrit Code Review
commit ef1e9ada9b

View File

@ -1,3 +1,6 @@
- name: Process Stackviz
block:
- name: Devstack checks if stackviz archive exists - name: Devstack checks if stackviz archive exists
stat: stat:
path: "/opt/cache/files/stackviz-latest.tar.gz" path: "/opt/cache/files/stackviz-latest.tar.gz"
@ -55,7 +58,6 @@
- stackviz_archive.stat.exists - stackviz_archive.stat.exists
- subunit_input.stat.exists - subunit_input.stat.exists
- dstat_input.stat.exists - dstat_input.stat.exists
failed_when: False
- name: Run stackviz without dstat - name: Run stackviz without dstat
shell: | shell: |
@ -67,4 +69,5 @@
- stackviz_archive.stat.exists - stackviz_archive.stat.exists
- subunit_input.stat.exists - subunit_input.stat.exists
- not dstat_input.stat.exists - not dstat_input.stat.exists
failed_when: False
ignore_errors: yes