mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-10 02:22:57 +01:00
Install essential packages in UBI
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
This commit is contained in:
parent
690bb34f74
commit
9441b21608
1 changed files with 11 additions and 1 deletions
|
|
@ -78,7 +78,17 @@ function prepare_debian_environment() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function prepare_ubi_environment() {
|
function prepare_ubi_environment() {
|
||||||
echo "UBI preparation scripts"
|
yum update -y
|
||||||
|
|
||||||
|
yum install -by --nodocs \
|
||||||
|
autoconf cmake gcc gcc-c++ make patch perl bzip2 \
|
||||||
|
libedit ncurses uuid libarchive curl-devel \
|
||||||
|
libicu-devel libffi-devel libuuid-devel openssl-devel \
|
||||||
|
ncurses-devel pcre2-devel zlib-devel libstdc++-static \
|
||||||
|
libevent-devel redhat-lsb-core procps-ng
|
||||||
|
|
||||||
|
yum autoremove -y
|
||||||
|
yum clean -y all
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ $1 =~ debian ]]; then
|
if [[ $1 =~ debian ]]; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue