-
Notifications
You must be signed in to change notification settings - Fork 152
152 lines (125 loc) · 4.21 KB
/
ci.yml
File metadata and controls
152 lines (125 loc) · 4.21 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
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
# ── Apple: macOS ──────────────────────────────────────────────
MacOS:
uses: ./.github/workflows/build-macos.yml
MacOS_Ninja:
uses: ./.github/workflows/build-macos.yml
with:
generator: 'Ninja Multi-Config'
MacOS_Sanitizers:
uses: ./.github/workflows/build-macos.yml
with:
enable-sanitizers: true
# ── Apple: iOS ────────────────────────────────────────────────
iOS_iOS180:
uses: ./.github/workflows/build-ios.yml
with:
deployment-target: '18.0'
iOS_iOS175:
uses: ./.github/workflows/build-ios.yml
with:
deployment-target: '17.5'
# ── 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
# ── 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_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_GCC_JSC:
uses: ./.github/workflows/build-linux.yml
with:
cc: gcc
cxx: g++
js-engine: JavaScriptCore
# ── 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_MacOS_JSC:
uses: ./.github/workflows/build-android.yml
with:
runs-on: macos-latest
js-engine: JavaScriptCore
Android_MacOS_V8:
uses: ./.github/workflows/build-android.yml
with:
runs-on: macos-latest
js-engine: V8
# ── 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