File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 22
33set -x -e -o pipefail
44SOURCENAME=` echo ${CI_COMMIT_REF_NAME} | cut -d ' -' -f 1`
5+ ZSTDREQ=zstd
56
67if [ " $1 " = " centos8" ]; then
78 yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
@@ -19,6 +20,7 @@ if [ "$1" = "centos8" ]; then
1920
2021 wget -N https://archives.fedoraproject.org/pub/archive/epel/8.1/Everything/x86_64/Packages/z/zstd-1.4.4-1.el8.x86_64.rpm && rpm -i zstd-1.4.4-1.el8.x86_64.rpm
2122
23+ ZSTDREQ=
2224fi
2325
2426if [ " $1 " = " centos_7" ]; then
@@ -30,7 +32,7 @@ if [ "$1" = "centos_6" ]; then
3032 yum install -y epel-rpm-macros
3133fi
3234
33- yum install -y xz zstd gzip bzip2 lzop lz4
35+ yum install -y xz ${ZSTDREQ} gzip bzip2 lzop lz4 diffutils
3436
3537yum install -y built-packages/$1 /libwandio1-${SOURCENAME} -* .rpm
3638yum install -y built-packages/$1 /libwandio1-devel-${SOURCENAME} -* .rpm
Original file line number Diff line number Diff line change 22
33set -x -e -o pipefail
44
5+ export DEBIAN_FRONTEND=noninteractive
6+
57apt-get update
68
79apt-get install -y curl apt-transport-https \
You can’t perform that action at this time.
0 commit comments