Skip to content
Snippets Groups Projects
Commit 952191db authored by Bogdan Dobrelya's avatar Bogdan Dobrelya
Browse files

Fix collect/upload logs for CoreOS

parent af3823bc
No related branches found
No related tags found
No related merge requests found
...@@ -176,7 +176,6 @@ after_failure: ...@@ -176,7 +176,6 @@ after_failure:
-e ostype=${CLOUD_IMAGE} -e ostype=${CLOUD_IMAGE}
-e commit=${TRAVIS_COMMIT} -e commit=${TRAVIS_COMMIT}
-e dir=${HOME} -e dir=${HOME}
-e ansible_python_interpreter=${PYPATH}
after_script: after_script:
- > - >
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
with_items: "{{logs}}" with_items: "{{logs}}"
- name: Pack results and logs - name: Pack results and logs
local_action: shell GZIP=-9 tar --remove-files -cvzf {{dir|default(".")}}/logs.tar.gz -C /tmp collect-info local_action: raw GZIP=-9 tar --remove-files -cvzf {{dir|default(".")}}/logs.tar.gz -C /tmp collect-info
run_once: true run_once: true
- name: Clean up collected command outputs - name: Clean up collected command outputs
......
...@@ -8,12 +8,12 @@ ...@@ -8,12 +8,12 @@
tasks: tasks:
- name: Generate uniq bucket name prefix - name: Generate uniq bucket name prefix
shell: date +%Y%m%d raw: date +%Y%m%d
register: out register: out
- name: replace_test_id - name: replace_test_id
set_fact: set_fact:
test_name: "kargo-ci-{{ out.stdout }}" test_name: "kargo-ci-{{ out.stdout_lines[0] }}"
- set_fact: - set_fact:
file_name: "{{ostype}}-{{kube_network_plugin}}-{{commit}}-logs.tar.gz" file_name: "{{ostype}}-{{kube_network_plugin}}-{{commit}}-logs.tar.gz"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment