-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
azure-pipelines.yml
87 lines (84 loc) · 2.32 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
trigger:
- main
jobs:
- job: lint
pool:
vmImage: "macOS-10.15"
steps:
- bash: ./lint.sh
- job: pod
pool:
vmImage: "macos-latest"
steps:
- bash: ./pod.sh
- job: test_xcodebuild_11_3
pool:
vmImage: "macOS-10.15"
steps:
- bash: ./test_xcodebuild.sh Xcode_11.3
env:
IOS_DEVICE: "platform=iOS Simulator,OS=13.3,name=iPhone 8"
TVOS_DEVICE: "platform=tvOS Simulator,OS=13.3,name=Apple TV 4K"
- job: test_xcodebuild_11_4
pool:
vmImage: "macOS-10.15"
steps:
- bash: ./test_xcodebuild.sh Xcode_11.4
env:
IOS_DEVICE: "platform=iOS Simulator,OS=13.4.1,name=iPhone 8"
TVOS_DEVICE: "platform=tvOS Simulator,OS=13.4,name=Apple TV 4K"
- job: test_xcodebuild_11_5
pool:
vmImage: "macOS-10.15"
steps:
- bash: ./test_xcodebuild.sh Xcode_11.5
env:
IOS_DEVICE: "platform=iOS Simulator,OS=13.5,name=iPhone 8"
TVOS_DEVICE: "platform=tvOS Simulator,OS=13.4,name=Apple TV 4K"
- job: test_xcodebuild_11_6
pool:
vmImage: "macOS-10.15"
steps:
- bash: ./test_xcodebuild.sh Xcode_11.6
env:
IOS_DEVICE: "platform=iOS Simulator,OS=13.6,name=iPhone 8"
TVOS_DEVICE: "platform=tvOS Simulator,OS=13.4,name=Apple TV 4K"
- job: test_xcodebuild_11_7
pool:
vmImage: "macOS-10.15"
steps:
- bash: ./test_xcodebuild.sh Xcode_11.7
env:
IOS_DEVICE: "platform=iOS Simulator,OS=13.7,name=iPhone 8"
TVOS_DEVICE: "platform=tvOS Simulator,OS=13.4,name=Apple TV 4K"
CODECOV_JOB: "true"
CODECOV_TOKEN: $(codecovToken)
- job: test_swiftpm
pool:
vmImage: "macOS-10.15"
steps:
- script: ./test_swiftpm.sh
- job: test_linux_5_1
pool:
vmImage: "Ubuntu 20.04"
container: norionomura/swift:515
steps:
- script: ./test_swiftpm.sh
- job: test_linux_5_2
pool:
vmImage: "Ubuntu 20.04"
container: norionomura/swift:525
steps:
- script: ./test_swiftpm.sh
- job: test_linux_5_3
pool:
vmImage: "Ubuntu 20.04"
container: norionomura/swift:53
steps:
- script: ./test_swiftpm.sh
- job: test_linux_5_4
pool:
vmImage: "Ubuntu 20.04"
container: norionomura/swift:54
steps:
- script: ./test_swiftpm.sh