diff options
author | Chris Evich <cevich@redhat.com> | 2021-08-04 14:59:41 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2021-08-04 15:01:57 -0400 |
commit | f4dd22b311c02a71473d4adb7148b4c512d0e43b (patch) | |
tree | 8a542f1c2387c12187ee646c499860685cba06f7 /.cirrus.yml | |
parent | c887018571ac6dc7c3eeb1d039685d4606850311 (diff) | |
download | podman-f4dd22b311c02a71473d4adb7148b4c512d0e43b.tar.gz podman-f4dd22b311c02a71473d4adb7148b4c512d0e43b.tar.bz2 podman-f4dd22b311c02a71473d4adb7148b4c512d0e43b.zip |
Cirrus: Fix not uploading logformatter html
Previously we were generating the annotated results but never uploading
them. Fix this so visiting the advertised URL actually works.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 7218e3e9a..b6ef69a96 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -241,7 +241,12 @@ bindings_task: clone_script: *noop # Comes from cache setup_script: *setup main_script: *main - always: *runner_stats + always: &html_artifacts + <<: *runner_stats + # Required for `contrib/cirrus/logformatter` to work properly + html_artifacts: + path: ./*.html + type: text/html # Build the "libpod" API documentation `swagger.yaml` and @@ -429,11 +434,7 @@ apiv2_test_task: setup_script: *setup main_script: *main always: &logs_artifacts - <<: *runner_stats - # Required for `contrib/cirrus/logformatter` to work properly - html_artifacts: - path: ./*.html - type: text/html + <<: *html_artifacts package_versions_script: '$SCRIPT_BASE/logcollector.sh packages' df_script: '$SCRIPT_BASE/logcollector.sh df' audit_log_script: '$SCRIPT_BASE/logcollector.sh audit' |