diff options
Diffstat (limited to 'ansible_collections/hetzner/hcloud/.azure-pipelines/scripts/publish-codecov.sh')
-rwxr-xr-x | ansible_collections/hetzner/hcloud/.azure-pipelines/scripts/publish-codecov.sh | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ansible_collections/hetzner/hcloud/.azure-pipelines/scripts/publish-codecov.sh b/ansible_collections/hetzner/hcloud/.azure-pipelines/scripts/publish-codecov.sh index 6d184f0b8..5dd7cfde7 100755 --- a/ansible_collections/hetzner/hcloud/.azure-pipelines/scripts/publish-codecov.sh +++ b/ansible_collections/hetzner/hcloud/.azure-pipelines/scripts/publish-codecov.sh @@ -10,18 +10,18 @@ output_path="$1" curl --silent --show-error https://ansible-ci-files.s3.us-east-1.amazonaws.com/codecov/codecov.sh > codecov.sh for file in "${output_path}"/reports/coverage*.xml; do - name="${file}" - name="${name##*/}" # remove path - name="${name##coverage=}" # remove 'coverage=' prefix if present - name="${name%.xml}" # remove '.xml' suffix + name="${file}" + name="${name##*/}" # remove path + name="${name##coverage=}" # remove 'coverage=' prefix if present + name="${name%.xml}" # remove '.xml' suffix - bash codecov.sh \ - -f "${file}" \ - -n "${name}" \ - -X coveragepy \ - -X gcov \ - -X fix \ - -X search \ - -X xcode \ - || echo "Failed to upload code coverage report to codecov.io: ${file}" + bash codecov.sh \ + -f "${file}" \ + -n "${name}" \ + -X coveragepy \ + -X gcov \ + -X fix \ + -X search \ + -X xcode || + echo "Failed to upload code coverage report to codecov.io: ${file}" done |