zuul-jobs/roles/phoronix-combine-results/tasks/fetch-result.yaml
Tristan Cacqueray 59c5820fa6 Add phoronix-test-suite job
This change adds new jobs to run and combine phoronix test suite results.

Co-Authored-By: Nicolas Hicher <nhicher@redhat.com>
Change-Id: If94cdbd91c8d80393a71cd5c36690563de9edcd6
2020-04-03 13:03:07 +00:00

11 lines
316 B
YAML

---
- name: Create result dir
file:
path: "{{ ansible_env.HOME }}/test-results/{{ item.url.rstrip('/')|basename }}"
state: directory
- name: Fetch artifact
get_url:
url: "{{ item.url }}/composite.xml"
dest: "{{ ansible_env.HOME }}/test-results/{{ item.url.rstrip('/')|basename }}/composite.xml"