Skip to content

Commit 0bb57f4

Browse files
committed
[poc_windows_arm_64_compile] Fix Install Rust Toolchain
1 parent b637d4a commit 0bb57f4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/poc-agent-build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131

3232
- name: Install Rust Toolchain
3333
run: |
34+
$env:PATH = "$env:USERPROFILE\.cargo\bin;" + $env:PATH
35+
$env:PATH = "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\ARM64\bin;" + $env:PATH
3436
rustup toolchain install stable-x86_64-pc-windows-msvc
3537
rustup default stable-x86_64-pc-windows-msvc
3638
@@ -65,8 +67,7 @@ jobs:
6567
- name: Cargo Test
6668
run: cargo test --release
6769

68-
69-
- name: Cargo Test
70+
- name: Clean cargo cache
7071
run: |
7172
cargo install cargo-cache
7273
cargo-cache -a clean-unref

0 commit comments

Comments
 (0)