Skip to content
Closed
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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ jobs:
rust: stable
target: x86_64-pc-windows-msvc
features: full-async
- task: bindings
os: windows-11-arm
rust: stable
target: aarch64-pc-windows-msvc
features: full-async
- task: test
os: windows-latest
rust: stable
Expand Down
1 change: 1 addition & 0 deletions sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ fn download_wasi_sdk() -> PathBuf {
("macos", "x86") | ("macos", "x86_64") => "x86_64-macos",
("macos", "aarch64") => "arm64-macos",
("windows", "x86") | ("windows", "x86_64") => "x86_64-windows",
("windows", "aarch64") => "arm64-windows",
other => panic!("Unsupported platform tuple {:?}", other),
};

Expand Down
Loading