-
Notifications
You must be signed in to change notification settings - Fork 133
/
azure-pipelines.yml
162 lines (140 loc) · 3.64 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
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
trigger:
- master
pr:
- master
variables:
- name: CMAKE_VERSION
value: 3.26.3
- name: NDK_VERSION
value: 25.2.9519653
- name: UNITY_BUILD
value: true
- name: XCODE_VERSION
value: 15.4
jobs:
# Apple
- template: .github/jobs/macos.yml
parameters:
name: MacOS_Xcode153
vmImage: 'macOS-14'
- template: .github/jobs/ios.yml
parameters:
name: iOS_Xcode153_iOS162
vmImage: 'macOS-14'
deploymentTarget: 16.2
- template: .github/jobs/ios.yml
parameters:
name: iOS_Xcode153_iOS172
vmImage: 'macOS-14'
deploymentTarget: 17.2
# 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
# 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_JavaScriptCore
vmImage: 'ubuntu-latest'
CC: clang
CXX: clang++
JSEngine: JavaScriptCore
- template: .github/jobs/linux.yml
parameters:
name: Ubuntu_GCC_JavaScriptCore
vmImage: 'ubuntu-latest'
CC: gcc
CXX: g++
JSEngine: JavaScriptCore
# 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_win32.yml
parameters:
name: Win32_Installation
vmImage: 'windows-latest'
platform: x64
- template: .github/jobs/test_install_linux.yml
parameters:
name: Linux_Installation
vmImage: 'ubuntu-latest'
JSEngine: JavaScriptCore
- template: .github/jobs/test_install_macos.yml
parameters:
name: MacOS_Installation
vmImage: 'macOS-14'
- template: .github/jobs/test_install_ios.yml
parameters:
name: iOS_Installation
vmImage: 'macOS-14'
deploymentTarget: 17.2
# 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