File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments