Updating runners to use 4.7.2 godot
Run Tests / test (push) Failing after 19s
Validate Project / validate (push) Successful in 15s

This commit is contained in:
2026-08-27 16:27:31 -07:00
parent 02c1a540f9
commit 0a04e1d852
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -7,9 +7,9 @@ jobs:
- uses: actions/checkout@v4
- name: Install Godot stable
run: |
wget -q https://github.com/godotengine/godot/releases/download/4.3-stable/Godot_v4.3-stable_linux.x86_64.zip
wget -q https://github.com/godotengine/godot/releases/download/4.7.2-stable/Godot_v4.7.2-stable_linux.x86_64.zip
unzip -qq *.zip -d /tmp/godot-install/
sudo cp "/tmp/godot-install/Godot v4.3-stable/Godot_v4.3-stable_linux.x86_64" /usr/local/bin/godot
chmod +x /usr/local/bin/godot
GODOT_BIN=$(find /tmp/godot-install/ -type f -name "Godot_*linux.x86_64" | head -1)
sudo cp "$GODOT_BIN" /usr/local/bin/godot && chmod +x /usr/local/bin/godot
- name: Run headless gdunit4 tests
run: godot --headless --path . --script res://tests/run_tests.gd
+3 -3
View File
@@ -7,10 +7,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install Godot stable
run: |
wget -q https://github.com/godotengine/godot/releases/download/4.3-stable/Godot_v4.3-stable_linux.x86_64.zip
wget -q https://github.com/godotengine/godot/releases/download/4.7.2-stable/Godot_v4.7.2-stable_linux.x86_64.zip
unzip -qq *.zip -d /tmp/godot-install/
sudo cp "/tmp/godot-install/Godot v4.3-stable/Godot_v4.3-stable_linux.x86_64" /usr/local/bin/godot
chmod +x /usr/local/bin/godot
GODOT_BIN=$(find /tmp/godot-install/ -type f -name "Godot_*linux.x86_64" | head -1)
sudo cp "$GODOT_BIN" /usr/local/bin/godot && chmod +x /usr/local/bin/godot
- name: Check project opens cleanly headless
run: |
godot --headless --path . 2>&1 | tee editor.log || true