Skip to content

Commit

Permalink
fix(ci): install rsync for release & docker env (#16462)
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <[email protected]>
  • Loading branch information
BugenZhao authored Apr 24, 2024
1 parent ce3b2e4 commit 605bf0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ci/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ echo "--- Install lld"
dnf install -y lld
ld.lld --version

echo "--- Install dependencies for openssl"
dnf install -y perl-core
echo "--- Install dependencies"
dnf install -y perl-core wget python3 python3-devel cyrus-sasl-devel rsync

echo "--- Install java and maven"
dnf install -y java-11-openjdk java-11-openjdk-devel wget python3 python3-devel cyrus-sasl-devel
dnf install -y java-11-openjdk java-11-openjdk-devel
pip3 install toml-cli
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
export PATH="${REPO_ROOT}/apache-maven-3.9.3/bin:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ENV PYO3_PYTHON=python3.12

FROM base AS rust-base

RUN apt-get update && apt-get -y install make cmake protobuf-compiler curl bash lld unzip
RUN apt-get update && apt-get -y install make cmake protobuf-compiler curl bash lld unzip rsync

# Install Node.js as dependency for building the dashboard.
# Bump version together with `dashboard/.node-version`.
Expand Down

0 comments on commit 605bf0f

Please sign in to comment.