Skip to content

Commit

Permalink
Install rust on Windows machine?
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-spiess committed Nov 26, 2024
1 parent f1c89f8 commit 8f0043f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
# target: x86_64-pc-windows-msvc
- os: Windows-ARM
target: arm64-pc-windows-msvc/* ./npm/win32-arm64-msvc/
install-windows-arm: true
# # macOS
# - os: macos-latest
# target: x86_64-apple-darwin
Expand Down Expand Up @@ -119,6 +120,11 @@ jobs:
run: |
rustup default stable
- name: Install Rust (Windows ARM, Stable)
if: ${{ matrix.install-windows-arm }}
run: |
& ([scriptblock]::Create((New-Object System.Net.WebClient).DownloadString('https://gist.github.com/fnichol/699d3c2930649a9932f71bab8a315b31/raw/rustup-init.ps1')))
- name: Setup rust target
run: rustup target add ${{ matrix.target }}

Expand Down

0 comments on commit 8f0043f

Please sign in to comment.