forked from PrismLibrary/Prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuno-uitest.yml
147 lines (114 loc) · 3.54 KB
/
uno-uitest.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
jobs:
- job: UnoUITest_Wasm
displayName: Uno UITest WebAssembly
container: unoplatform/wasm-build:3.0
condition: and(succeeded(), eq(variables['EnableUITest'], 'true'))
pool:
vmImage: $(LinuxImage)
workspace:
clean: all
variables:
disable_package_restore_step: true
strategy:
matrix:
UWP:
TARGET_XAML_FLAVOR: UWP
WinUI:
TARGET_XAML_FLAVOR: WinUI
steps:
- template: ../steps/prepare-build.yml
- bash: |
build/scripts/wasm-uitest-run.sh
env:
BUILD_SOURCESDIRECTORY: "$(build.sourcesdirectory)"
BUILD_ARTIFACTSTAGINGDIRECTORY: "$(build.artifactstagingdirectory)"
TARGET_XAML_FLAVOR: "$(TARGET_XAML_FLAVOR)"
displayName: 'Run UI Tests'
- task: PublishTestResults@2
condition: always()
inputs:
testRunTitle: 'WebAssembly Test Run'
testResultsFormat: 'NUnit'
testResultsFiles: '$(build.sourcesdirectory)/build/TestResult.xml'
failTaskOnFailedTests: true
- task: PublishBuildArtifacts@1
condition: always()
inputs:
PathtoPublish: $(build.artifactstagingdirectory)
ArtifactName: UnoUITests
ArtifactType: Container
- job: UnoUITest_Android
displayName: Uno UITest Android
condition: and(succeeded(), eq(variables['EnableUITest'], 'true'))
pool:
vmImage: $(MacImage)
workspace:
clean: all
variables:
disable_package_restore_step: true
strategy:
matrix:
UWP:
TARGET_XAML_FLAVOR: UWP
WinUI:
TARGET_XAML_FLAVOR: WinUI
steps:
- template: ../steps/prepare-build.yml
- template: ../steps/set-runtime.yml
- bash: |
build/scripts/android-uitest-run.sh
env:
BUILD_SOURCESDIRECTORY: "$(build.sourcesdirectory)"
BUILD_ARTIFACTSTAGINGDIRECTORY: "$(build.artifactstagingdirectory)"
TARGET_XAML_FLAVOR: "$(TARGET_XAML_FLAVOR)"
displayName: 'Run UI Tests'
- task: PublishTestResults@2
condition: always()
inputs:
testRunTitle: 'Android Test Run'
testResultsFormat: 'NUnit'
testResultsFiles: '$(build.sourcesdirectory)/build/TestResult.xml'
failTaskOnFailedTests: false # Android tests may randomly fail because of the System UI not responding. https://github.com/PrismLibrary/Prism/issues/2099
- task: PublishBuildArtifacts@1
condition: always()
inputs:
PathtoPublish: $(build.artifactstagingdirectory)
ArtifactName: UnoUITests
ArtifactType: Container
- job: UnoUITest_iOS
displayName: Uno UITest iOS
condition: and(succeeded(), eq(variables['EnableUITest'], 'true'), eq(variables['XcodeOverride'], ''))
pool:
vmImage: $(MacImage)
workspace:
clean: all
variables:
disable_package_restore_step: true
strategy:
matrix:
UWP:
TARGET_XAML_FLAVOR: UWP
WinUI:
TARGET_XAML_FLAVOR: WinUI
steps:
- template: ../steps/prepare-build.yml
- template: ../steps/set-runtime.yml
- bash: |
build/scripts/ios-uitest-run.sh
env:
BUILD_SOURCESDIRECTORY: "$(build.sourcesdirectory)"
BUILD_ARTIFACTSTAGINGDIRECTORY: "$(build.artifactstagingdirectory)"
TARGET_XAML_FLAVOR: "$(TARGET_XAML_FLAVOR)"
displayName: 'Run UI Tests'
- task: PublishTestResults@2
inputs:
testRunTitle: 'iOS Test Run'
testResultsFormat: 'NUnit'
testResultsFiles: '$(build.sourcesdirectory)/build/TestResult.xml'
failTaskOnFailedTests: true
- task: PublishBuildArtifacts@1
condition: always()
inputs:
PathtoPublish: $(build.artifactstagingdirectory)
ArtifactName: UnoUITests
ArtifactType: Container