slfan1989 opened a new issue, #1407: URL: https://github.com/apache/auron/issues/1407
## Description This Issue fixes the issue where Docker builds fail when running auron-build.sh in a `CentOS 7` environment. When executing the following command: ``` ./auron-build.sh --docker true --clean true --skiptests true --release \ --sparkver 3.5 --scalaver 2.12 --celeborn 0.5 --uniffle 0.9 --paimon 1.2 ``` The build process stops during the Docker stage because yum cannot access valid repository sources, causing dependency installation to fail. The root cause is that CentOS 7 reached End of Life (EOL) in June 2024, and the replacement configurations for Software Collections (CentOS-SCLo-scl, CentOS-SCLo-scl-rh) and EPEL repositories were inaccurate. As a result, package retrieval fails during the Docker build. This PR updates the repository configurations to use the archived repositories (Vault & Fedora Archive) to ensure stable and reproducible build environments. ## Main Changes - updated CentOS-SCLo-scl and CentOS-SCLo-scl-rh repositories to: ``` https://vault.centos.org/7.9.2009/ ``` - Commented out invalid mirrorlist and metalink entries - Updated the EPEL repository to: ``` https://archives.fedoraproject.org/pub/archive/epel/ ``` - Added commands to clean and rebuild the yum cache: ``` yum clean all && yum makecache ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
