forked from BabylonJS/BabylonNative
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
185 lines (160 loc) · 4.35 KB
/
Copy pathazure-pipelines.yml
File metadata and controls
185 lines (160 loc) · 4.35 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
trigger:
- master
pr:
- master
variables:
- name: CMAKE_VERSION
value: 3.31.6
- name: NDK_VERSION
value: 28.2.13676358
- name: UNITY_BUILD
value: true
- name: XCODE_VERSION
value: 16.4
jobs:
# Apple
- template: .github/jobs/macos.yml
parameters:
name: MacOS
vmImage: "macOS-latest"
- template: .github/jobs/macos.yml
parameters:
name: MacOS_Sanitizers
vmImage: "macOS-latest"
enableSanitizers: true
- template: .github/jobs/ios.yml
parameters:
name: iOS_iOS180
vmImage: "macOS-latest"
deploymentTarget: 18.0
- template: .github/jobs/ios.yml
parameters:
name: iOS_iOS175
vmImage: "macOS-latest"
deploymentTarget: 17.5
# Win32
- template: .github/jobs/win32.yml
parameters:
name: Win32_x64_D3D11
vmImage: "windows-latest"
platform: x64
- template: .github/jobs/win32.yml
parameters:
name: Win32_x64_JSI_D3D11
vmImage: "windows-latest"
platform: x64
napiType: jsi
- template: .github/jobs/win32.yml
parameters:
name: Win32_x64_V8_D3D11
vmImage: "windows-latest"
platform: x64
napiType: V8
- template: .github/jobs/win32.yml
parameters:
name: Win32_x64_D3D12
vmImage: "windows-latest"
platform: x64
graphics_api: D3D12
- template: .github/jobs/win32.yml
parameters:
name: Win32_x64_D3D12_Sanitizers
vmImage: "windows-latest"
platform: x64
graphics_api: D3D12
enableSanitizers: true
# UWP
- template: .github/jobs/uwp.yml
parameters:
name: UWP_x64
vmImage: "windows-latest"
platform: x64
- template: .github/jobs/uwp.yml
parameters:
name: UWP_arm64
vmImage: "windows-latest"
platform: arm64
- template: .github/jobs/uwp.yml
parameters:
name: UWP_arm64_JSI
vmImage: "windows-latest"
platform: arm64
napiType: jsi
# Ubuntu/Linux
# TODO: v8 is incompatible with curl for some reason
# See https://github.com/BabylonJS/BabylonNative/issues/1190
- template: .github/jobs/linux.yml
parameters:
name: Ubuntu_Clang_JSC
vmImage: "ubuntu-latest"
CC: clang
CXX: clang++
JSEngine: JavaScriptCore
- template: .github/jobs/linux.yml
parameters:
name: Ubuntu_GCC_JSC
vmImage: "ubuntu-latest"
CC: gcc
CXX: g++
JSEngine: JavaScriptCore
# Memory leaks on CI is disabled due to memory leaks reported with xvfb and impossible to add to ignore list.
# See https://github.com/BabylonJS/BabylonNative/issues/1575
# - template: .github/jobs/linux.yml
# parameters:
# name: Ubuntu_Clang_JavaScriptCore_Sanitizers
# vmImage: 'ubuntu-latest'
# CC: clang
# CXX: clang++
# JSEngine: JavaScriptCore
# enableSanitizers: true
# Android
- template: .github/jobs/android.yml
parameters:
name: Android_Ubuntu_JSC
vmImage: "ubuntu-latest"
JSEngine: JavaScriptCore
- template: .github/jobs/android.yml
parameters:
name: Android_Ubuntu_V8
vmImage: "ubuntu-latest"
JSEngine: V8
- template: .github/jobs/android.yml
parameters:
name: Android_MacOS_JSC
vmImage: "macOS-latest"
JSEngine: JavaScriptCore
- template: .github/jobs/android.yml
parameters:
name: Android_MacOS_V8
vmImage: "macOS-latest"
JSEngine: V8
# Installation tests
- template: .github/jobs/test_install_ios.yml
parameters:
name: iOS_Installation
vmImage: "macOS-latest"
deploymentTarget: 17.2
- template: .github/jobs/test_install_linux.yml
parameters:
name: Linux_Installation
vmImage: "ubuntu-latest"
- template: .github/jobs/test_install_macos.yml
parameters:
name: MacOS_Installation
vmImage: "macOS-latest"
- template: .github/jobs/test_install_win32.yml
parameters:
name: Win32_Installation
vmImage: "windows-latest"
# These Android tests are unstable on the CI emulator. Disabled until a more reliable solution is found.
# - template: .github/jobs/android_tests.yml
# parameters:
# name: Android_Tests_MacOS_JSC
# vmImage: 'macOS-latest'
# JSEngine: JavaScriptCore
#
# - template: .github/jobs/android_tests.yml
# parameters:
# name: Android_Tests_MacOS_V8
# vmImage: 'macOS-latest'
# JSEngine: V8