Skip to content

Commit 78965f4

Browse files
committed
Use xcode 9.3 on all osx builders
1 parent beea4f5 commit 78965f4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.azure-pipelines/steps/run.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,14 @@ steps:
3535
displayName: Install build dependencies (OSX)
3636
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'), eq(variables['RUST_CHECK_TARGET'],'dist'))
3737

38+
# Switch to XCode 9.3 on OSX since it seems to be the last version that supports
39+
# i686-apple-darwin. We'll eventually want to upgrade this and it will probably
40+
# force us to drop i686-apple-darwin, but let's keep the wheels turning for now.
3841
- bash: |
3942
set -e
4043
sudo xcode-select --switch /Applications/Xcode_9.3.app
4144
displayName: Switch to Xcode 9.3 (OSX)
42-
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'), eq(variables['RUST_CHECK_TARGET'],'dist'))
45+
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))
4346

4447
- template: install-windows-build-deps.yml
4548

0 commit comments

Comments
 (0)