Temporarily disable -Zrandomize-layout due to rustc ICE

https://github.com/rust-lang/rust/issues/113941
This commit is contained in:
David Tolnay 2023-07-21 20:22:38 -07:00
parent 1b9b02b21d
commit 36a2e05e9d
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -27,6 +27,7 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
- name: Enable type layout randomization
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
if: false # FIXME https://github.com/rust-lang/rust/issues/113941
- run: cargo run -- expand --manifest-path tests/Cargo.toml > expand.rs
- run: diff tests/lib.expand.rs expand.rs
@ -47,7 +48,7 @@ jobs:
toolchain: ${{matrix.rust}}
- name: Enable type layout randomization
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
if: matrix.rust == 'nightly'
if: matrix.rust == 'nightly' && false # FIXME https://github.com/rust-lang/rust/issues/113941
- run: cargo check --locked
- run: cargo update
- run: cargo check