Skip to content

Commit b9fbd6b

Browse files
committed
test GH-46108
1 parent 983e86d commit b9fbd6b

File tree

12 files changed

+135
-456
lines changed

12 files changed

+135
-456
lines changed

dev/release/.env.example

-12
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,6 @@
3131
# You must set this.
3232
#ARTIFACTORY_API_KEY=secret
3333

34-
# The Apache Sofotware Foundation ID to upload artifacts to
35-
# repository.apache.org.
36-
#
37-
# You must set this.
38-
#ASF_USER=kou
39-
40-
# The Apache Sofotware Foundation password to upload artifacts to
41-
# repository.apache.org.
42-
#
43-
# You must set this.
44-
#ASF_PASSWORD=secret
45-
4634
# The GitHub token to upload artifacts to GitHub Release.
4735
#
4836
# You must set this.

dev/release/02-source-test.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,12 @@ def test_vote
160160
[1]: https://github.com/apache/arrow/issues?q=is%3Aissue+milestone%3A#{@release_version}+is%3Aclosed
161161
[2]: https://github.com/apache/arrow/tree/#{@current_commit}
162162
[3]: https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-#{@release_version}-rc0
163-
[4]: https://apache.jfrog.io/artifactory/arrow/almalinux-rc/
164-
[5]: https://apache.jfrog.io/artifactory/arrow/amazon-linux-rc/
165-
[6]: https://apache.jfrog.io/artifactory/arrow/centos-rc/
166-
[7]: https://apache.jfrog.io/artifactory/arrow/debian-rc/
167-
[8]: https://apache.jfrog.io/artifactory/arrow/python-rc/#{@release_version}-rc0
168-
[9]: https://apache.jfrog.io/artifactory/arrow/ubuntu-rc/
163+
[4]: https://packages.apache.org/artifactory/arrow/almalinux-rc/
164+
[5]: https://packages.apache.org/artifactory/arrow/amazon-linux-rc/
165+
[6]: https://packages.apache.org/artifactory/arrow/centos-rc/
166+
[7]: https://packages.apache.org/artifactory/arrow/debian-rc/
167+
[8]: https://packages.apache.org/artifactory/arrow/ubuntu-rc/
168+
[9]: https://github.com/apache/arrow/releases/tag/apache-arrow-#{@release_version}-rc0
169169
[10]: https://github.com/apache/arrow/blob/#{@current_commit}/CHANGELOG.md
170170
[11]: https://arrow.apache.org/docs/developers/release_verification.html
171171
[12]: #{verify_pr_url || "null"}

dev/release/02-source.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ The vote will be open for at least 72 hours.
188188
[1]: https://github.com/apache/arrow/issues?q=is%3Aissue+milestone%3A${version}+is%3Aclosed
189189
[2]: https://github.com/apache/arrow/tree/${release_hash}
190190
[3]: ${rc_url}
191-
[4]: https://apache.jfrog.io/artifactory/arrow/almalinux-rc/
192-
[5]: https://apache.jfrog.io/artifactory/arrow/amazon-linux-rc/
193-
[6]: https://apache.jfrog.io/artifactory/arrow/centos-rc/
194-
[7]: https://apache.jfrog.io/artifactory/arrow/debian-rc/
195-
[8]: https://apache.jfrog.io/artifactory/arrow/python-rc/${version}-rc${rc}
196-
[9]: https://apache.jfrog.io/artifactory/arrow/ubuntu-rc/
191+
[4]: https://packages.apache.org/artifactory/arrow/almalinux-rc/
192+
[5]: https://packages.apache.org/artifactory/arrow/amazon-linux-rc/
193+
[6]: https://packages.apache.org/artifactory/arrow/centos-rc/
194+
[7]: https://packages.apache.org/artifactory/arrow/debian-rc/
195+
[8]: https://packages.apache.org/artifactory/arrow/ubuntu-rc/
196+
[9]: https://github.com/apache/arrow/releases/tag/apache-arrow-${version}-rc${rc}
197197
[10]: https://github.com/apache/arrow/blob/${release_hash}/CHANGELOG.md
198198
[11]: https://arrow.apache.org/docs/developers/release_verification.html
199199
[12]: ${verify_pr_url}

dev/release/05-binary-upload.sh

+5-7
Original file line numberDiff line numberDiff line change
@@ -121,26 +121,26 @@ rake_tasks=()
121121
apt_targets=()
122122
yum_targets=()
123123
if [ "${UPLOAD_ALMALINUX}" -gt 0 ]; then
124-
rake_tasks+=(yum:rc:artifactory yum:rc)
124+
rake_tasks+=(yum:rc)
125125
yum_targets+=(almalinux)
126126
fi
127127
if [ "${UPLOAD_AMAZON_LINUX}" -gt 0 ]; then
128-
rake_tasks+=(yum:rc:artifactory yum:rc)
128+
rake_tasks+=(yum:rc)
129129
yum_targets+=(amazon-linux)
130130
fi
131131
if [ "${UPLOAD_CENTOS}" -gt 0 ]; then
132-
rake_tasks+=(yum:rc:artifactory yum:rc)
132+
rake_tasks+=(yum:rc)
133133
yum_targets+=(centos)
134134
fi
135135
if [ "${UPLOAD_DEBIAN}" -gt 0 ]; then
136-
rake_tasks+=(apt:rc:artifactory apt:rc)
136+
rake_tasks+=(apt:rc)
137137
apt_targets+=(debian)
138138
fi
139139
if [ "${UPLOAD_R}" -gt 0 ]; then
140140
rake_tasks+=(r:rc)
141141
fi
142142
if [ "${UPLOAD_UBUNTU}" -gt 0 ]; then
143-
rake_tasks+=(apt:rc:artifactory apt:rc)
143+
rake_tasks+=(apt:rc)
144144
apt_targets+=(ubuntu)
145145
fi
146146
rake_tasks+=(summary:rc)
@@ -159,8 +159,6 @@ docker_run \
159159
)" \
160160
ARTIFACTORY_API_KEY="${ARTIFACTORY_API_KEY}" \
161161
ARTIFACTS_DIR="${tmp_dir}/artifacts" \
162-
ASF_PASSWORD="${ASF_PASSWORD}" \
163-
ASF_USER="${ASF_USER}" \
164162
DEB_PACKAGE_NAME="${DEB_PACKAGE_NAME:-}" \
165163
DRY_RUN="${DRY_RUN:-no}" \
166164
GPG_KEY_ID="${GPG_KEY_ID}" \

0 commit comments

Comments
 (0)