Skip to content

Commit 4f45bc6

Browse files
committed
i should've checked the doc
1 parent 640f616 commit 4f45bc6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/setup-rust-windows/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ runs:
1818
# install here rather than the VS-bundled LLVM whose clang headers have
1919
# AVX intrinsic bugs. The values are hardcoded literals (no attacker-
2020
# controlled input), so the GITHUB_ENV writes are safe.
21-
- name: Install LLVM for bindgen # zizmor: ignore[github-env]
21+
- name: Install LLVM for bindgen
2222
if: inputs.arch != 'arm64'
2323
shell: cmd
24-
run: |
24+
run: | # zizmor: ignore[github-env]
2525
choco install llvm --allow-downgrade --no-progress --version 21.1.0
2626
if not exist "C:\Program Files\LLVM\bin\libclang.dll" exit /b 1
2727
echo LIBCLANG_PATH=C:\Program Files\LLVM\bin>> "%GITHUB_ENV%"
2828
# Chocolatey's LLVM package only ships x64 binaries, which an ARM64-native
2929
# cargo process cannot load. Install the official ARM64 build directly.
30-
- name: Install LLVM for bindgen (ARM64) # zizmor: ignore[github-env]
30+
- name: Install LLVM for bindgen (ARM64)
3131
if: inputs.arch == 'arm64'
3232
shell: pwsh
33-
run: |
33+
run: | # zizmor: ignore[github-env]
3434
$installer = Join-Path $env:RUNNER_TEMP 'LLVM-21.1.0-woa64.exe'
3535
Invoke-WebRequest 'https://github.com/llvm/llvm-project/releases/download/llvmorg-21.1.0/LLVM-21.1.0-woa64.exe' -OutFile $installer
3636
Start-Process -Wait -FilePath $installer -ArgumentList '/S','/D=C:\Program Files\LLVM'

0 commit comments

Comments
 (0)