summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-09-02 14:33:12 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-09-02 14:33:12 +0200
commitd2ae309f2cec2000257c1ff203a64170fc146b17 (patch)
tree95d1d17b2026879891e7978f788ddf9b6fe290fb
parent7dc14db283a7356bdf4fc2662f0e5d0745a3c098 (diff)
parent80126468fb3f5bcba26e885b58f790b03d9fba5e (diff)
downloadredot-engine-d2ae309f2cec2000257c1ff203a64170fc146b17.tar.gz
Merge pull request #81238 from dsnopek/godot-cpp-version
Use godot-cpp 4.1 for the "Godot CPP" CI workflow to prevent circular dependency
-rw-r--r--.github/workflows/godot_cpp_test.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/godot_cpp_test.yml b/.github/workflows/godot_cpp_test.yml
index 2051920f30..5384197f37 100644
--- a/.github/workflows/godot_cpp_test.yml
+++ b/.github/workflows/godot_cpp_test.yml
@@ -4,8 +4,10 @@ on:
# Global Settings
env:
- # Used for the cache key, and godot-cpp checkout. Add version suffix to force clean build.
+ # Used for the cache key. Add version suffix to force clean build.
GODOT_BASE_BRANCH: master
+ # Used for the godot-cpp checkout.
+ GODOT_CPP_BRANCH: '4.1'
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-cpp-tests
@@ -26,7 +28,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: godotengine/godot-cpp
- ref: ${{ env.GODOT_BASE_BRANCH }}
+ ref: ${{ env.GODOT_CPP_BRANCH }}
submodules: 'recursive'
path: 'godot-cpp'