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 cd66cbb commit 0849744
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,31 @@ jobs:
setup: |
sudo apt-get update
sudo apt-get install --yes build-essential
sudo apt-get install pkg-config libssl-dev -y;
export OPENSSL_LIB_DIR="/usr/lib/x86_64-linux-gnu";
export OPENSSL_INCLUDE="/usr/include/openssl";
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
build: yarn build --target x86_64-unknown-linux-gnu
- 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 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/x86_64-linux-musl";
export OPENSSL_INCLUDE="/usr/include/openssl";
build: yarn build
- host: macos-latest
target: aarch64-apple-darwin
build: yarn build --target aarch64-apple-darwin
- host: ubuntu-latest
target: aarch64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
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/aarch64-linux-gnu"
export OPENSSL_INCLUDE="/usr/include/openssl"
build: yarn build --target aarch64-unknown-linux-gnu
- host: ubuntu-latest
target: armv7-unknown-linux-gnueabihf
Expand Down

0 comments on commit 0849744

Please sign in to comment.