Skip to content

Commit

Permalink
Temporarily disable -Zrandomize-layout due to rustc ICE
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 22, 2023
1 parent 2828f4b commit d501c75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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 --workspace
- run: cargo check --examples
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/load.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- name: curl https://static.crates.io/db-dump.tar.gz
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
- run: tar tf db-dump.tar.gz | head -1
Expand Down

0 comments on commit d501c75

Please sign in to comment.