Skip to content

Commit 306774b

Browse files
committed
CI: Workaround upstream issue with .NET editor build not exiting
We force closing the process after 10 s, which should be ample time to generate the .godot folder.
1 parent 73757e3 commit 306774b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
./godot-artifacts/godot.linuxbsd.editor.x86_64.mono --headless --version
173173
cd test
174174
# Need to run the editor so .godot is generated... but it crashes! Ignore that :-)
175-
(cd project && (../../godot-artifacts/godot.linuxbsd.editor.x86_64.mono --editor --headless --quit >/dev/null 2>&1 || true))
175+
(cd project && (timeout 10 ../../godot-artifacts/godot.linuxbsd.editor.x86_64.mono --editor --headless --quit >/dev/null 2>&1 || true))
176176
GODOT=../godot-artifacts/godot.linuxbsd.editor.x86_64.mono ./run-tests.sh
177177
178178
- name: Upload artifact

0 commit comments

Comments
 (0)