The standard interface has test.log as output

I can't choose what I want, so avoiding overwriting by using a different
name isn't going to work.
This commit is contained in:
Bruno Wolff III 2019-05-22 01:43:14 -05:00
parent 9f5a5af2ab
commit 1d41ba0fdc

View File

@ -14,7 +14,7 @@
block:
- name: Execute the tests
shell: |
/usr/local/bin/Squashfs-compression-test.sh &> /tmp/working.log; grep -iq failed /tmp/working.log && result=fail || result=pass
/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