zuul-jobs/roles/fetch-subunit-output/tasks/process.yaml
Albin Vass 9a132054a6 fetch-subunit-output: update include to import_tasks
Change-Id: I5a5fb6a827ae0e6c125a21bd4058e4dca602ac45
2020-05-26 10:05:52 +02:00

55 lines
1.3 KiB
YAML

- name: Find subunit2html
import_tasks: find-subunit-html.yaml
- name: Generate testr_results.html file
command: "{{ subunit_html_command }} ./testrepository.subunit testr_results.html"
args:
chdir: "{{ zuul_work_dir }}"
when: subunit_html_command is defined
- name: Find subunit files
find:
paths:
- "{{ zuul_work_dir }}"
patterns:
- testr_results.html
- testrepository.subunit
register: subunit_files
- name: Collect test-results
synchronize:
dest: "{{ zuul.executor.log_root }}"
mode: pull
src: "{{ zj_subunit_file.path }}"
verify_host: true
owner: no
group: no
with_items: "{{ subunit_files.files }}"
loop_control:
loop_var: zj_subunit_file
when: not zuul_use_fetch_output
- name: Copy test-results
copy:
dest: "{{ zuul_output_dir }}/logs/"
src: "{{ zj_subunit_file.path }}"
remote_src: true
with_items: "{{ subunit_files.files }}"
loop_control:
loop_var: zj_subunit_file
when: zuul_use_fetch_output
- name: Return artifact to Zuul
zuul_return:
data:
zuul:
artifacts:
- name: "Unit Test Report"
url: "testr_results.html"
metadata:
type: unit_test_report
when: "'testr_results.html' in zj_subunit_file.path"
with_items: "{{ subunit_files.files }}"
loop_control:
loop_var: zj_subunit_file