Fix executable name
This commit is contained in:
parent
80b7bfd148
commit
42abe132d9
5
.github/workflows/fuzzer.yml
vendored
5
.github/workflows/fuzzer.yml
vendored
@ -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
|
||||
|
7
.github/workflows/test_project.yml
vendored
7
.github/workflows/test_project.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user