Skip to content

Commit 3c440ce

Browse files
committed
Update Github workflow
- Add missing Android debug build - Add x86_64 Android build - Remove unused entries in libropesim.gdextension
1 parent 21c1c81 commit 3c440ce

2 files changed

Lines changed: 33 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,43 +14,74 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
include:
17+
# Linux
1718
- identifier: linux-debug
1819
name: Linux Debug
1920
runner: ubuntu-20.04
2021
target: template_debug
2122
platform: linux
2223
arch: x86_64
24+
2325
- identifier: linux-release
2426
name: Linux Release
2527
runner: ubuntu-20.04
2628
target: template_release
2729
platform: linux
2830
arch: x86_64
31+
32+
# Windows
2933
- identifier: windows-debug
3034
name: Windows Debug
3135
runner: ubuntu-20.04
3236
target: template_debug
3337
platform: windows
3438
arch: x86_64
39+
3540
- identifier: windows-release
3641
name: Windows Release
3742
runner: ubuntu-20.04
3843
target: template_release
3944
platform: windows
4045
arch: x86_64
41-
# Untested
46+
47+
# Android Arm64
4248
- identifier: android-release
43-
name: Android Release
49+
name: Android Release Arm64
4450
runner: ubuntu-20.04
4551
target: template_release
4652
platform: android
4753
arch: arm64
54+
55+
- identifier: android-debug
56+
name: Android Debug Arm64
57+
runner: ubuntu-20.04
58+
target: template_debug
59+
platform: android
60+
arch: arm64
61+
62+
# Android x86_64
63+
- identifier: android-release
64+
name: Android Release x86_64
65+
runner: ubuntu-20.04
66+
target: template_release
67+
platform: android
68+
arch: x86_64
69+
70+
- identifier: android-debug
71+
name: Android Debug x86_64
72+
runner: ubuntu-20.04
73+
target: template_debug
74+
platform: android
75+
arch: x86_64
76+
77+
# Mac
4878
- identifier: macos-debug
4979
name: macOS (universal) Debug
5080
runner: macos-latest
5181
target: template_debug
5282
platform: macos
5383
arch: universal
84+
5485
- identifier: macos-release
5586
name: macOS (universal) Release
5687
runner: macos-latest

demo/addons/ropesim/libropesim.gdextension

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,10 @@ compatibility_minimum = "4.2"
77

88
macos.debug = "res://addons/ropesim/bin/libropesim.macos.template_debug.framework"
99
macos.release = "res://addons/ropesim/bin/libropesim.macos.template_release.framework"
10-
windows.debug.x86_32 = "res://addons/ropesim/bin/libropesim.windows.template_debug.x86_32.dll"
11-
windows.release.x86_32 = "res://addons/ropesim/bin/libropesim.windows.template_release.x86_32.dll"
1210
windows.debug.x86_64 = "res://addons/ropesim/bin/libropesim.windows.template_debug.x86_64.dll"
1311
windows.release.x86_64 = "res://addons/ropesim/bin/libropesim.windows.template_release.x86_64.dll"
1412
linux.debug.x86_64 = "res://addons/ropesim/bin/libropesim.linux.template_debug.x86_64.so"
1513
linux.release.x86_64 = "res://addons/ropesim/bin/libropesim.linux.template_release.x86_64.so"
16-
linux.debug.arm64 = "res://addons/ropesim/bin/libropesim.linux.template_debug.arm64.so"
17-
linux.release.arm64 = "res://addons/ropesim/bin/libropesim.linux.template_release.arm64.so"
18-
linux.debug.rv64 = "res://addons/ropesim/bin/libropesim.linux.template_debug.rv64.so"
19-
linux.release.rv64 = "res://addons/ropesim/bin/libropesim.linux.template_release.rv64.so"
2014
android.debug.x86_64 = "res://addons/ropesim/bin/libropesim.android.template_debug.x86_64.so"
2115
android.release.x86_64 = "res://addons/ropesim/bin/libropesim.android.template_release.x86_64.so"
2216
android.debug.arm64 = "res://addons/ropesim/bin/libropesim.android.template_debug.arm64.so"

0 commit comments

Comments
 (0)