Skip to content

Commit 7d7b921

Browse files
committed
fix(dev/release): use packages.apache.org instead of apache.jfrog.io
arrow-apt-source and arrow-release changed to use packages.apache.org from apache.jfrog.io in apache/arrow#46108 . (Note that packages.apache.org is an alias of apache.jfrog.io.) We need to do the same change to pass CI. Closes #2754
1 parent bdf53b6 commit 7d7b921

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

dev/release/.env.example

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#
3131
# You must set this.
3232
#
33-
# This can be obtained by logging in to https://apache.jfrog.io with
34-
# your ASF credentials and generating an API key from your user profile.
35-
#ARTIFACTORY_API_KEY=secret
33+
# This can be obtained by logging in to
34+
# https://packages.apache.org/ui/login with your ASF credentials and
35+
# generating an API key from your user profile.
36+
# ARTIFACTORY_API_KEY=secret

dev/release/06-binary-verify.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ Note: to verify APT/YUM packages on macOS/AArch64, you must \`export DOCKER_DEFA
102102
[1]: https://github.com/apache/arrow-adbc/issues?q=is%3Aissue+milestone%3A%22ADBC+Libraries+${RELEASE}%22+is%3Aclosed
103103
[2]: https://github.com/apache/arrow-adbc/commit/${commit}
104104
[3]: https://dist.apache.org/repos/dist/dev/arrow/${tag}/
105-
[4]: https://apache.jfrog.io/artifactory/arrow/almalinux-rc/
106-
[5]: https://apache.jfrog.io/artifactory/arrow/debian-rc/
107-
[6]: https://apache.jfrog.io/artifactory/arrow/ubuntu-rc/
105+
[4]: https://packages.apache.org/artifactory/arrow/almalinux-rc/
106+
[5]: https://packages.apache.org/artifactory/arrow/debian-rc/
107+
[6]: https://packages.apache.org/artifactory/arrow/ubuntu-rc/
108108
[7]: https://repository.apache.org/content/repositories/staging/org/apache/arrow/adbc/
109109
[8]: https://github.com/apache/arrow-adbc/releases/tag/${tag}
110110
[9]: https://github.com/apache/arrow-adbc/blob/${tag}/CHANGELOG.md

dev/release/post-09-announce.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The Apache Arrow Community
6868
6969
[1]: https://github.com/apache/arrow-adbc/issues?q=is%3Aissue+milestone%3A%22ADBC+Libraries+${RELEASE}%22+is%3Aclosed
7070
[2]: https://arrow.apache.org/adbc/current/driver/installation.html
71-
[3]: https://apache.jfrog.io/ui/native/arrow
71+
[3]: https://packages.apache.org/ui/native/arrow
7272
[4]: https://arrow.apache.org/blog/2023/01/05/introducing-arrow-adbc/
7373
[5]: https://lists.apache.org/[email protected]
7474
[6]: https://lists.apache.org/[email protected]

dev/release/verify-apt.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ ${APT_INSTALL} \
6767

6868
code_name="$(lsb_release --codename --short)"
6969
distribution="$(lsb_release --id --short | tr 'A-Z' 'a-z')"
70-
artifactory_base_url="https://apache.jfrog.io/artifactory/arrow/${distribution}"
70+
artifactory_base_url="https://packages.apache.org/artifactory/arrow/${distribution}"
7171
case "${TYPE}" in
7272
rc|staging-rc|staging-release)
7373
suffix=${TYPE%-release}
@@ -94,7 +94,7 @@ curl \
9494
--fail \
9595
--location \
9696
--remote-name \
97-
https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
97+
https://packages.apache.org/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
9898
${APT_INSTALL} ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
9999

100100
if [ "${TYPE}" = "local" ]; then

dev/release/verify-yum.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ TYPE="$2"
3939
SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
4040
local_prefix="${SOURCE_DIR}/../../ci/linux-packages"
4141

42-
artifactory_base_url="https://apache.jfrog.io/artifactory/arrow"
42+
artifactory_base_url="https://packages.apache.org/artifactory/arrow"
4343

4444
distribution=$(. /etc/os-release && echo "${ID}")
4545
distribution_version=$(. /etc/os-release && echo "${VERSION_ID}" | grep -o "^[0-9]*")
@@ -94,7 +94,7 @@ fi
9494
if [ "${TYPE}" = "local" ]; then
9595
sed \
9696
-e "s,^\\[apache-arrow-,\\[apache-adbc-,g" \
97-
-e "s,baseurl=https://apache\.jfrog\.io/artifactory/arrow/,baseurl=file://${local_prefix}/yum/repositories/,g" \
97+
-e "s,baseurl=https://packages\.apache\.org/artifactory/arrow/,baseurl=file://${local_prefix}/yum/repositories/,g" \
9898
-e "s,RPM-GPG-KEY-Apache-Arrow,RPM-GPG-KEY-Apache-ADBC,g" \
9999
/etc/yum.repos.d/Apache-Arrow.repo > \
100100
/etc/yum.repos.d/Apache-ADBC.repo

0 commit comments

Comments
 (0)