From 73c6bfe2c7d6a283c47999adb3d15094e2b0fe20 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Sun, 14 Jan 2024 19:32:09 +0100 Subject: [PATCH] GHA: Call GDExtension builds in all_builds.yml --- .github/workflows/all_builds.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/all_builds.yml b/.github/workflows/all_builds.yml index fd8332c..23fe815 100644 --- a/.github/workflows/all_builds.yml +++ b/.github/workflows/all_builds.yml @@ -10,6 +10,10 @@ on: description: A tag, branch or commit hash in the LimboAI repository. type: string default: master + godot-cpp-treeish: + description: A tag, branch or commit hash in the godot-cpp repository. + type: string + default: 4.2 jobs: cache-sha: @@ -87,3 +91,12 @@ jobs: with: godot-treeish: ${{ needs.cache-sha.outputs.godot-sha }} limboai-treeish: ${{ needs.cache-sha.outputs.limboai-sha }} + + gdextension: + name: 🔌 GDExtension + needs: cache-sha + uses: ./.github/workflows/gdextension.yml + with: + godot-cpp-treeish: ${{ inputs.godot-cpp-treeish }} + limboai-treeish: ${{ needs.cache-sha.outputs.limboai-sha }} + test-build: false