mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
28ba87e6c8
# Objective
Fixes #1529
Run bevy_ecs in miri
## Solution
- Don't set thread names when running in miri rust-lang/miri/issues/1717
- Update `event-listener` to `2.5.2` as previous versions have UB that is detected by miri: [event-listener commit](1fa31c553e
)
- Ignore memory leaks when running in miri as they are impossible to track down rust-lang/miri/issues/1481
- Make `table_add_remove_many` test less "many" because miri is really quite slow :)
- Make CI run `RUSTFLAGS="-Zrandomize-layout" MIRIFLAGS="-Zmiri-ignore-leaks -Zmiri-tag-raw-pointers -Zmiri-disable-isolation" cargo +nightly miri test -p bevy_ecs`
21 lines
527 B
TOML
21 lines
527 B
TOML
status = [
|
|
"build (stable, windows-latest)",
|
|
"build (stable, ubuntu-latest)",
|
|
"build (stable, macos-latest)",
|
|
"build (nightly, ubuntu-latest)",
|
|
"build-wasm (stable, ubuntu-latest)",
|
|
"build-wasm (nightly, ubuntu-latest)",
|
|
"build-android",
|
|
"markdownlint",
|
|
"check-markdown-links",
|
|
"run-examples",
|
|
"check-doc",
|
|
"check-missing-examples-in-docs",
|
|
"check-unused-dependencies",
|
|
"ci",
|
|
"miri",
|
|
"check-benches",
|
|
]
|
|
|
|
use_squash_merge = true
|
|
block_labels = ["S-Pre-Relicense"]
|