Fix executable name

This commit is contained in:
Marc Gilleron 2022-07-17 01:28:29 +01:00
parent 80b7bfd148
commit 42abe132d9
2 changed files with 9 additions and 3 deletions

View File

@ -9,6 +9,9 @@ on:
env:
GODOT_BASE_BRANCH: master
SCONS_CACHE_LIMIT: 4096
GODOT_BINARY_NAME: godot.linuxbsd.tools.64
# if we could compile with sanitisers
#GODOT_BINARY_NAME: godot.linuxbsd.tools.64s
jobs:
test-project:
@ -94,7 +97,7 @@ jobs:
- name: Run fuzzer
run: |
DRI_PRIME=0 xvfb-run bin/godot.x11.tools.64s FunctionExecutor.tscn 600 --audio-driver Dummy --video-driver GLES3 --path fuzzer 2>&1 | tee sanitizers_log.txt || true
DRI_PRIME=0 xvfb-run bin/${{GODOT_BINARY_NAME}} FunctionExecutor.tscn 600 --audio-driver Dummy --video-driver GLES3 --path fuzzer 2>&1 | tee sanitizers_log.txt || true
tail -n 300 sanitizers_log.txt > project_results.txt
- name: Store project results

View File

@ -9,6 +9,9 @@ on:
env:
GODOT_BASE_BRANCH: master
SCONS_CACHE_LIMIT: 4096
GODOT_BINARY_NAME: godot.linuxbsd.tools.64
# if we could compile with sanitisers
#GODOT_BINARY_NAME: godot.linuxbsd.tools.64s
jobs:
test-project:
@ -90,11 +93,11 @@ jobs:
# Editor is quite complicated piece of software, so it is easy to introduce bug here
- name: Open and close editor
run: |
DRI_PRIME=0 xvfb-run bin/godot.x11.tools.64s --audio-driver Dummy -e -q --path test_project 2>&1 | tee sanitizers_log.txt || true
DRI_PRIME=0 xvfb-run bin/${{GODOT_BINARY_NAME}} --audio-driver Dummy -e -q --path test_project 2>&1 | tee sanitizers_log.txt || true
modules/voxel/misc/check_ci_log.py sanitizers_log.txt
# Run test project
- name: Run project
run: |
DRI_PRIME=0 xvfb-run bin/godot.x11.tools.64s 30 --video-driver GLES3 --audio-driver Dummy --path test_project 2>&1 | tee sanitizers_log.txt || true
DRI_PRIME=0 xvfb-run bin/${{GODOT_BINARY_NAME}} 30 --video-driver GLES3 --audio-driver Dummy --path test_project 2>&1 | tee sanitizers_log.txt || true
modules/voxel/misc/check_ci_log.py sanitizers_log.txt