We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed462f8 commit c02ae2cCopy full SHA for c02ae2c
ci/scripts/release.sh
@@ -10,6 +10,12 @@ if [ "${BUILDKITE_SOURCE}" != "schedule" ] && [ "${BUILDKITE_SOURCE}" != "webhoo
10
exit 0
11
fi
12
13
+echo "--- Install java and maven"
14
+yum install -y java-11-openjdk wget
15
+wget https://dlcdn.apache.org/maven/maven-3/3.9.1/binaries/apache-maven-3.9.1-bin.tar.gz && tar -zxvf apache-maven-3.9.1-bin.tar.gz
16
+export PATH="${REPO_ROOT}/apache-maven-3.9.1/bin:$PATH"
17
+mvn -v
18
+
19
echo "--- Install rust"
20
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --no-modify-path --default-toolchain $(cat ./rust-toolchain) -y
21
source "$HOME/.cargo/env"
0 commit comments