Merge pull request #1308 from akien-mga/ci-tests-timeout-import

CI: Workaround upstream issue with .NET editor build not exiting
pull/1310/head
Rémi Verschelde 2023-11-13 19:13:54 +01:00 committed by GitHub
commit c51c5425ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ jobs:
./godot-artifacts/godot.linuxbsd.editor.x86_64.mono --headless --version ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono --headless --version
cd test cd test
# Need to run the editor so .godot is generated... but it crashes! Ignore that :-) # 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)) (cd project && (timeout 10 ../../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 GODOT=../godot-artifacts/godot.linuxbsd.editor.x86_64.mono ./run-tests.sh
- name: Upload artifact - name: Upload artifact