Skip to content

Commit 859f5d1

Browse files
authored
Switch to static OpenSSL on Windows - Updates (#76)
* Build windows-14_arm64. * Skip tests on arm64.
1 parent 75a09cf commit 859f5d1

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.circleci/config.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff 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

356364
workflows:
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

0 commit comments

Comments
 (0)