kou commented on pull request #9245:
URL: https://github.com/apache/arrow/pull/9245#issuecomment-762701780
This is not a blocker but arm64 APT packages miss `gir1.2-gandiva-1.0` and
`gir1.2-arrow-dataset-1.0` packages: #9260 (Sorry)
It can be fixed by downloading them to local `packages/build-25/XXX/`
(`build-25` is right?) manually:
```bash
#!/bin/sh
set -eux
for target in debian-buster ubuntu-xenial ubuntu-bionic ubuntu-focal
ubuntu-groovy; do
curl -o
packages/build-25/${target}-arm64/gir1.2-arrow-dataset-1.0_3.0.0-1_arm64.deb \
https://github.com/ursacomputing/crossbow/releases/download/build-25-travis-${target}-arm64/gir1.2-arrow-dataset-1.0_3.0.0-1_arm64.deb
curl -o
packages/build-25/${target}-arm64/gir1.2-gandiva-1.0_3.0.0-1_arm64.deb \
https://github.com/ursacomputing/crossbow/releases/download/build-25-travis-${target}-arm64/gir1.2-gandiva-1.0_3.0.0-1_arm64.deb
done
```
and re-uploading Debian and Ubuntu files.
But it's not required because this is not a blocker. (I think that nobody
uses them.)
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]