Skip to content

Commit 855852d

Browse files
authored
Remove unneeded godot-cpp build step from the GitHub action.
1 parent d100b72 commit 855852d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

.github/actions/build/action.yml

-12
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ inputs:
2323
em-cache-directory:
2424
default: emsdk-cache
2525
description: Emscripten cache directory.
26-
godot-cpp-directory:
27-
default: 'godot-cpp/'
28-
description: Location of godot-cpp in the repository. Must not contain relative path signifiers (. or ..). Must be a transparent path part (empty or 'path/to/directory/', ending in a slash).
2926
gdextension-directory:
3027
default: ''
3128
description: Location of the gdextension project within the repository. Must not contain relative path signifiers (. or ..). Must be a transparent path part (empty or 'path/to/directory/', ending in a slash).
@@ -106,16 +103,7 @@ runs:
106103
with:
107104
path: |
108105
${{ github.workspace }}/${{ inputs.gdextension-directory }}${{ inputs.scons-cache }}
109-
${{ github.workspace }}/${{ inputs.godot-cpp-directory }}${{ inputs.scons-cache }}
110106
key: ${{ inputs.platform }}_${{ inputs.arch }}_${{ inputs.float-precision }}_${{ inputs.build-target-type }}_cache
111-
# Build godot-cpp
112-
- name: Build godot-cpp Debug Build
113-
shell: sh
114-
env:
115-
SCONS_CACHE: ${{ github.workspace }}/${{ inputs.godot-cpp-directory }}${{ inputs.scons-cache }}
116-
run: |
117-
scons target=${{ inputs.build-target-type }} platform=${{ inputs.platform }} arch=${{ inputs.arch }} generate_bindings=yes precision=${{ inputs.float-precision }}
118-
working-directory: ${{ inputs.godot-cpp-directory }}
119107
# Build gdextension
120108
- name: Build GDExtension Debug Build
121109
shell: sh

0 commit comments

Comments
 (0)