Skip to content

Commit c5f47b2

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. (cherry picked from commit 306774b)
1 parent df5b1a9 commit c5f47b2

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)