Skip to content

Commit

Permalink
Point
Browse files Browse the repository at this point in the history
  • Loading branch information
andmev committed Sep 30, 2024
1 parent 1a60b4d commit 88e66b5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,15 @@ jobs:
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
setup: cargo add openssl@=0.10
build: yarn build --target x86_64-unknown-linux-gnu
setup: |
sudo apt-get update
sudo apt-get install -y pkg-config libx11-dev libssl-dev
cargo add openssl@=0.10
build: |-
set -e &&
rustup target add x86_64-unknown-linux-gnu &&
yarn build --target x86_64-unknown-linux-gnu &&
llvm-strip -x *.node
- host: ubuntu-latest
target: x86_64-unknown-linux-musl
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
Expand Down

0 comments on commit 88e66b5

Please sign in to comment.