gobes commented on issue #47229:
URL: https://github.com/apache/arrow/issues/47229#issuecomment-3203333292

   Hi @amoeba,
   
   > 1.  Are there good free/cheap CI environments for these older Arm variants?
   
   It's seems that native ARM runners for open source projects will be 
available by the end of the year in GitHub.
   
https://github.blog/news-insights/product-news/arm64-on-github-actions-powering-faster-more-efficient-build-systems/
   
   But in case your CI supports QEMU,  a virtualization it may be possible.  
   
   In a non ARM (in my case x86) host I can reproduced the crash as below. I 
assume you can build pyarrow in docker. 
   
   https://hub.docker.com/r/arm64v8/python
   
   ```
   docker run -e QEMU_CPU="max" --rm --platform linux/arm64 
arm64v8/python:3-slim-trixie bash -c "
   
   # assuming arrow & pyarrow was build (and pip installed) inside the docker 
   pip install pyarrow
   
   python -c 'import pyarrow' 
   "
   
   ``` 
   
   |  |  | Emulate | 
   |--------|--------|--------|
   | QEMU_CPU="max" | pass |  max ARMv8
   | QEMU_CPU="cortex-a72" | crash | ARMv8.0  |
   | QEMU_CPU="cortex-a57" | crash | ARMv8.0  | 
   
     


-- 
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]

Reply via email to