diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-10-10 18:59:40 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-10-10 18:59:40 -0700 |
| commit | d5d449421398fe4005f3b3ded551a6274e3d856e (patch) | |
| tree | 30265c6b16a207fddb6c7f2f114eaa645ab1a258 /src/ci/docker/scripts | |
| parent | d6d711dd8f7ad5885294b8e1f0009a23dc1f8b1f (diff) | |
| download | rust-d5d449421398fe4005f3b3ded551a6274e3d856e.tar.gz rust-d5d449421398fe4005f3b3ded551a6274e3d856e.zip | |
ci: Fix installing the Android SDK
Apparently the https urls are broken due to some certificate validation whatnots, and so far the least intrusive solution I've found is to just disable that.
Diffstat (limited to 'src/ci/docker/scripts')
| -rw-r--r-- | src/ci/docker/scripts/android-sdk.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/docker/scripts/android-sdk.sh b/src/ci/docker/scripts/android-sdk.sh index d343aae9dfb..3aa2b9d58d5 100644 --- a/src/ci/docker/scripts/android-sdk.sh +++ b/src/ci/docker/scripts/android-sdk.sh @@ -31,7 +31,7 @@ download_sysimage() { # Keep printing yes to accept the licenses while true; do echo yes; sleep 10; done | \ /android/sdk/tools/android update sdk -a --no-ui \ - --filter "$filter" + --filter "$filter" --no-https } create_avd() { |
