Skip to content

Commit d501c75

Browse files
committed
Temporarily disable -Zrandomize-layout due to rustc ICE
rust-lang/rust#113941
1 parent 2828f4b commit d501c75

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
toolchain: ${{matrix.rust}}
3434
- name: Enable type layout randomization
3535
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
36-
if: matrix.rust == 'nightly'
36+
if: matrix.rust == 'nightly' && false # FIXME https://github.com/rust-lang/rust/issues/113941
3737
- run: cargo check --workspace
3838
- run: cargo check --examples
3939
env:

.github/workflows/load.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- uses: dtolnay/rust-toolchain@nightly
2828
- name: Enable type layout randomization
2929
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
30+
if: false # FIXME https://github.com/rust-lang/rust/issues/113941
3031
- name: curl https://static.crates.io/db-dump.tar.gz
3132
run: curl https://static.crates.io/db-dump.tar.gz --user-agent github.com/dtolnay/db-dump --location --remote-name --silent --show-error --fail --retry 2
3233
- run: tar tf db-dump.tar.gz | head -1

0 commit comments

Comments
 (0)