File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1232,6 +1232,29 @@ jobs:
12321232 # if: always()
12331233 # run: spacetime sql quickstart-chat "SELECT * FROM user"
12341234
1235+ godot_tests :
1236+ runs-on : spacetimedb-new-runner-2
1237+ steps :
1238+ - name : Install Godot
1239+ shell : bash
1240+ run : |
1241+ GODOT_VERSION=4.6.2
1242+ GODOT_STATUS=stable
1243+ GODOT_BIN=Godot_v${GODOT_VERSION}-${GODOT_STATUS}_linux.x86_64
1244+
1245+ curl -L -o godot.zip \
1246+ "https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_STATUS}/${GODOT_BIN}.zip"
1247+
1248+ unzip godot.zip
1249+ chmod +x "${GODOT_BIN}"
1250+ sudo mv "${GODOT_BIN}" /usr/local/bin/godot
1251+
1252+ godot --version
1253+
1254+ - name : Replace this step
1255+ # Fail until we've integrated Godot SDK
1256+ run : exit 1
1257+
12351258 version_upgrade_check :
12361259 runs-on : spacetimedb-new-runner-2
12371260 steps :
You can’t perform that action at this time.
0 commit comments