Permalink
Browse files
Azure Pipelines: Add macOS-10.14
- Loading branch information
Showing
with
8 additions
and
4 deletions.
-
+8
−4
azure-pipelines.yml
|
|
@@ -4,16 +4,20 @@ jobs: |
|
|
|
|
|
- job: Build |
|
|
timeoutInMinutes: 0 |
|
|
|
|
|
strategy: |
|
|
matrix: |
|
|
mac-10.14: |
|
|
imageName: 'macOS-10.14' |
|
|
mac-10.13: |
|
|
imageName: 'macOS-10.13' |
|
|
pool: |
|
|
vmImage: 'macOS-10.13' |
|
|
vmImage: $(imageName) |
|
|
|
|
|
steps: |
|
|
- checkout: self |
|
|
fetchDepth: 64 |
|
|
|
|
|
- script: /bin/bash -c "sudo xcode-select -s /Applications/Xcode_10.1.app/Contents/Developer" |
|
|
displayName: 'Use Xcode 10.1' |
|
|
|
|
|
- script: ./_ci/bootstrap.sh |
|
|
displayName: 'Run bootstrap script' |
|
|
|
|
|
|