-
Notifications
You must be signed in to change notification settings - Fork 157
200 lines (167 loc) · 5.1 KB
/
Copy pathci.yml
File metadata and controls
200 lines (167 loc) · 5.1 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
# ── Apple: macOS ──────────────────────────────────────────────
MacOS:
uses: ./.github/workflows/build-macos.yml
with:
xcode-version: "26.4"
runs-on: macos-26
MacOS_Ninja:
uses: ./.github/workflows/build-macos.yml
with:
generator: "Ninja Multi-Config"
xcode-version: "26.4"
runs-on: macos-26
MacOS_Sanitizers:
uses: ./.github/workflows/build-macos.yml
with:
enable-sanitizers: true
xcode-version: "26.4"
runs-on: macos-26
# ── Apple: Xcode 26 ──────────────────────────────────────────
MacOS_Xcode26:
uses: ./.github/workflows/build-macos.yml
with:
xcode-version: "26.4"
runs-on: macos-26
iOS_Xcode26:
uses: ./.github/workflows/build-ios.yml
with:
deployment-target: "26.0"
xcode-version: "26.4"
runs-on: macos-26
MacOS_QuickJS:
uses: ./.github/workflows/build-macos.yml
with:
xcode-version: "26.4"
runs-on: macos-26
js-engine: QuickJS
# ── Win32─────────────────────────────────────────────────────
Win32_x64_D3D11:
uses: ./.github/workflows/build-win32.yml
with:
platform: x64
Win32_x64_JSI_D3D11:
uses: ./.github/workflows/build-win32.yml
with:
platform: x64
napi-type: jsi
Win32_x64_V8_D3D11:
uses: ./.github/workflows/build-win32.yml
with:
platform: x64
napi-type: V8
Win32_x64_Hermes_D3D11:
uses: ./.github/workflows/build-win32.yml
with:
platform: x64
napi-type: Hermes
Win32_x64_QuickJS_D3D11:
uses: ./.github/workflows/build-win32.yml
with:
platform: x64
napi-type: QuickJS
graphics-api: D3D11
Win32_x64_D3D11_Sanitizers:
uses: ./.github/workflows/build-win32.yml
with:
platform: x64
enable-sanitizers: true
Win32_x64_D3D12:
uses: ./.github/workflows/build-win32.yml
with:
platform: x64
graphics-api: D3D12
Win32_x64_D3D11_PrecompiledShaderTest:
uses: ./.github/workflows/build-win32-shader.yml
# ── UWP ───────────────────────────────────────────────────────
UWP_x64:
uses: ./.github/workflows/build-uwp.yml
with:
platform: x64
UWP_arm64:
uses: ./.github/workflows/build-uwp.yml
with:
platform: arm64
UWP_arm64_JSI:
uses: ./.github/workflows/build-uwp.yml
with:
platform: arm64
napi-type: jsi
# ── Ubuntu / Linux ────────────────────────────────────────────
Ubuntu_Clang_JSC:
uses: ./.github/workflows/build-linux.yml
with:
cc: clang
cxx: clang++
js-engine: JavaScriptCore
Ubuntu_Clang_Hermes:
uses: ./.github/workflows/build-linux.yml
with:
cc: clang
cxx: clang++
js-engine: Hermes
Ubuntu_GCC_JSC:
uses: ./.github/workflows/build-linux.yml
with:
cc: gcc
cxx: g++
js-engine: JavaScriptCore
Ubuntu_Clang_QuickJS:
uses: ./.github/workflows/build-linux.yml
with:
cc: clang
cxx: clang++
js-engine: QuickJS
# ── Android ───────────────────────────────────────────────────
Android_Ubuntu_JSC:
uses: ./.github/workflows/build-android.yml
with:
runs-on: ubuntu-latest
js-engine: JavaScriptCore
Android_Ubuntu_V8:
uses: ./.github/workflows/build-android.yml
with:
runs-on: ubuntu-latest
js-engine: V8
Android_Ubuntu_Hermes:
uses: ./.github/workflows/build-android.yml
with:
runs-on: ubuntu-latest
js-engine: Hermes
Android_Ubuntu_QuickJS:
uses: ./.github/workflows/build-android.yml
with:
runs-on: ubuntu-latest
js-engine: QuickJS
Android_MacOS_JSC:
uses: ./.github/workflows/build-android.yml
with:
runs-on: macos-26
js-engine: JavaScriptCore
Android_MacOS_V8:
uses: ./.github/workflows/build-android.yml
with:
runs-on: macos-26
js-engine: V8
Android_MacOS_QuickJS:
uses: ./.github/workflows/build-android.yml
with:
runs-on: macos-26
js-engine: QuickJS
# ── Installation Tests ────────────────────────────────────────
iOS_Installation:
uses: ./.github/workflows/test-install-ios.yml
with:
deployment-target: "17.2"
Linux_Installation:
uses: ./.github/workflows/test-install-linux.yml
MacOS_Installation:
uses: ./.github/workflows/test-install-macos.yml
Win32_Installation:
uses: ./.github/workflows/test-install-win32.yml