diff options
| author | Menny Even Danan <menny@evendanan.net> | 2020-02-01 03:32:33 +0000 |
|---|---|---|
| committer | Menny Even Danan <menny@evendanan.net> | 2020-02-01 03:32:33 +0000 |
| commit | 7ec2db46f8e3c04daacc962d49dcbbadedd07efe (patch) | |
| tree | 5bfe95250c687e5a3c98892f91b36adb4fb5a8cd /.github/actions | |
| parent | 0ec526e3d6fc2696395950c5b3e29fef90fffd85 (diff) | |
| download | AnySoftKeyboard-7ec2db46f8e3c04daacc962d49dcbbadedd07efe.tar.gz AnySoftKeyboard-7ec2db46f8e3c04daacc962d49dcbbadedd07efe.tar.bz2 | |
jacoco fixes and wget retries
Diffstat (limited to '.github/actions')
| -rwxr-xr-x | .github/actions/codecov/upload_coverage.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/actions/codecov/upload_coverage.sh b/.github/actions/codecov/upload_coverage.sh index 74df0df5d..1cb51132d 100755 --- a/.github/actions/codecov/upload_coverage.sh +++ b/.github/actions/codecov/upload_coverage.sh @@ -1,7 +1,8 @@ #!/usr/bin/env bash set -e -./scripts/retry.sh 5 curl --fail https://codecov.io/bash -o codecov.sh +wget --tries=5 --waitretry=5 --progress=dot:mega --output-document=codecov.sh https://codecov.io/bash chmod +x codecov.sh + COV_FILES=$(find . -name "test*UnitTestCoverage.xml" | xargs -n 1 echo -n " -f ") ./scripts/retry.sh 5 ./codecov.sh -X gcov -X coveragepy -X xcode ${COV_FILES} |
