Skip to content

Commit 78176f4

Browse files
Merge pull request #2264 from craigcomstock/ent-13750-2/master
Added install of openssl development packages for redhat-based platforms to fix-buildhost.sh
2 parents 4a441f9 + 21cbd0d commit 78176f4

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

ci/fix-buildhost.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,11 @@ if [ -f /etc/profile ]; then
1010
# e.g. ent-14014: custom build of ssh needed for build-artifacts-cache needed and /etc/profile has PATH=/opt/craig/bin:$PATH
1111
. /etc/profile
1212
fi
13+
14+
# while ENT-13750 is in progress we need to ensure that OTHER builds include openssl devel packages on redhat-based platforms
15+
if command -v zypper >/dev/null 2>/dev/null; then
16+
sudo zypper install -y libopenssl-devel || true
17+
fi
18+
if command -v yum >/dev/null 2>/dev/null; then
19+
sudo yum install -y openssl-devel || true
20+
fi

0 commit comments

Comments
 (0)