Skip to content

Commit ea31f5a

Browse files
committed
Increase retries of Android downloads
1 parent ccad8b4 commit ea31f5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/android-install-ndk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
set -ex
1313

1414
NDK=android-ndk-r19c
15-
curl --retry 10 -O https://dl.google.com/android/repository/${NDK}-linux-x86_64.zip
15+
curl --retry 20 -O https://dl.google.com/android/repository/${NDK}-linux-x86_64.zip
1616
unzip -q ${NDK}-linux-x86_64.zip
1717

1818
case "$1" in

ci/android-install-sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set -ex
2020

2121
SDK=4333796
2222
mkdir sdk
23-
curl --retry 10 https://dl.google.com/android/repository/sdk-tools-linux-${SDK}.zip -O
23+
curl --retry 20 https://dl.google.com/android/repository/sdk-tools-linux-${SDK}.zip -O
2424
unzip -q -d sdk sdk-tools-linux-${SDK}.zip
2525

2626
case "$1" in

0 commit comments

Comments
 (0)