From 38a222840999db398d78f7991160cf000a2a25be Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 25 Jan 2025 18:49:48 -0800 Subject: [PATCH] Fix -Zrandomize-layout setting in Windows jobs This didn't take effect when run by the default pwsh shell. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec730eb..8ac2e71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,7 @@ jobs: - name: Enable type layout randomization run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV if: matrix.rust == 'nightly' + shell: bash - name: Ignore Windows linker warning run: echo RUSTFLAGS=${RUSTFLAGS}\ -Alinker_messages >> $GITHUB_ENV if: matrix.rust == 'nightly-x86_64-pc-windows-gnu'