Disable temporary exported build in CI
This commit is contained in:
parent
efdc5f0f89
commit
79a6050bc1
1 changed files with 12 additions and 12 deletions
24
.github/workflows/linux_builds.yml
vendored
24
.github/workflows/linux_builds.yml
vendored
|
@ -189,8 +189,8 @@ jobs:
|
||||||
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
|
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
|
||||||
run: |
|
run: |
|
||||||
scons tools=yes target=debug use_asan=yes use_ubsan=yes
|
scons tools=yes target=debug use_asan=yes use_ubsan=yes
|
||||||
scons tools=no target=release debug_symbols=full use_ubsan=yes use_asan=yes
|
|
||||||
ls -l bin/
|
ls -l bin/
|
||||||
|
# scons tools=no target=release debug_symbols=full use_ubsan=yes use_asan=yes
|
||||||
|
|
||||||
# Download and test project to check leaks and invalid memory usage
|
# Download and test project to check leaks and invalid memory usage
|
||||||
- name: Importing and running project project
|
- name: Importing and running project project
|
||||||
|
@ -203,14 +203,14 @@ jobs:
|
||||||
DRI_PRIME=0 xvfb-run bin/godot.x11.tools.64s 20 --video-driver GLES3 --path test_project 2>&1 | tee sanitizers_log.txt || true
|
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
|
misc/scripts/check_ci_log.py sanitizers_log.txt
|
||||||
|
|
||||||
# Export project and run it to check for possible leaks and invalid memory usage
|
# # Export project and run it to check for possible leaks and invalid memory usage
|
||||||
- name: Exporting and running project
|
# - name: Exporting and running project
|
||||||
run: |
|
# run: |
|
||||||
mkdir exported_project
|
# mkdir exported_project
|
||||||
sed -i 's:PATH_TO_CHANGE:'`pwd`/bin/godot.x11.debug.64s':' test_project/export_presets.cfg
|
# sed -i 's:PATH_TO_CHANGE:'`pwd`/bin/godot.x11.debug.64s':' test_project/export_presets.cfg
|
||||||
cd test_project
|
# cd test_project
|
||||||
DRI_PRIME=0 xvfb-run ../bin/godot.x11.tools.64s --export-debug "Linux/X11" ../exported_project/test_project 2>&1 | tee sanitizers_log.txt || true
|
# DRI_PRIME=0 xvfb-run ../bin/godot.x11.tools.64s --export-debug "Linux/X11" ../exported_project/test_project 2>&1 | tee sanitizers_log.txt || true
|
||||||
cd ..
|
# cd ..
|
||||||
misc/scripts/check_ci_log.py sanitizers_log.txt
|
# misc/scripts/check_ci_log.py sanitizers_log.txt
|
||||||
DRI_PRIME=0 xvfb-run exported_project/test_project 20 2>&1 | tee sanitizers_log.txt || true
|
# DRI_PRIME=0 xvfb-run exported_project/test_project 20 2>&1 | tee sanitizers_log.txt || true
|
||||||
misc/scripts/check_ci_log.py sanitizers_log.txt
|
# misc/scripts/check_ci_log.py sanitizers_log.txt
|
||||||
|
|
Loading…
Reference in a new issue