Handle new default of uncompressed job-output

The quick start test assumes a compressed job output file but we don't
compress it by default anymore. Handle this new behavior change.

Change-Id: I9db270ae5ceaa98afcd078af0d99460d406295f3
This commit is contained in:
Clark Boylan 2019-10-01 16:01:59 -07:00
parent 0b3f5ef48b
commit 27579ce456
1 changed files with 2 additions and 4 deletions

View File

@ -170,9 +170,7 @@
msg: "{{ log_url }}"
- name: Fetch log URL
get_url:
url: "{{ log_url }}job-output.txt.gz"
dest: "{{ workspace }}/job-output.txt.gz"
- name: Uncompress log
command: "gunzip -f {{ workspace }}/job-output.txt.gz"
url: "{{ log_url }}job-output.txt"
dest: "{{ workspace }}/job-output.txt"
- name: Verify log contents
command: "grep 'Hello world!' {{ workspace }}/job-output.txt"