From: Michael Tremer Date: Mon, 18 May 2026 15:08:58 +0000 (+0000) Subject: jenkins: Explicitely install libuv development files X-Git-Tag: 0.0.1~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83399b428bc16c164321274cbaba0def22f27b7c;p=zone-sync.git jenkins: Explicitely install libuv development files Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 6fb5f82..bd8b4b7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -202,7 +202,8 @@ def installBuildDepsRedHat(distro, compier) { pkg-config \ ${compiler} \ \ - bind-devel + bind-devel \ + libuv-devel """ } @@ -242,6 +243,7 @@ def installBuildDepsDebian(distro, compiler, arch) { pkg-config \ ${compiler} \ \ - bind9-dev + bind9-dev \ + libuv1-dev """ }