File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,15 @@ aliases:
195
195
name : Install
196
196
command : npm install --build-from-source
197
197
- 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
200
207
- run : *publish-command-windows
201
208
- store_artifacts :
202
209
path : c:\\project\\lib\\binding
@@ -352,6 +359,7 @@ jobs:
352
359
PUBLISH : true
353
360
ELECTRON_VERSION : " 11.2.3"
354
361
BUILD_ARM64 : true
362
+ SKIP_TEST : true # We can build for arm64, but can't run arm64.
355
363
356
364
workflows :
357
365
version : 2
@@ -377,3 +385,4 @@ workflows:
377
385
- build-macos-electron-6
378
386
- windows-14_x86
379
387
- windows-14_x64
388
+ - windows-14_arm64
You can’t perform that action at this time.
0 commit comments