File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -138,8 +138,7 @@ jobs:
138
138
godot-itest :
139
139
name : godot-itest (${{ matrix.name }})
140
140
runs-on : ${{ matrix.os }}
141
- # TODO: continue-on-error: false, as soon as memory errors are fixed
142
- continue-on-error : ${{ contains(matrix.name, 'memcheck') }}
141
+ continue-on-error : false
143
142
timeout-minutes : 24
144
143
strategy :
145
144
fail-fast : false # cancel all jobs as soon as one fails?
@@ -165,6 +164,10 @@ jobs:
165
164
rust-toolchain : stable
166
165
godot-binary : godot.linuxbsd.editor.dev.x86_64
167
166
167
+ # Special Godot binaries compiled with AddressSanitizer/LeakSanitizer to detect UB/leaks.
168
+ # Additionally, the Godot source is patched to make dlclose() a no-op, as unloading dynamic libraries loses stacktrace and
169
+ # cause false positives like println!. See https://github.com/google/sanitizers/issues/89.
170
+ # The gcc version can possibly be removed later, as it is slower and needs a larger artifact than the clang one.
168
171
- name : linux-memcheck-gcc
169
172
os : ubuntu-20.04
170
173
rust-toolchain : stable
You can’t perform that action at this time.
0 commit comments