Skip to content

Commit

Permalink
0.2.1-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
victorteokw committed Feb 2, 2024
1 parent 0849744 commit 38f7e17
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,11 @@ jobs:
- host: ubuntu-latest
target: x86_64-unknown-linux-musl
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
setup: |
sudo apt-get update
sudo apt-get install --yes --upgrade pkg-config build-essential cmake protobuf-compiler libssl-dev glibc-source musl-tools perl
export OPENSSL_LIB_DIR="/usr/lib/x86_64-linux-musl";
export OPENSSL_INCLUDE="/usr/include/openssl";
build: yarn build
build: |
apk add pkgconfig openssl-dev;
set -e &&
yarn build &&
strip *.node
- host: macos-latest
target: aarch64-apple-darwin
build: yarn build --target aarch64-apple-darwin
Expand All @@ -77,13 +76,17 @@ jobs:
target: aarch64-linux-android
setup: |
sudo apt-get update
sudo apt-get install --yes --upgrade build-essential cmake protobuf-compiler libssl-dev glibc-source musl-tools perl
sudo apt-get install --yes --upgrade pkg-config build-essential cmake protobuf-compiler libssl-dev glibc-source musl-tools perl
export OPENSSL_LIB_DIR="/usr/lib/aarch64-linux-android"
export OPENSSL_INCLUDE="/usr/include/openssl"
build: yarn build --target aarch64-linux-android
- host: ubuntu-latest
target: armv7-linux-androideabi
setup: |
sudo apt-get update
sudo apt-get install --yes --upgrade build-essential cmake protobuf-compiler libssl-dev glibc-source musl-tools perl
sudo apt-get install --yes --upgrade pkg-config build-essential cmake protobuf-compiler libssl-dev glibc-source musl-tools perl
export OPENSSL_LIB_DIR="/usr/lib/armv7-linux-androideabi"
export OPENSSL_INCLUDE="/usr/include/openssl"
build: yarn build --target armv7-linux-androideabi
- host: ubuntu-latest
target: aarch64-unknown-linux-musl
Expand Down

0 comments on commit 38f7e17

Please sign in to comment.