From a6b038ac4cf9ffb0ef3458f8ee08b34e9023cdb5 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 6 Mar 2025 15:07:00 +0000 Subject: [PATCH] jenkins: Actually install Lua when we want to build against it Signed-off-by: Michael Tremer --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) 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 \ -- 2.47.3