Enable -Zrandomize-layout on nightly toolchain

This commit is contained in:
David Tolnay 2023-02-12 12:25:03 -08:00
parent 785525df07
commit f4baa51409
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 7 additions and 0 deletions

View File

@ -106,5 +106,12 @@ runs:
fi
shell: bash
- run: |
: enable randomized type layout
if rustc +${{steps.parse.outputs.toolchain}} --version --verbose | grep -q '^release: .*nightly'; then
echo RUSTFLAGS="-Zrandomize-layout ${RUSTFLAGS}" >> $GITHUB_ENV
fi
shell: bash
- run: rustc +${{steps.parse.outputs.toolchain}} --version --verbose
shell: bash