diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-09-24 17:41:18 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-09-24 18:48:48 -0700 |
commit | f0a7b6e7c6bf97b22f3e5f1d600717ac7ba4162f (patch) | |
tree | eb9f1d4f18495e8e76c3343fd80a00f693cfd300 /ci/run.ps1 | |
parent | 6ca732991de8a36ffbc7764b23327595f438a339 (diff) | |
download | meson-f0a7b6e7c6bf97b22f3e5f1d600717ac7ba4162f.zip meson-f0a7b6e7c6bf97b22f3e5f1d600717ac7ba4162f.tar.gz meson-f0a7b6e7c6bf97b22f3e5f1d600717ac7ba4162f.tar.bz2 |
pipelines: add 32bit clippy to 32bit rust
Diffstat (limited to 'ci/run.ps1')
-rw-r--r-- | ci/run.ps1 | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,6 +13,10 @@ if ($env:arch -eq 'x64') { } elseif ($env:arch -eq 'x86') { # Switch to the x86 Rust toolchain rustup default stable-i686-pc-windows-msvc + + # Also install clippy + rustup component add clippy + # Rust puts its shared stdlib in a secret place, but it is needed to run tests. $env:Path += ";$HOME/.rustup/toolchains/stable-i686-pc-windows-msvc/bin" # Need 32-bit Python for tests that need the Python dependency |