commit 693f52a41f4595ba92dfd415f95922e9ac478a8c
parent 011d75e894be2c2c1cc2994497aa8f4a83f427f7
Author: MTRNord <mtrnord1@gmail.com>
Date: Sat, 30 Sep 2023 21:25:01 +0200
Use nix napi
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
@@ -57,11 +57,12 @@ jobs:
make yara
yarn build --target aarch64-apple-darwin
strip -x *.node
+ # This is an nixos env so its all a little special
- host: arm64
target: aarch64-unknown-linux-gnu
build: |-
set -e &&
- yarn build --target aarch64-unknown-linux-gnu &&
+ napi build --platform --release --target aarch64-unknown-linux-gnu &&
aarch64-unknown-linux-gnu-strip *.node
name: stable - ${{ matrix.settings.target }} - node@18
runs-on: ${{ matrix.settings.host }}