You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build_android.yml
+38-22Lines changed: 38 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -14,28 +14,44 @@ jobs:
14
14
build:
15
15
runs-on: ubuntu-latest
16
16
strategy:
17
-
matrix:
18
-
module: [
19
-
"MobileGlues",
20
-
"kopper-zink",
21
-
"HolyGL4ES",
22
-
"krypton_wrapper",
23
-
"SDL",
24
-
"zstd",
25
-
"imgui-java",
26
-
"arc_dns_injector",
27
-
"lwjgl-build",
28
-
"openal-soft",
29
-
"angle"
30
-
]
17
+
matrix:
18
+
- module: "MobileGlues"
19
+
path: "renderers/MobileGlues"
20
+
- module: "kopper-zink"
21
+
path: "renderers/mesa-libs/*"
22
+
- module: "HolyGL4ES"
23
+
path: "renderers/HolyGL4ES"
24
+
- module: "krypton_wrapper"
25
+
path: "renderers/krypton_wrapper"
26
+
- module: "SDL"
27
+
path: "SDL/*"
28
+
- module: "zstd"
29
+
path: "misc/zstd"
30
+
- module: "imgui-java"
31
+
path: "misc/imgui-java"
32
+
- module: "arc_dns_injector"
33
+
path: "misc/arc_dns_injector"
34
+
- module: "lwjgl3"
35
+
path: "misc/lwjgl-classes/*"
36
+
- module: "openal-soft"
37
+
path: "misc/openal-soft"
38
+
- module: "angle"# ANGLE needs special treatment with depot-tools
39
+
path: "renderers/ANGLE"
31
40
steps:
32
41
- name: Checkout
33
42
uses: actions/checkout@v4
34
43
with:
35
-
submodules: "recursive"
36
-
- name: Initialize ANGLE manually # depot-tools is the proper tool to handle the nested submodules so we block git recursively checking those out and just init the repo without submodules.
0 commit comments