diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-10 11:38:44 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-10 11:38:44 +0100 |
commit | 73757e3a9fe652fa800f72f727faa8107aa1e736 (patch) | |
tree | 7e6e27ce2fd7ea730403462f194c04d2709dda8f | |
parent | adb0cfc59c94efea8b8232827805c6e144dda970 (diff) | |
parent | 59392bc1faced066a1799e39d77a9a53119855ee (diff) | |
download | redot-cpp-73757e3a9fe652fa800f72f727faa8107aa1e736.tar.gz |
Merge pull request #1304 from dsnopek/revert-fix-tests-hack
Revert "Hack adding `--quit-after 100` to ensure extension_list.cfg gets generated"
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1256f7..1f316ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -171,8 +171,8 @@ jobs: chmod +x ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono --headless --version cd test - # Need to run the editor twice so .godot is generated... but it crashes! Ignore that :-) - (cd project && (../../godot-artifacts/godot.linuxbsd.editor.x86_64.mono --editor --headless --quit-after 100 >/dev/null 2>&1 || true)) + # Need to run the editor so .godot is generated... but it crashes! Ignore that :-) + (cd project && (../../godot-artifacts/godot.linuxbsd.editor.x86_64.mono --editor --headless --quit >/dev/null 2>&1 || true)) GODOT=../godot-artifacts/godot.linuxbsd.editor.x86_64.mono ./run-tests.sh - name: Upload artifact |