From 41b23f2dbcf9ed97a3a805ae08f4105e9c7b552b Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 21 Jul 2023 20:22:43 -0700 Subject: [PATCH] Temporarily disable -Zrandomize-layout due to rustc ICE https://github.com/rust-lang/rust/issues/113941 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b56868e..0ce5baa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: components: rust-src - 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 - name: Enable nightly-only tests run: echo RUSTFLAGS=${RUSTFLAGS}\ --cfg=thiserror_nightly_testing >> $GITHUB_ENV if: matrix.rust == 'nightly'