This repository was archived by the owner on Jul 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,10 @@ jobs:
167
167
# but no, instead we have to do whatever the hell this is
168
168
matrix :
169
169
os : [skylake-2x, macos-latest]
170
- sanitizer : [address, thread, memory, leak]
170
+ # The leak sanitizer keeps randomly crashing. Hope we can enable it in
171
+ # the future when it's more stable.
172
+ # sanitizer: [address, thread, memory, leak]
173
+ sanitizer : [address, thread, memory]
171
174
target : [x86_64-unknown-linux-gnu] # x86_64-apple-darwin
172
175
exclude :
173
176
# Exclude ubuntu runs with darwin targets
@@ -218,7 +221,7 @@ jobs:
218
221
THREADS : " ${{ matrix.sanitizer == 'leak' && '--test-threads=1' || '' }}"
219
222
with :
220
223
command : test
221
- args : --workspace ${{ env.ALMOST_ALL_FEATURES }} --target ${{ matrix.target }} -Z build-std -- --skip 'proptest' --skip 'persistent' --skip 'set_test_mt4' ${{ env.THREADS }}
224
+ args : --workspace ${{ env.ALMOST_ALL_FEATURES }} --target ${{ matrix.target }} -Z build-std -- --skip 'proptest' --skip 'persistent' ${{ env.THREADS }}
222
225
clippy :
223
226
name : Clippy
224
227
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments