Skip to content

Commit 219be24

Browse files
committed
don't use vendored openSSL on x86_64-linux-gnu
1 parent cd648e8 commit 219be24

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.github/workflows/node-js-packaging.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ jobs:
4242
target: x86_64-apple-darwin
4343
build: yarn build --target x86_64-apple-darwin --features openssl-vendored
4444
- host: windows-latest
45-
build: yarn build --target x86_64-pc-windows-msvc --features openssl-vendored
45+
build: yarn build --target x86_64-pc-windows-msvc
4646
target: x86_64-pc-windows-msvc
4747
- host: windows-latest
4848
build: yarn build --target i686-pc-windows-msvc
4949
target: i686-pc-windows-msvc
5050
- host: ubuntu-latest
5151
target: x86_64-unknown-linux-gnu
52-
build: yarn build --target x86_64-unknown-linux-gnu --use-napi-cross --features openssl-vendored
52+
build: yarn build --target x86_64-unknown-linux-gnu --use-napi-cross
5353
- host: ubuntu-latest
5454
target: x86_64-unknown-linux-musl
5555
build: yarn build --target x86_64-unknown-linux-musl -x --features openssl-vendored
@@ -297,15 +297,14 @@ jobs:
297297
cache: yarn
298298
- name: Install dependencies
299299
run: yarn install
300-
- name: create npm dirs
300+
- name: Create npm dirs
301301
working-directory: bindings/node
302302
run: yarn napi create-npm-dirs
303303
- name: Download all artifacts
304304
uses: actions/download-artifact@v4
305305
with:
306306
path: bindings/node/artifacts
307307
- name: Move artifacts
308-
working-directory: bindings/node
309308
run: yarn artifacts
310309
- name: List packages
311310
run: ls -R ./npm

bindings/node/.yarnrc.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

bindings/node/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"build": "napi build --platform --release",
3838
"build:debug": "napi build --platform",
3939
"prepublishOnly": "napi prepublish --no-gh-release",
40+
"lint": "oxlint",
4041
"test": "ava"
4142
},
4243
"packageManager": "[email protected]",

cspell.config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,4 @@ ignorePaths:
121121
- cpp-linter/tests/**/*.diff
122122
- cpp-linter/tests/**/.clang-tidy
123123
- .vscode/extensions.json
124+
- .yarn/releases/*

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
"doc": "docs"
88
},
99
"scripts": {
10-
"build": "cd bindings/node && napi build --platform --release",
11-
"build:debug": "cd bindings/node && napi build --platform",
12-
"test": "cd bindings/node && ava",
13-
"lint": "cd bindings/node && yarn run oxlint"
10+
"artifacts": "cd bindings/node && yarn artifacts",
11+
"build": "cd bindings/node && yarn build",
12+
"build:debug": "cd bindings/node && yarn build:debug",
13+
"test": "cd bindings/node && yarn test",
14+
"lint": "cd bindings/node && yarn lint"
1415
},
1516
"repository": {
1617
"type": "git",

0 commit comments

Comments
 (0)