Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Xcode 11.2 and 10.3 to azure-pipelines.yml #151

Merged
merged 2 commits into from
Nov 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 23 additions & 7 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,54 +9,70 @@ jobs:
- bash: ./lint.sh
- job: pod
pool:
vmImage: 'macos-latest'
vmImage: 'macOS-10.14'
steps:
- bash: ./pod.sh
- job: test_xcodebuild_10_0
pool:
vmImage: 'macos-latest'
vmImage: 'macOS-10.14'
steps:
- bash: ./test_xcodebuild.sh Xcode_10
env:
IOS_DEVICE: 'platform=iOS Simulator,OS=12.0,name=iPhone SE'
TVOS_DEVICE: 'platform=tvOS Simulator,OS=12.0,name=Apple TV 4K'
- job: test_xcodebuild_10_1
pool:
vmImage: 'macos-latest'
vmImage: 'macOS-10.14'
steps:
- bash: ./test_xcodebuild.sh Xcode_10.1
env:
IOS_DEVICE: 'platform=iOS Simulator,OS=12.1,name=iPhone SE'
TVOS_DEVICE: 'platform=tvOS Simulator,OS=12.1,name=Apple TV 4K'
- job: test_xcodebuild_10_2
pool:
vmImage: 'macos-latest'
vmImage: 'macOS-10.14'
steps:
- bash: ./test_xcodebuild.sh Xcode_10.2.1
env:
IOS_DEVICE: 'platform=iOS Simulator,OS=12.2,name=iPhone SE'
TVOS_DEVICE: 'platform=tvOS Simulator,OS=12.2,name=Apple TV 4K'
- job: test_xcodebuild_10_3
pool:
vmImage: 'macOS-10.14'
steps:
- bash: ./test_xcodebuild.sh Xcode_10.3
env:
IOS_DEVICE: 'platform=iOS Simulator,OS=12.4,name=iPhone SE'
TVOS_DEVICE: 'platform=tvOS Simulator,OS=12.4,name=Apple TV 4K'
- job: test_xcodebuild_11_0
pool:
vmImage: 'macos-latest'
vmImage: 'macOS-10.14'
steps:
- bash: ./test_xcodebuild.sh Xcode_11
env:
IOS_DEVICE: 'platform=iOS Simulator,OS=13.0,name=iPhone 8'
TVOS_DEVICE: 'platform=tvOS Simulator,OS=13.0,name=Apple TV 4K'
- job: test_xcodebuild_11_1
pool:
vmImage: 'macos-latest'
vmImage: 'macOS-10.14'
steps:
- bash: ./test_xcodebuild.sh Xcode_11.1
env:
IOS_DEVICE: 'platform=iOS Simulator,OS=13.1,name=iPhone 8'
TVOS_DEVICE: 'platform=tvOS Simulator,OS=13.0,name=Apple TV 4K'
- job: test_xcodebuild_11_2
pool:
vmImage: 'macOS-10.14'
steps:
- bash: ./test_xcodebuild.sh Xcode_11.2
env:
IOS_DEVICE: 'platform=iOS Simulator,OS=13.2,name=iPhone 8'
TVOS_DEVICE: 'platform=tvOS Simulator,OS=13.2,name=Apple TV 4K'
CODECOV_JOB: 'true'
CODECOV_TOKEN: $(codecovToken)
- job: test_swiftpm
pool:
vmImage: 'macos-latest'
vmImage: 'macOS-10.14'
steps:
- script: ./test_swiftpm.sh
- job: test_linux_5_0
Expand Down