forked from CoreOffice/XMLCoder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
65 lines (64 loc) · 1.59 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
trigger:
- master
jobs:
- job: lint
pool:
vmImage: 'macos-latest'
steps:
- bash: ./lint.sh
- job: pod
pool:
vmImage: 'macos-latest'
steps:
- bash: ./pod.sh
- job: test_xcodebuild_10_0
pool:
vmImage: 'macos-latest'
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'
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'
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_11_0
pool:
vmImage: 'macos-latest'
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'
CODECOV_JOB: 'true'
CODECOV_TOKEN: $(codecovToken)
- job: test_swiftpm
pool:
vmImage: 'macos-latest'
steps:
- script: ./test_swiftpm.sh
- job: test_linux_5_0
pool:
vmImage: 'Ubuntu 16.04'
container: norionomura/swift:503
steps:
- script: ./test_linux.sh
- job: test_linux_5_1
pool:
vmImage: 'Ubuntu 16.04'
container: norionomura/swift:51
steps:
- script: ./test_linux.sh