kou commented on code in PR #48427:
URL: https://github.com/apache/arrow/pull/48427#discussion_r2608135686
##########
.github/workflows/package_linux.yml:
##########
@@ -45,7 +47,9 @@ on:
- 'c_glib/**'
- 'dev/release/binary-task.rb'
- 'dev/release/verify-apt.rb'
+ - 'dev/release/verify-apt.sh'
- 'dev/release/verify-yum.rb'
+ - 'dev/release/verify-yum.sh'
Review Comment:
```suggestion
- 'dev/release/verify-apt.sh'
- 'dev/release/verify-yum.sh'
```
##########
dev/release/verify-apt.sh:
##########
@@ -227,7 +227,10 @@ echo "::endgroup::"
echo "::group::Prepare downgrade test"
can_downgrade=false
-if [ -f /etc/apt/sources.list.d/apache-arrow.sources.bak ]; then
+if [ "${distribution}" = 'debian' ] && [[ "$(cat /etc/debian_version)" =~
/sid$ ]]; then
+ # Skip downgrade test on Debian sid (unstable)
Review Comment:
```suggestion
# Skip downgrade test on Debian testing.
# Debian testing and unstable use "${testing_code_name}/"sid" as
/etc/debian_version content.
```
##########
.github/workflows/package_linux.yml:
##########
@@ -31,7 +31,9 @@ on:
- 'c_glib/**'
- 'dev/release/binary-task.rb'
- 'dev/release/verify-apt.rb'
+ - 'dev/release/verify-apt.sh'
- 'dev/release/verify-yum.rb'
+ - 'dev/release/verify-yum.sh'
Review Comment:
Sorry... Existing extensions are wrong...:
```suggestion
- 'dev/release/verify-apt.sh'
- 'dev/release/verify-yum.sh'
```
--
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]