Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit af82a42

Browse filesBrowse files
committed
Try again with codecov 0.4.0 instead [azure parallel]
1 parent 25ad492 commit af82a42
Copy full SHA for af82a42

File tree

1 file changed

+5
-5
lines changed
Filter options

1 file changed

+5
-5
lines changed

‎build_tools/azure/upload_codecov.sh

Copy file name to clipboardExpand all lines: build_tools/azure/upload_codecov.sh
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
# When we update the codecov uploader version, we need to update the checksums.
66
# The checksum for each codecov binary is available at
77
# https://uploader.codecov.io e.g. for linux
8-
# https://uploader.codecov.io/v0.4.1/linux/codecov.SHA256SUM.
8+
# https://uploader.codecov.io/v0.4.0/linux/codecov.SHA256SUM.
99

1010
# Instead of hardcoding a specific version and signature in this script, it
1111
# would be possible to use the "latest" symlink URL but then we need to
@@ -15,7 +15,7 @@ set -e
1515
# However this approach would yield a larger number of downloads from
1616
# codecov.io and keybase.io, therefore increasing the risk of running into
1717
# network failures.
18-
CODECOV_UPLOADER_VERSION=0.4.1
18+
CODECOV_UPLOADER_VERSION=0.4.0
1919
CODECOV_BASE_URL="https://uploader.codecov.io/v$CODECOV_UPLOADER_VERSION"
2020

2121

@@ -35,19 +35,19 @@ if [[ ! -f "$BUILD_REPOSITORY_LOCALPATH/.coverage" ]]; then
3535
fi
3636
if [[ $OSTYPE == *"linux"* ]]; then
3737
curl -Os "$CODECOV_BASE_URL/linux/codecov"
38-
SHA256SUM="32cb14b5f3aaacd67f4c1ff55d82f037d3cd10c8e7b69c051f27391d2e66e15c codecov"
38+
SHA256SUM="671cf0d89d1c149f57e1a9a31f3fb567ab4209e4d5829f13ff7b8c104db7131f codecov"
3939
echo "$SHA256SUM" | shasum -a256 -c
4040
chmod +x codecov
4141
./codecov -t ${CODECOV_TOKEN} -r $BUILD_REPOSITORY_LOCALPATH -f $BUILD_REPOSITORY_LOCALPATH/.coverage -Z
4242
elif [[ $OSTYPE == *"darwin"* ]]; then
4343
curl -Os "$CODECOV_BASE_URL/macos/codecov"
44-
SHA256SUM="4ab0f06f06e9c4d25464f155b0aff36bfc1e8dbcdb19bfffd586beed1269f3af codecov"
44+
SHA256SUM="7549819f0fe115e113ec3538e259d748e87d84f68afa5deadc798967ec716b8d codecov"
4545
echo "$SHA256SUM" | shasum -a256 -c
4646
chmod +x codecov
4747
./codecov -t ${CODECOV_TOKEN} -r $BUILD_REPOSITORY_LOCALPATH -f $BUILD_REPOSITORY_LOCALPATH/.coverage -Z
4848
else
4949
curl -Os "$CODECOV_BASE_URL/windows/codecov.exe"
50-
SHA256SUM="e0cda212aeaebe695509ce8fa2d608760ff70bc932003f544f1ad368ac5450a8 codecov.exe"
50+
SHA256SUM="15fb34be4eb9949ad4e964a0e21c4efc79657de05b2c799e041d7293dccf60eb codecov.exe"
5151
echo "$SHA256SUM" | sha256sum -c
5252
./codecov.exe -t ${CODECOV_TOKEN} -r $BUILD_REPOSITORY_LOCALPATH -f $BUILD_REPOSITORY_LOCALPATH/.coverage -Z
5353
fi

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.