Skip to content

Commit

Permalink
Upgrade maven
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Oct 23, 2024
1 parent b5b17ab commit e15b2b7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build_ft_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,12 @@ jobs:
CIBW_FREE_THREADED_SUPPORT: true
CIBW_ARCHS_LINUX: "aarch64"
CIBW_BUILD: "cp313t-*"
CIBW_BEFORE_ALL_LINUX: yum install -y java-11-openjdk-devel maven
CIBW_BEFORE_ALL_LINUX: >
yum install -y java-11-openjdk-devel &&
yum install -y wget &&
wget https://www.apache.org/dist/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz -P /tmp &&
tar xf /tmp/apache-maven-3.8.8-bin.tar.gz -C /opt &&
ln -s /opt/apache-maven-3.8.8/bin/mvn /usr/bin/mvn
CIBW_ENVIRONMENT: JAVA_HOME=/etc/alternatives/jre_11_openjdk
with:
package-dir: .
Expand Down

0 comments on commit e15b2b7

Please sign in to comment.