Skip to content

Commit

Permalink
fix: update Maven version on Kokoro cluster to fix release pipeline (#…
Browse files Browse the repository at this point in the history
…294)

* update Maven version on Kokoro cluster to fix release pipeline

* fix: update Maven version on Kokoro cluster to fix release pipeline
  • Loading branch information
dixuswe authored Oct 4, 2024
1 parent a39c773 commit a8a8cad
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .kokoro/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
# Stop execution when any command fails.
set -e

# update the Maven version to 3.6.3
pushd /usr/local
wget https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.tar.gz
tar -xvzf apache-maven-3.6.3-bin.tar.gz apache-maven-3.6.3
rm -f /usr/local/apache-maven
ln -s /usr/local/apache-maven-3.6.3 /usr/local/apache-maven
rm apache-maven-3.6.3-bin.tar.gz
popd


# Get secrets from keystore and set and environment variables.
setup_environment_secrets() {
export GPG_TTY=$(tty)
Expand Down

0 comments on commit a8a8cad

Please sign in to comment.