|
@@ -170,12 +170,18 @@ jobs:
|
|
|
mv "regression-test-project-4.0" "test_project"
|
|
|
|
|
|
# Editor is quite complicated piece of software, so it is easy to introduce bug here
|
|
|
- - name: Open and close editor
|
|
|
+ - name: Open and close editor (Vulkan)
|
|
|
if: ${{ matrix.proj-test }}
|
|
|
run: |
|
|
|
VK_ICD_FILENAMES=$(pwd)/vk_swiftshader_icd.json DRI_PRIME=0 xvfb-run ${{ matrix.bin }} --audio-driver Dummy --editor --quit --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)
|
|
|
+ if: ${{ matrix.proj-test }}
|
|
|
+ run: |
|
|
|
+ DRI_PRIME=0 xvfb-run ${{ matrix.bin }} --audio-driver Dummy --rendering-driver opengl3 --editor --quit --path test_project 2>&1 | tee sanitizers_log.txt || true
|
|
|
+ misc/scripts/check_ci_log.py sanitizers_log.txt
|
|
|
+
|
|
|
# Run test project
|
|
|
- name: Run project
|
|
|
if: ${{ matrix.proj-test }}
|