Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ci/fix-buildhost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading