Skip to content
This repository was archived by the owner on Dec 29, 2024. It is now read-only.

Commit f658394

Browse files
committed
Disable MSVC check for extensions
1 parent 8de338b commit f658394

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

.github/workflows/gdextension.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -83,34 +83,34 @@ jobs:
8383
arch: x86_32
8484
should-build: ${{ inputs.fullbuild }}
8585

86-
- identifier: android-release (x86_64)
87-
name: Android (x86_64) - template_release
88-
runner: ubuntu-20.04
89-
target: template_release
90-
platform: android
91-
arch: x86_64
92-
should-build: ${{ inputs.fullbuild }}
93-
- identifier: android-debug (x86_64)
94-
name: Android (x86_64) - template_debug
95-
runner: ubuntu-20.04
96-
target: template_debug
97-
platform: android
98-
arch: x86_64
99-
should-build: ${{ inputs.fullbuild }}
100-
- identifier: android-release (arm64)
101-
name: Android (arm64) - template_release
102-
runner: ubuntu-20.04
103-
target: template_release
104-
platform: android
105-
arch: arm64
106-
should-build: ${{ inputs.fullbuild }}
107-
- identifier: android-debug (arm64)
108-
name: Android (arm64) - template_debug
109-
runner: ubuntu-20.04
110-
target: template_debug
111-
platform: android
112-
arch: arm64
113-
should-build: ${{ inputs.fullbuild }}
86+
# - identifier: android-release (x86_64)
87+
# name: Android (x86_64) - template_release
88+
# runner: ubuntu-20.04
89+
# target: template_release
90+
# platform: android
91+
# arch: x86_64
92+
# should-build: ${{ inputs.fullbuild }}
93+
# - identifier: android-debug (x86_64)
94+
# name: Android (x86_64) - template_debug
95+
# runner: ubuntu-20.04
96+
# target: template_debug
97+
# platform: android
98+
# arch: x86_64
99+
# should-build: ${{ inputs.fullbuild }}
100+
# - identifier: android-release (arm64)
101+
# name: Android (arm64) - template_release
102+
# runner: ubuntu-20.04
103+
# target: template_release
104+
# platform: android
105+
# arch: arm64
106+
# should-build: ${{ inputs.fullbuild }}
107+
# - identifier: android-debug (arm64)
108+
# name: Android (arm64) - template_debug
109+
# runner: ubuntu-20.04
110+
# target: template_debug
111+
# platform: android
112+
# arch: arm64
113+
# should-build: ${{ inputs.fullbuild }}
114114

115115
- identifier: macos-release (universal)
116116
name: MacOS (universal) - template_release

external/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ luaver = env["luaapi_luaver"]
1111

1212
if luaver == "jit":
1313
if env["luaapi_luajit_build"]:
14-
build_luajit(env)
14+
build_luajit(env, True)
1515

1616
env.Append(LIBPATH=[Dir("luaJIT/src").abspath])
1717
env.Append(LIBS=['libluajit'])

external/build_luajit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ def run(cmd):
1414
print("Error: return code: " + str(code))
1515
sys.exit(code)
1616

17-
def build_luajit(env):
18-
if not env.msvc:
17+
def build_luajit(env, extension=False):
18+
if extension or not env.msvc:
1919
os.chdir("luaJIT")
2020

2121
# cross compile posix->windows

0 commit comments

Comments
 (0)