Enable type layout randomization in CI on nightly

This commit is contained in:
David Tolnay 2023-02-19 09:21:59 -08:00
parent 7aaa03d94a
commit a2d1ed1ccf
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -32,6 +32,9 @@ jobs:
with:
toolchain: ${{matrix.rust}}
components: rust-src
- name: Enable type layout randomization
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
if: matrix.rust == 'nightly'
- name: Enable nightly-only tests
run: echo RUSTFLAGS=${RUSTFLAGS}\ --cfg=thiserror_nightly_testing >> $GITHUB_ENV
if: matrix.rust == 'nightly'