File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,15 @@ aliases:
195195 name : Install
196196 command : npm install --build-from-source
197197 - run : *build-command-windows
198- - run : npm run test
199- - run : ./node_modules/.bin/electron-mocha --timeout 480000
198+ - run :
199+ name : Test
200+ shell : bash.exe
201+ command : |
202+ export PATH=/c/nodejs:$PATH
203+ if [[ "${SKIP_TEST}" != "true" ]]; then
204+ npm run test
205+ ./node_modules/.bin/electron-mocha --timeout 480000
206+ fi
200207 - run : *publish-command-windows
201208 - store_artifacts :
202209 path : c:\\project\\lib\\binding
@@ -352,6 +359,7 @@ jobs:
352359 PUBLISH : true
353360 ELECTRON_VERSION : " 11.2.3"
354361 BUILD_ARM64 : true
362+ SKIP_TEST : true # We can build for arm64, but can't run arm64.
355363
356364workflows :
357365 version : 2
@@ -377,3 +385,4 @@ workflows:
377385 - build-macos-electron-6
378386 - windows-14_x86
379387 - windows-14_x64
388+ - windows-14_arm64
You can’t perform that action at this time.
0 commit comments