From: Michael Tremer Date: Thu, 6 Mar 2025 15:07:00 +0000 (+0000) Subject: jenkins: Actually install Lua when we want to build against it X-Git-Tag: 0.9.18~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a6b038ac4cf9ffb0ef3458f8ee08b34e9023cdb5;p=people%2Fms%2Flibloc.git jenkins: Actually install Lua when we want to build against it Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 7a4ba04..b507808 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -465,6 +465,7 @@ def installBuildDepsRedHat(distro, compier) { pkg-config \ ${compiler} \ \ + lua-devel \ openssl-devel \ perl-devel \ python3-devel \ @@ -487,6 +488,7 @@ def installBuildDepsArchLinux(distro, compiler) { pkg-config \ ${compiler} \ \ + lua \ openssl \ perl \ python3 \ @@ -509,6 +511,7 @@ def installBuildDepsDebian(distro, compiler, arch) { pkg-config \ ${compiler} \ \ + liblua5.4-dev \ libperl-dev \ libpython3-dev \ libssl-dev \