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
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jobs:
target: aarch64-apple-darwin
cross: false
run_tests: false
- build: windows-arm64
os: windows-11-arm
rust: stable
target: aarch64-pc-windows-msvc
cross: false
run_tests: true
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -217,6 +223,10 @@ jobs:
package: darwin-arm64
os: darwin
cpu: arm64
- target: aarch64-pc-windows-msvc
package: windows-arm64
os: win32
cpu: arm64
steps:
- name: Clone
uses: actions/checkout@v2
Expand Down Expand Up @@ -382,7 +392,7 @@ jobs:

- name: Publish binary NPM packages
run: |
for pkg in windows-x64 linux-x64 linux-arm64 darwin-x64 darwin-arm64; do
for pkg in windows-x64 windows-arm64 linux-x64 linux-arm64 darwin-x64 darwin-arm64; do
echo "Publishing @toolproof/$pkg..."
if npm view "@toolproof/$pkg@$GIT_VERSION" version >/dev/null 2>&1; then
echo " Already published, skipping."
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
rust: beta
target: x86_64-pc-windows-msvc
cross: false
- build: windows-arm64
os: windows-11-arm
rust: beta
target: aarch64-pc-windows-msvc
cross: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -72,8 +77,6 @@ jobs:
working-directory: ./toolproof
run: cargo test

- uses: browser-actions/setup-chrome@v1

- name: Test CLI
working-directory: ./toolproof
# toolproof tests itself when run
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

## Unreleased

* Add support for ARM64 Windows

## v0.17.2 (April 2, 2026)

* Ensure only one hosting server exists at a time within a test context. A server hosted in a previous step will now be closed when starting another.
Expand Down
3 changes: 2 additions & 1 deletion wrappers/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"@toolproof/linux-arm64": "0.0.0",
"@toolproof/darwin-x64": "0.0.0",
"@toolproof/darwin-arm64": "0.0.0",
"@toolproof/windows-x64": "0.0.0"
"@toolproof/windows-x64": "0.0.0",
"@toolproof/windows-arm64": "0.0.0"
},
"keywords": [
"toolproof",
Expand Down
Loading