about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-05-21 15:14:20 -0700
committerAlex Crichton <alex@alexcrichton.com>2019-05-21 15:14:20 -0700
commit78965f49c8f730327240f59ed0eae4e007f0a0ea (patch)
treeaf43094a64b02d8407c4dca140ebb0bff022fd36
parentbeea4f5e4a95126ab5837c76eea06f9fcd15fb45 (diff)
downloadrust-78965f49c8f730327240f59ed0eae4e007f0a0ea.tar.gz
rust-78965f49c8f730327240f59ed0eae4e007f0a0ea.zip
Use xcode 9.3 on all osx builders
-rw-r--r--.azure-pipelines/steps/run.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.azure-pipelines/steps/run.yml b/.azure-pipelines/steps/run.yml
index 22ffa1010e4..3d07df4d936 100644
--- a/.azure-pipelines/steps/run.yml
+++ b/.azure-pipelines/steps/run.yml
@@ -35,11 +35,14 @@ steps:
   displayName: Install build dependencies (OSX)
   condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'), eq(variables['RUST_CHECK_TARGET'],'dist'))
 
+# 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.
 - bash: |
     set -e
     sudo xcode-select --switch /Applications/Xcode_9.3.app
   displayName: Switch to Xcode 9.3 (OSX)
-  condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'), eq(variables['RUST_CHECK_TARGET'],'dist'))
+  condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))
 
 - template: install-windows-build-deps.yml