Yikun edited a comment on pull request #35078: URL: https://github.com/apache/spark/pull/35078#issuecomment-1004514388
@ulysses-you Thanks ping me. - Docker provide [multiarch support now](https://docs.docker.com/desktop/multi-arch/#multi-arch-support-on-docker-desktop), that means you can run any arch docker images in Docker in your host (even if it's x86). - There are also some [images for multiarch](https://github.com/docker-library/official-images#architectures-other-than-amd64) based on [multiarch/qemu-user-static](https://github.com/multiarch/qemu-user-static) So, if you want to do check on arm v7, you could just run it as below: ``` # The example to emulate the arm v7 in x86. root@yikun-x86:~# uname -a Linux yikun-x86 5.4.0-58-generic #64-Ubuntu SMP Wed Dec 9 08:16:25 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux root@yikun-x86:~# docker run -ti arm32v7/openjdk bash root@afa30defa503:/# uname -a Linux afa30defa503 5.4.0-58-generic #64-Ubuntu SMP Wed Dec 9 08:16:25 UTC 2020 armv7l GNU/Linux ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
