From 15d24d25f3655a94f2d1848f72a714e4f330116b Mon Sep 17 00:00:00 2001 From: David Moreau-Simard Date: Wed, 23 Aug 2017 16:47:16 -0400 Subject: [PATCH] Don't create a gzipped folder: recursively gzip ARA contents https://review.openstack.org/#/c/495551/ introduced gzipping through the "archive" module but the result isn't the expected one, let's use the gzip command instead. Change-Id: I7d5fe19381ade6639ec4d96b50e58f84439e0230 --- roles/emit-ara-html/tasks/main.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/emit-ara-html/tasks/main.yaml b/roles/emit-ara-html/tasks/main.yaml index 58ec43cd6..06194ed30 100644 --- a/roles/emit-ara-html/tasks/main.yaml +++ b/roles/emit-ara-html/tasks/main.yaml @@ -14,6 +14,5 @@ when: ara_command_type|succeeded and not ara_command_type|skipped - name: Compress ARA html output - archive: - path: "{{ zuul.executor.log_root }}/ara" + command: gzip --recursive --best {{ zuul.executor.log_root }}/ara when: ara_compress_html | bool