Turn off sanitizers in CI as they are segfaulting
Trying to debug this in CI is too much work. Hopefully whatever update in the CI env that is causing these will eventually be fixed.
This commit is contained in:
parent
0153c9bb85
commit
f5570c38dd
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -28,11 +28,11 @@ jobs:
|
|||
|
||||
- python: b
|
||||
pyver: "3.11"
|
||||
sanitize: 1
|
||||
sanitize: 0 # disabled because causes segfaults
|
||||
|
||||
- python: c
|
||||
pyver: "3.9"
|
||||
sanitize: 1
|
||||
sanitize: 0 # disabled because causes segfaults
|
||||
|
||||
|
||||
exclude:
|
||||
|
|
|
|||
Loading…
Reference in a new issue