diff options
author | David Snopek <dsnopek@gmail.com> | 2023-09-01 16:11:51 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2023-09-01 16:11:51 -0500 |
commit | 80126468fb3f5bcba26e885b58f790b03d9fba5e (patch) | |
tree | 41055e5659d608c4b064c747c98b19bc8fd68449 /.github/workflows/godot_cpp_test.yml | |
parent | 80bfca20c6577083e9e4070723512ff2c3f32d0b (diff) | |
download | redot-engine-80126468fb3f5bcba26e885b58f790b03d9fba5e.tar.gz |
Use godot-cpp 4.1 for the "Godot CPP" CI workflow to prevent circular dependency
Diffstat (limited to '.github/workflows/godot_cpp_test.yml')
-rw-r--r-- | .github/workflows/godot_cpp_test.yml | 6 |
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' |