Fix env var

master
Marc Gilleron 2022-07-17 01:35:13 +01:00
parent 42abe132d9
commit f8ce0b1e8c
2 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ jobs:
- name: Run fuzzer
run: |
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
DRI_PRIME=0 xvfb-run bin/${{env.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

@ -93,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_BINARY_NAME}} --audio-driver Dummy -e -q --path test_project 2>&1 | tee sanitizers_log.txt || true
DRI_PRIME=0 xvfb-run bin/${{env.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_BINARY_NAME}} 30 --video-driver GLES3 --audio-driver Dummy --path test_project 2>&1 | tee sanitizers_log.txt || true
DRI_PRIME=0 xvfb-run bin/${{env.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