From 35bfa0b2925df99517fedd5f9baf722a9452baa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mikrut?= Date: Fri, 30 Oct 2020 07:49:57 +0100 Subject: [PATCH] Fix failing CI, due invalid importing of resources --- .github/workflows/linux_builds.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index 57a97f66bf4..20d83df495b 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -198,8 +198,20 @@ jobs: wget2 https://github.com/qarmin/RegressionTestProject/archive/3.2.zip unzip 3.2.zip mv "RegressionTestProject-3.2" "test_project" + + echo "----- Open editor to import all project resources -----" DRI_PRIME=0 timeout 25s xvfb-run bin/godot.x11.tools.64s -e --path test_project 2>&1 | tee sanitizers_log.txt || true misc/scripts/check_ci_log.py sanitizers_log.txt + + echo "----- Open it again, because this not always works -----" + DRI_PRIME=0 timeout 25s xvfb-run bin/godot.x11.tools.64s -e --path test_project 2>&1 | tee sanitizers_log.txt || true + misc/scripts/check_ci_log.py sanitizers_log.txt + + echo "----- Open it third time but this time without timout but with -q flag -----" + DRI_PRIME=0 xvfb-run bin/godot.x11.tools.64s -e -q --path test_project 2>&1 | tee sanitizers_log.txt || true + misc/scripts/check_ci_log.py sanitizers_log.txt + + echo "----- Run and test project -----" DRI_PRIME=0 xvfb-run bin/godot.x11.tools.64s 20 --video-driver GLES3 --path test_project 2>&1 | tee sanitizers_log.txt || true misc/scripts/check_ci_log.py sanitizers_log.txt