Merge "Attempt to copy the coverage report even if job fails"

This commit is contained in:
Zuul 2018-07-21 05:39:57 +00:00 committed by Gerrit Code Review
commit b1271915cc

View File

@ -1,20 +1,19 @@
- when: zuul_success | default(true) | bool - name: Check to see if coverage report exists
block: stat:
path: "{{ coverage_output_src }}"
register: coverage_report_stat
- name: Check to see if coverage report exists - when:
stat: - zuul_success | default(true) | bool
path: "{{ coverage_output_src }}" - not coverage_report_stat.stat.exists
register: coverage_report_stat name: Fail if coverage job succeeded and report is not present
fail:
msg: "Coverage report was not found even though tests succeeded"
- name: Collect coverage details output - when: coverage_report_stat.stat.exists
synchronize: name: Collect coverage details output
dest: "{{ zuul_executor_dest }}" synchronize:
mode: pull dest: "{{ zuul_executor_dest }}"
src: "{{ coverage_output_src }}" mode: pull
verify_host: true src: "{{ coverage_output_src }}"
when: coverage_report_stat.stat.exists verify_host: true
- name: Fail if coverage report not found
fail:
msg: "Coverage report was not found even though tests succeeded"
when: not coverage_report_stat.stat.exists