@@ -16,18 +16,14 @@ curl "https://awscli.amazonaws.com/awscli-exe-linux-${ARCH}.zip" -o "awscliv2.zi
16
16
unzip -q awscliv2.zip && ./aws/install && mv /usr/local/bin/aws /bin/aws
17
17
18
18
echo " --- Install lld"
19
- # The lld in the CentOS 7 repository is too old and contains a bug that causes a linker error.
20
- # So we install a newer version here. (17.0.6, latest version at the time of writing)
21
- # It is manually built in the same environent and uploaded to S3.
22
- aws s3 cp s3://rw-ci-deps-dist/llvm-lld-manylinux2014_${ARCH} .tar.gz .
23
- tar -zxvf llvm-lld-manylinux2014_${ARCH} .tar.gz --directory=/usr/local
19
+ dnf install -y lld
24
20
ld.lld --version
25
21
26
22
echo " --- Install dependencies for openssl"
27
- yum install -y perl-core
23
+ dnf install -y perl-core
28
24
29
25
echo " --- Install java and maven"
30
- yum install -y java-11-openjdk java-11-openjdk-devel wget python3 python3-devel cyrus-sasl-devel
26
+ dnf install -y java-11-openjdk java-11-openjdk-devel wget python3 python3-devel cyrus-sasl-devel
31
27
pip3 install toml-cli
32
28
wget https://rw-ci-deps-dist.s3.amazonaws.com/apache-maven-3.9.3-bin.tar.gz && tar -zxvf apache-maven-3.9.3-bin.tar.gz
33
29
export PATH=" ${REPO_ROOT} /apache-maven-3.9.3/bin:$PATH "
@@ -91,7 +87,6 @@ if [[ -n "${BUILDKITE_TAG}" ]]; then
91
87
ls -l
92
88
93
89
echo " --- Install gh cli"
94
- yum install -y dnf
95
90
dnf install -y ' dnf-command(config-manager)'
96
91
dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
97
92
dnf install -y gh
@@ -123,7 +118,3 @@ if [[ -n "${BUILDKITE_TAG}" ]]; then
123
118
tar -czvf risingwave-" ${BUILDKITE_TAG} " -${ARCH} -unknown-linux-all-in-one.tar.gz risingwave libs
124
119
gh release upload " ${BUILDKITE_TAG} " risingwave-" ${BUILDKITE_TAG} " -${ARCH} -unknown-linux-all-in-one.tar.gz
125
120
fi
126
-
127
-
128
-
129
-
0 commit comments