From 21cbd0d1e8c0ed3bebfa35d2a668a5b3d78cabba Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Thu, 21 May 2026 16:03:21 -0500 Subject: [PATCH] Added install of openssl development packages for redhat-based platforms to fix-buildhost.sh This is needed because we share build hosts with ent-13750 pull request builds that remove these packages due to migrating back to vendored openssl there. Ticket: ENT-13750 Changelog: none --- ci/fix-buildhost.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ci/fix-buildhost.sh b/ci/fix-buildhost.sh index 7c1671ae3..571de5632 100755 --- a/ci/fix-buildhost.sh +++ b/ci/fix-buildhost.sh @@ -10,3 +10,11 @@ if [ -f /etc/profile ]; then # e.g. ent-14014: custom build of ssh needed for build-artifacts-cache needed and /etc/profile has PATH=/opt/craig/bin:$PATH . /etc/profile fi + +# while ENT-13750 is in progress we need to ensure that OTHER builds include openssl devel packages on redhat-based platforms +if command -v zypper >/dev/null 2>/dev/null; then + sudo zypper install -y libopenssl-devel || true +fi +if command -v yum >/dev/null 2>/dev/null; then + sudo yum install -y openssl-devel || true +fi