Skip to content

Commit

Permalink
Merge pull request #14930 from jdekonin/master
Browse files Browse the repository at this point in the history
Add perl-IPC-Cmd to CentOS6 docker container
  • Loading branch information
keithc-ca committed Nov 14, 2022
2 parents c97bd6c + 1be1e7b commit 93bcb9b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions buildenv/docker/mkdocker.sh
Expand Up @@ -169,6 +169,10 @@ validate_options() {
echo "CentOS version 6 is not supported on $arch" >&2
exit 1
fi
if [ $arch = x86_64 ] ; then
# Certificates are old on CentOS:6 so we can't expect wget to check.
wget_O="wget --progress=dot:mega --no-check-certificate -O"
fi
;;
7)
;;
Expand Down Expand Up @@ -372,6 +376,7 @@ fi
echo " perl-devel \\"
echo " perl-ExtUtils-MakeMaker \\" # required by git
echo " perl-GD \\"
echo " perl-IPC-Cmd \\" # required for openssl v3 compiles
echo " perl-libwww-perl \\"
echo " perl-Time-HiRes \\"
echo " systemtap-devel \\"
Expand Down Expand Up @@ -459,7 +464,9 @@ if [ $arch = x86_64 ] ; then
echo " && $wget_O gettext.tar.gz http://ftp.gnu.org/gnu/gettext/gettext-$gettext_version.tar.gz \\"
echo " && tar -xzf gettext.tar.gz \\"
echo " && cd gettext-$gettext_version \\"
if [ $version != 6 ] ; then
echo " && ./autogen.sh --skip-gnulib \\"
fi
echo " && ./configure --disable-nls \\"
echo " && make \\"
echo " && make install \\"
Expand Down
4 changes: 2 additions & 2 deletions buildenv/jenkins/variables/defaults.yml
Expand Up @@ -297,8 +297,8 @@ x86-64_linux:
8: 'ci.role.build && hw.arch.x86 && sw.tool.docker'
11: 'ci.role.build && hw.arch.x86 && sw.tool.docker'
docker_image:
8: 'eclipseopenj9/jenkins-agent-x86-centos6:16'
11: 'eclipseopenj9/jenkins-agent-x86-centos6:16'
8: 'eclipseopenj9/jenkins-agent-x86-centos6:24'
11: 'eclipseopenj9/jenkins-agent-x86-centos6:24'
extra_configure_options:
all: '--enable-jitserver'
build_env:
Expand Down

0 comments on commit 93bcb9b

Please sign in to comment.