From c52c91f46c6ceef9a3c2ff8e45449d9d55160a47 Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Sun, 27 Jul 2025 10:23:54 -0500 Subject: [PATCH] CI: Use modern `--import` syntax in GHA --- .github/actions/godot-project-test/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/godot-project-test/action.yml b/.github/actions/godot-project-test/action.yml index 36448cd50ae..bcd0ae86219 100644 --- a/.github/actions/godot-project-test/action.yml +++ b/.github/actions/godot-project-test/action.yml @@ -22,13 +22,13 @@ runs: - name: Open and close editor (Vulkan) shell: sh run: | - xvfb-run ${{ inputs.bin }} --audio-driver Dummy --editor --quit --path test_project 2>&1 | tee sanitizers_log.txt || true + xvfb-run ${{ inputs.bin }} --audio-driver Dummy --import --path test_project 2>&1 | tee sanitizers_log.txt || true misc/scripts/check_ci_log.py sanitizers_log.txt - name: Open and close editor (GLES3) shell: sh run: | - DRI_PRIME=0 xvfb-run ${{ inputs.bin }} --audio-driver Dummy --rendering-driver opengl3 --editor --quit --path test_project 2>&1 | tee sanitizers_log.txt || true + DRI_PRIME=0 xvfb-run ${{ inputs.bin }} --audio-driver Dummy --rendering-driver opengl3 --import --path test_project 2>&1 | tee sanitizers_log.txt || true misc/scripts/check_ci_log.py sanitizers_log.txt # Run test project