Skip to content

Commit

Permalink
[FB] workflow | Downgrade Rust to 1.81.0 on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
surapunoyousei committed Nov 10, 2024
1 parent 6f5b582 commit 9a3e26c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,13 @@ jobs:

- name: setup Rust 🦀
run: |
rustup toolchain install 1.81.0
rustup default 1.81.0
if [[ $GHA_aarch64 == 'true' ]];then
rustup target add aarch64-pc-windows-msvc --toolchain stable
rustup target add aarch64-pc-windows-msvc --toolchain 1.81.0
else
rustup target add x86_64-pc-windows-msvc --toolchain stable
rustup target add x86_64-pc-windows-msvc --toolchain 1.81.0
fi
#? https://github.com/mozilla/sccache#known-caveats
Expand Down

0 comments on commit 9a3e26c

Please sign in to comment.