From 543e1237d600949398a7c2e301722ce63cabbd95 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 22 Jul 2023 18:37:59 -0700 Subject: [PATCH] Revert "Temporarily disable -Zrandomize-layout due to rustc ICE" Fixed in nightly-2023-07-23. This reverts commit 41b23f2dbcf9ed97a3a805ae08f4105e9c7b552b. --- .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 0ce5baa..b56868e 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' && false # FIXME https://github.com/rust-lang/rust/issues/113941 + if: matrix.rust == 'nightly' - name: Enable nightly-only tests run: echo RUSTFLAGS=${RUSTFLAGS}\ --cfg=thiserror_nightly_testing >> $GITHUB_ENV if: matrix.rust == 'nightly'