Remove unneeded godot-cpp build step from the GitHub action.

pull/63/head
Lukas Tenbrink 2024-11-07 11:02:05 +01:00 committed by GitHub
parent d100b72a3a
commit 855852db63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 12 deletions

View File

@ -23,9 +23,6 @@ inputs:
em-cache-directory:
default: emsdk-cache
description: Emscripten cache directory.
godot-cpp-directory:
default: 'godot-cpp/'
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).
gdextension-directory:
default: ''
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:
with:
path: |
${{ github.workspace }}/${{ inputs.gdextension-directory }}${{ inputs.scons-cache }}
${{ github.workspace }}/${{ inputs.godot-cpp-directory }}${{ inputs.scons-cache }}
key: ${{ inputs.platform }}_${{ inputs.arch }}_${{ inputs.float-precision }}_${{ inputs.build-target-type }}_cache
# Build godot-cpp
- name: Build godot-cpp Debug Build
shell: sh
env:
SCONS_CACHE: ${{ github.workspace }}/${{ inputs.godot-cpp-directory }}${{ inputs.scons-cache }}
run: |
scons target=${{ inputs.build-target-type }} platform=${{ inputs.platform }} arch=${{ inputs.arch }} generate_bindings=yes precision=${{ inputs.float-precision }}
working-directory: ${{ inputs.godot-cpp-directory }}
# Build gdextension
- name: Build GDExtension Debug Build
shell: sh