node-yara-rs

git clone git://archive.git.mtrnord.blog/MTRNord/node-yara-rs.git
Log | Files | Refs | README | LICENSE

commit 89cb9de90bf302a0dea9f569a6b30049ac0b5bff
parent c6388caa7bf13213fe621fb8002efd5c0a535167
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun,  8 Oct 2023 00:41:01 +0200

Dont build dynlibs and make sure we also test arm macos again

Diffstat:
M.github/workflows/CI.yml | 2++
MMakefile | 1+
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml @@ -134,6 +134,8 @@ jobs: settings: - host: macos-latest target: x86_64-apple-darwin + - host: macos-latest + target: aarch64-apple-darwin - host: windows-latest target: x86_64-pc-windows-msvc node: diff --git a/Makefile b/Makefile @@ -41,6 +41,7 @@ jansson: clean ./configure \ $(CFGOPTS) \ --enable-static \ + --disable-shared \ --with-pic \ --prefix=$(BASE)/build/jansson;\ cd $(BASE)/deps/jansson-$(JANSSON) && make;\