Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,11 @@ jobs:

### Windows
```powershell
# Download binary directly
# x86_64 (Intel/AMD)
Invoke-WebRequest -Uri "https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/uvm-x86_64-pc-windows-msvc.exe" -OutFile "uvm.exe"

# ARM64 (Apple Silicon Windows, Surface Pro X, etc.)
Invoke-WebRequest -Uri "https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/uvm-aarch64-pc-windows-msvc.exe" -OutFile "uvm.exe"
```
draft: true
prerelease: ${{ steps.extract-version.outputs.is-prerelease == 'true' }}
Expand All @@ -143,6 +146,9 @@ jobs:
- target: x86_64-pc-windows-msvc
os: windows-latest
use-zigbuild: false
- target: aarch64-pc-windows-msvc
os: windows-latest
use-zigbuild: false

# Linux GNU target (native)
- target: x86_64-unknown-linux-gnu
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- target: x86_64-pc-windows-msvc
os: windows-latest
use-zigbuild: false
- target: aarch64-pc-windows-msvc
os: windows-latest
use-zigbuild: false
- target: x86_64-apple-darwin
os: macos-latest
use-zigbuild: false
Expand Down Expand Up @@ -77,11 +80,11 @@ jobs:
shell: bash

- name: Run tests
# Skip tests for cross-compiled targets
if: matrix.use-zigbuild == false
# Skip tests for cross-compiled targets and Windows ARM64 (cross-compiled)
if: matrix.use-zigbuild == false && matrix.target != 'aarch64-pc-windows-msvc'
run: cargo test --target ${{ matrix.target }} --verbose --release

- name: Run UVM help
# Skip help test for cross-compiled targets
if: matrix.use-zigbuild == false
# Skip help test for cross-compiled targets and Windows ARM64 (cross-compiled)
if: matrix.use-zigbuild == false && matrix.target != 'aarch64-pc-windows-msvc'
run: cargo run --target ${{ matrix.target }} --bin uvm --release -- --help
Loading