diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-02-19 18:12:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-19 18:12:07 +0100 |
| commit | 2f914bf3278fa855ec0efa79698b8a481ff81b68 (patch) | |
| tree | 5dbbab96a44a72a1c180d5a74d4b2579f4d19a32 /src/ci/scripts/switch-xcode.sh | |
| parent | 7710ae0e2653e0fa14ff9b7797ed29340e0284a8 (diff) | |
| parent | 79c166ef73df00eac96aaeadcb326c972c22068c (diff) | |
| download | rust-2f914bf3278fa855ec0efa79698b8a481ff81b68.tar.gz rust-2f914bf3278fa855ec0efa79698b8a481ff81b68.zip | |
Rollup merge of #68863 - pietroalbini:azure-macos-10.15, r=Mark-Simulacrum
ci: switch macOS builders to 10.15 Azure Pipelines is deprecating the macOS 10.13 image we're currently running, [and they plan to remove them](https://devblogs.microsoft.com/devops/removing-older-images-in-azure-pipelines-hosted-pools/) on March 23, 2020. This PR switches our macOS builders to macOS 10.15. r? @Mark-Simulacrum
Diffstat (limited to 'src/ci/scripts/switch-xcode.sh')
| -rwxr-xr-x | src/ci/scripts/switch-xcode.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/ci/scripts/switch-xcode.sh b/src/ci/scripts/switch-xcode.sh deleted file mode 100755 index 2cbb2ddbc70..00000000000 --- a/src/ci/scripts/switch-xcode.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -# Switch to XCode 9.3 on OSX since it seems to be the last version that supports -# i686-apple-darwin. We'll eventually want to upgrade this and it will probably -# force us to drop i686-apple-darwin, but let's keep the wheels turning for now. - -set -euo pipefail -IFS=$'\n\t' - -source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" - -if isMacOS; then - sudo xcode-select --switch /Applications/Xcode_9.3.app -fi |
