squashfs-tools/tests/test_working.yml
Bruno Wolff III 0a03e389c6 Try not specifying artifacts location
It looks like the artifacts might not have been going to the correct
place based on the reported errors. So try using the default value instead
of the one from the examples.
2019-05-21 13:48:15 -05:00

26 lines
791 B
YAML

---
- hosts: localhost
tags:
- classic
remote_user: root
tasks:
- name: Install the test files
copy: src={{ item.file }} dest=/usr/local/bin/{{ item.dest }} mode=0755
with_items:
- {file: Squashfs-compression-test.sh, dest: Squashfs-compression-test.sh }
- name: Test block
block:
- name: Execute the tests
shell: |
/usr/local/bin/Squashfs-compression-test.sh &> /tmp/test.log; grep -iq failed /tmp/test.log && result=fail || result=pass
echo -e "results:\n- {result: $result, test: working}" > /tmp/results.yml
always:
- name: Pull out the logs
fetch:
dest: "{{ artifacts }}/"
src: "{{ item }}"
flat: yes
with_items:
- /tmp/test.log
- /tmp/results.yml