Skip to content

Commit 6b061b9

Browse files
committed
Add Node build artifact to build-deps.yml
1 parent cd78c1a commit 6b061b9

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/build-deps.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,14 @@ jobs:
138138
Set-PSDebug -Trace 1
139139
git clone https://github.com/Windows-on-ARM-Experiments/node.git --single-branch -b fix-arm64-compilation --depth 1
140140
cd node
141-
.\vcbuild openssl-no-asm arm64
141+
.\vcbuild.bat arm64 package
142+
143+
- name: 'Upload Artifact'
144+
uses: actions/upload-artifact@v3
145+
with:
146+
name: node-arm64.zip
147+
path: node/out/Release/node-v20.0.0-win-arm64.zip
148+
retention-days: 1
142149

143150
emscripten_build:
144151
if: ${{ inputs.emscripten_build }} || ${{ inputs.emsdk_build }}
@@ -178,13 +185,18 @@ jobs:
178185
- uses: actions/download-artifact@v3
179186
with:
180187
name: llvm-arm64.zip
188+
189+
- uses: actions/download-artifact@v3
190+
with:
191+
name: node-arm64.zip
181192

182193
- name: Build emsdk arm64
183194
run: |
184195
ls
185196
New-Item -ItemType Directory -Force -Path emsdk/emscripten
186197
Expand-Archive -LiteralPath emscripten_package.zip -DestinationPath emsdk\emscripten
187198
Expand-Archive -LiteralPath llvm-arm64.zip -DestinationPath emsdk
199+
Expand-Archive -LiteralPath node-arm64.zip -DestinationPath emsdk\node
188200
cd emsdk
189201
Compress-Archive -Path * -DestinationPath emsdk-arm64
190202

0 commit comments

Comments
 (0)