Skip to content

Commit 687aaf1

Browse files
jiec-msftPavelSafronovbaileympearson
authored
feat(NODE-7338): support building win32-arm64 prebuild (#295)
Co-authored-by: Pavel Safronov <[email protected]> Co-authored-by: Bailey Pearson <[email protected]> Co-authored-by: Pavel Safronov <[email protected]>
1 parent c0e01ac commit 687aaf1

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/scripts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ async function buildBindings(args, pkg) {
9696
await fs.copyFile(resolveRoot('prebuilds', armTar), resolveRoot('prebuilds', x64Tar));
9797
}
9898

99-
await run('node', ['--print', `require('.')`], { cwd: resolveRoot() })
99+
await run('node', ['--print', `require('.')`], { cwd: resolveRoot() });
100100
}
101101

102102
async function main() {

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
host_builds:
1616
strategy:
1717
matrix:
18-
os: [macos-latest, windows-2022]
18+
os: [macos-latest, windows-2022, windows-11-arm]
1919
fail-fast: false
2020
runs-on: ${{ matrix.os }}
2121
steps:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ Below are the platforms that are available as prebuilds on each github release.
7777
| MacOS universal binary | x64 | Tier 1 |
7878
| MacOS universal binary | arm64 | Tier 1 |
7979
| Windows | x64 | Tier 1 |
80+
| Windows | arm64 | Experimental |
8081

8182
### Release Integrity
8283

etc/README.hbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ Below are the platforms that are available as prebuilds on each github release.
7777
| MacOS universal binary | x64 | Tier 1 |
7878
| MacOS universal binary | arm64 | Tier 1 |
7979
| Windows | x64 | Tier 1 |
80+
| Windows | arm64 | Experimental |
8081

8182
### Release Integrity
8283

0 commit comments

Comments
 (0)