From 855852db63214aa762c0c105bb28a29489769e64 Mon Sep 17 00:00:00 2001 From: Lukas Tenbrink Date: Thu, 7 Nov 2024 11:02:05 +0100 Subject: [PATCH] Remove unneeded godot-cpp build step from the GitHub action. --- .github/actions/build/action.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 419558d..615cf0b 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -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