-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Release] Some implementations are not removing old Release Candidates and old Releases from dist.apache.org #44646
Comments
apache/arrow-rs fixed this: apache/arrow-rs#7060 |
We can remove "apache-arrow-datafusion-*" from https://dist.apache.org/repos/dist/dev/arrow/ because Apache DataFusion is a top level project not a subproject of Arrow now. |
should we just run the following manually? I can do if we are ok $ cat remove_datafusion_rcs.sh
echo "Remove datafusion RCs"
dev_base_url=https://dist.apache.org/repos/dist/dev/arrow
old_rcs=$(
svn ls ${dev_base_url}/ | \
grep -E '^apache-arrow-datafusion-' | \
sort --version-sort
)
for old_rc in $old_rcs; do
echo "Remove RC: ${old_rc}"
svn \
delete \
-m "Remove old Apache Arrow Datafusion RC: ${old_rc}" \
${dev_base_url}/${old_rc}
done BTW this will list:
|
Yes, please. |
ok, those have been removed now:
|
The I think the only one missing is for nanoarrow to remove old releases from https://dist.apache.org/repos/dist/release/arrow/ as part of their release. |
Right. We can remove https://dist.apache.org/repos/dist/release/arrow/arrow-ballista-0.12.0/ too because the latest Ballista release exists at https://dist.apache.org/repos/dist/release/datafusion/ . |
Done, ballista removed from arrow releases:
|
Thanks!!! |
Describe the enhancement requested
Old Release Candidates and old releases should be removed from https://dist.apache.org/repos/dist/dev/arrow/ and https://dist.apache.org/repos/dist/release/arrow/ respectively.
We remove Arrow RC(s) and Arrow's old releases when we execute
dev/release/post-09-remove-old-artifacts.sh
but we do seem to have a lot of old Rust RCs, datafusion RCs and objectstore RCs. We also have old nanoarrow and datafusion releases.Component(s)
Release
The text was updated successfully, but these errors were encountered: