diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2021-08-04 20:32:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-04 20:32:38 +0000 |
commit | 117583c293713f2baa920c4035e820ad59fe6622 (patch) | |
tree | 3f06543155e47582711332066fa773142286f2f5 | |
parent | 571547b19f56fd5d842169687bc9033d0b3ceb0f (diff) | |
parent | f4dd22b311c02a71473d4adb7148b4c512d0e43b (diff) | |
download | podman-117583c293713f2baa920c4035e820ad59fe6622.tar.gz podman-117583c293713f2baa920c4035e820ad59fe6622.tar.bz2 podman-117583c293713f2baa920c4035e820ad59fe6622.zip |
Merge pull request #11133 from cevich/fix_art_upload
Cirrus: Fix not uploading logformatter html
-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' |