kou commented on issue #41401: URL: https://github.com/apache/arrow/issues/41401#issuecomment-2156194716
It seems that mirrors of CentOS Stream 8 are disabled: https://github.com/ursacomputing/crossbow/actions/runs/9414082872/job/25932189688#step:8:107 ```text #6 [2/2] RUN quiet=$([ "yes" = "yes" ] || echo "--quiet") && dnf install -y ${quiet} epel-release && dnf install --enablerepo=powertools -y ${quiet} bison boost-devel brotli-devel bzip2-devel c-ares-devel ccache clang cmake curl-devel flex gcc-c++ gflags-devel git glog-devel gobject-introspection-devel json-devel libarchive libzstd-devel llvm-devel llvm-static lz4-devel make ncurses-devel ninja-build openssl-devel pkg-config python39 python39-pip re2-devel rapidjson-devel rpmdevtools snappy-devel tar thrift-devel vala which zlib-devel && dnf clean ${quiet} all #6 0.427 CentOS Stream 8 - AppStream 445 B/s | 38 B 00:00 #6 0.432 Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist ``` It seems that we can solve this by using vault.centos.org: ```diff --- /etc/yum.repos.d/CentOS-Stream-AppStream.repo.orig 2024-06-08 21:37:55.259885642 +0000 +++ /etc/yum.repos.d/CentOS-Stream-AppStream.repo 2024-06-08 21:37:49.171850804 +0000 @@ -10,8 +10,7 @@ [appstream] name=CentOS Stream $releasever - AppStream -mirrorlist=http://mirrorlist.centos.org/?release=$stream&arch=$basearch&repo=AppStream&infra=$infra -#baseurl=http://mirror.centos.org/$contentdir/$stream/AppStream/$basearch/os/ +baseurl=http://vault.centos.org/$contentdir/$stream/AppStream/$basearch/os/ gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial ``` -- 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]
