Skip to content

Commit 3c0c8a0

Browse files
committed
tools: test --shared-merve in test-shared workflow
1 parent 7de56bd commit 3c0c8a0

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/test-shared.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ on:
2323
- deps/icu-small/**
2424
- deps/icu-tmp/**
2525
- deps/llhttp/**
26+
- deps/merve/**
2627
- deps/nbytes/**
2728
- deps/nghttp2/**
2829
- deps/ngtcp2/**
@@ -72,6 +73,7 @@ on:
7273
- deps/icu-small/**
7374
- deps/icu-tmp/**
7475
- deps/llhttp/**
76+
- deps/merve/**
7577
- deps/nbytes/**
7678
- deps/nghttp2/**
7779
- deps/ngtcp2/**

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,6 +1241,7 @@ ifeq ($(SKIP_SHARED_DEPS), 1)
12411241
$(RM) -r $(TARNAME)/deps/icu-tmp
12421242
$(RM) -r $(TARNAME)/deps/LIEF
12431243
$(RM) -r $(TARNAME)/deps/llhttp
1244+
$(RM) -r $(TARNAME)/deps/merve
12441245
$(RM) -r $(TARNAME)/deps/nbytes
12451246
$(RM) -r $(TARNAME)/deps/nghttp2
12461247
$(RM) -r $(TARNAME)/deps/ngtcp2

node.gyp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'node_shared_http_parser%': 'false',
2020
'node_shared_libuv%': 'false',
2121
'node_shared_lief%': 'false',
22+
'node_shared_merve%': 'false',
2223
'node_shared_nbytes%': 'false',
2324
'node_shared_nghttp2%': 'false',
2425
'node_shared_openssl%': 'false',

tools/nix/sharedLibDeps.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
cares = pkgs.c-ares;
2323
hdr-histogram = pkgs.hdrhistogram_c;
2424
http-parser = pkgs.llhttp;
25+
merve = pkgs.callPackage (builtins.fetchurl {
26+
url = "https://github.com/NixOS/nixpkgs/raw/469b8e35e54d2880d73337c5ef2f1416b9b1dd43/pkgs/by-name/me/merve/package.nix";
27+
sha256 = "0r2fmip48hcy4za6xfaml627x9m4218g6vlk5fiajmypfvxybzfy";
28+
}) { };
2529
nghttp2 = pkgs.nghttp2.overrideAttrs {
2630
patches = [
2731
(pkgs.fetchpatch2 {

0 commit comments

Comments
 (0)