Skip to content

Commit 8cbf10f

Browse files
committed
fix: fix openssl issue in nodejs 16
1 parent f719ca7 commit 8cbf10f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
target: x86_64-unknown-linux-gnu
5151
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
5252
build: |-
53-
set -e &&
53+
set -e && apt install pkg-config libssl-dev -y &&
5454
yarn build --target x86_64-unknown-linux-gnu &&
5555
strip *.node
5656
- host: ubuntu-latest

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ napi = { version = "2.10.0", features = ["napi3"] }
1111
napi-derive = "2.9.1"
1212
libc = "0.2.123"
1313
nix = "0.23"
14-
uv-sys = "0.1"
14+
uv-sys = "0.1.1"
1515

1616
[build-dependencies]
1717
napi-build = "1.2.1"

0 commit comments

Comments
 (0)