Skip to content

Commit

Permalink
chore: build napi binaries from package folder
Browse files Browse the repository at this point in the history
  • Loading branch information
dav1do committed Nov 14, 2024
1 parent 14ce7c0 commit 852676a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
settings:
- host: macos-latest
target: x86_64-apple-darwin
build: pnpm lint && pnpm build --target x86_64-apple-darwin
build: cd ./packages/flight-sql-client pnpm build --target x86_64-apple-darwin
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
build: pnpm lint && pnpm build --target x86_64-unknown-linux-gnu
build: cd ./packages/flight-sql-client && pnpm build --target x86_64-unknown-linux-gnu
- host: macos-latest
target: aarch64-apple-darwin
build: pnpm lint && pnpm build --target aarch64-apple-darwin
build: cd ./packages/flight-sql-client pnpm build --target aarch64-apple-darwin
name: stable - ${{ matrix.settings.target }} - node@20
runs-on: ${{ matrix.settings.host }}
steps:
Expand Down

0 comments on commit 852676a

Please sign in to comment.