Skip to content

Commit

Permalink
Update maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
anup-kodlekere authored Oct 16, 2024
1 parent 3831b1d commit 1dddd2e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,11 @@ jobs:
echo $JAVA_HOME
echo $MAVEN_HOME
if [ `arch` == 'ppc64le' ]; then sudo apt-get install maven -y; fi;
if [ `arch` == 'ppc64le' ]; then
wget https://dlcdn.apache.org/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz -P /tmp
sudo ln -s /opt/apache-maven-3.9.6 /opt/maven
export MAVEN_HOME=/opt/maven
cp /opt/maven/bin/mvn /usr/local/bin/mvn
mvn --version
fi
mvn -B --file pom.xml -Dmaven.javadoc.skip=true install

0 comments on commit 1dddd2e

Please sign in to comment.