summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-06-14 11:20:50 -0500
committerDavid Snopek <dsnopek@gmail.com>2024-06-14 11:20:50 -0500
commitf1b7ba3e06cc3830a3de5918284dcd7bce7933b6 (patch)
tree23bc8fbd9856cabc35460893a1da3dfe31de570f
parent5d8f80bc5578a2312d271d854745a172dad56501 (diff)
downloadredot-cpp-f1b7ba3e06cc3830a3de5918284dcd7bce7933b6.tar.gz
Allow selecting Godot version to run the tests with
-rw-r--r--.github/workflows/ci.yml25
1 files changed, 20 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 08a9228..91be1bb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,6 +4,8 @@ on: [push, pull_request]
env:
# Only used for the cache key. Increment version to force clean build.
GODOT_BASE_BRANCH: master
+ # Used to select the version of Godot to run the tests with.
+ GODOT_TEST_VERSION: master
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}
@@ -153,7 +155,7 @@ jobs:
- name: Download latest Godot artifacts
uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9
- if: ${{ matrix.run-tests }}
+ if: ${{ matrix.run-tests && env.GODOT_TEST_VERSION == 'master' }}
with:
repo: godotengine/godot
branch: master
@@ -166,15 +168,28 @@ jobs:
ensure_latest: true
path: godot-artifacts
+ - name: Prepare Godot artifacts for testing
+ if: ${{ matrix.run-tests && env.GODOT_TEST_VERSION == 'master' }}
+ run: |
+ chmod +x ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono
+ echo "GODOT=$(pwd)/godot-artifacts/godot.linuxbsd.editor.x86_64.mono" >> $GITHUB_ENV
+
+ - name: Download requested Godot version for testing
+ if: ${{ matrix.run-tests && env.GODOT_TEST_VERSION != 'master' }}
+ run: |
+ wget "https://github.com/godotengine/godot-builds/releases/download/${GODOT_TEST_VERSION}/Godot_v${GODOT_TEST_VERSION}_linux.x86_64.zip" -O Godot.zip
+ unzip -a Godot.zip
+ chmod +x "Godot_v${GODOT_TEST_VERSION}_linux.x86_64"
+ echo "GODOT=$(pwd)/Godot_v${GODOT_TEST_VERSION}_linux.x86_64" >> $GITHUB_ENV
+
- name: Run tests
if: ${{ matrix.run-tests }}
run: |
- chmod +x ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono
- ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono --headless --version
+ $GODOT --headless --version
cd test
# Need to run the editor so .godot is generated... but it crashes! Ignore that :-)
- (cd project && (timeout 30 ../../godot-artifacts/godot.linuxbsd.editor.x86_64.mono --import --headless >/dev/null 2>&1 || true))
- GODOT=../godot-artifacts/godot.linuxbsd.editor.x86_64.mono ./run-tests.sh
+ (cd project && (timeout 30 $GODOT --import --headless >/dev/null 2>&1 || true))
+ ./run-tests.sh
- name: Upload artifact
uses: actions/upload-artifact@v3