Skip to content

Commit

Permalink
Loud
Browse files Browse the repository at this point in the history
  • Loading branch information
qarmin committed May 29, 2024
1 parent fb39ae4 commit 3202b7b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/linux_e_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,21 @@ jobs:
run: |
cp project.godot project.godot.old
- name: Open Godot Editor
run: |
UBSAN_OPTIONS=suppressions=suppressions.supp DRI_PRIME=0 xvfb-run ./godot.linuxbsd.editor.dev.x86_64.san -e --quit --audio-driver Dummy --headless --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
tail -n 300 sanitizers_log.txt > editor_results.txt
- name: Store editor results
uses: actions/upload-artifact@v4
with:
name: editor-results
path: editor_results.txt

- name: Check Godot Editor Log
run: |
misc/check_ci_log.py editor_results.txt
- name: Configure Project Data
run: |
echo "" > settings.txt
Expand Down
5 changes: 5 additions & 0 deletions Autoloads/BasicData.gd
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ var function_exceptions: Array = [
###
### Godot 4.0
###
"set_instance_transform_2d", # 92038
"set_buffer", # 92038
"_get_transform_2d_array", # 92038
"create_convex_collision", # 60357
"create_convex_shape", # 60357
"create_multiple_convex_collisions", # 60357
"get_cache_multipass", # 92412
"compress_from_channels", # 91744
Expand Down
5 changes: 5 additions & 0 deletions Autoloads/BasicData2.gd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ var function_exceptions: Array = [
###
### Godot 4.0
###
"set_instance_transform_2d", # 92038
"set_buffer", # 92038
"_get_transform_2d_array", # 92038
"create_convex_collision", # 60357
"create_convex_shape", # 60357
"create_multiple_convex_collisions", # 60357
"get_cache_multipass", # 92412
"compress_from_channels", # 91744
Expand Down

0 comments on commit 3202b7b

Please sign in to comment.