CI: Disable Linux GCC ASAN temporarily

Another attempt at fixing CI which seems to get a linker crash since today (likely OOM).
This commit is contained in:
Rémi Verschelde 2022-07-20 16:35:03 +02:00 committed by GitHub
parent 8d15814e6a
commit 04e955841f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,12 +31,12 @@ jobs:
proj-conv: true
artifact: true
- name: Editor with doubles and GCC sanitizers (target=debug, tools=yes, float=64, tests=yes, use_asan=yes, use_ubsan=yes)
- name: Editor with doubles and GCC sanitizers (target=debug, tools=yes, float=64, tests=yes, use_asan=no, use_ubsan=yes)
cache-name: linux-editor-double-sanitizers
target: debug
tools: true
tests: true
sconsflags: float=64 use_asan=yes use_ubsan=yes
sconsflags: float=64 use_asan=no use_ubsan=yes
proj-test: true
# Can be turned off for PRs that intentionally break compat with godot-cpp,
# until both the upstream PR and the matching godot-cpp changes are merged.