test_python_aarch64.sh 1.5 KB

1234567891011121314151617181920212223242526
  1. #!/bin/bash
  2. set -e
  3. # go to the repo root
  4. cd $(dirname $0)/../../..
  5. if [[ -t 0 ]]; then
  6. DOCKER_TTY_ARGS="-it"
  7. else
  8. # The input device on kokoro is not a TTY, so -it does not work.
  9. DOCKER_TTY_ARGS=
  10. fi
  11. # crosscompile python extension and the binary wheel under dockcross/manylinux2014-aarch64 image
  12. kokoro/linux/aarch64/dockcross_helpers/run_dockcross_manylinux2014_aarch64.sh kokoro/linux/aarch64/python_crosscompile_aarch64.sh
  13. # once crosscompilation is done, use an actual aarch64 docker image (with a real aarch64 python) to run all the tests under an emulator
  14. # * mount the protobuf root as /work to be able to access the crosscompiled files
  15. # * intentionally use a different image than manylinux2014 so that we don't build and test on the same linux distribution
  16. # (manylinux_2_24 is debian-based while manylinux2014 is centos-based)
  17. # * to avoid running the process inside docker as root (which can pollute the workspace with files owned by root), we force
  18. # running under current user's UID and GID. To be able to do that, we need to provide a home directory for the user
  19. # otherwise the UID would be homeless under the docker container and pip install wouldn't work. For simplicity,
  20. # we just run map the user's home to a throwaway temporary directory
  21. docker run $DOCKER_TTY_ARGS --rm --user "$(id -u):$(id -g)" -e "HOME=/home/fake-user" -v "$(mktemp -d):/home/fake-user" -v "$(pwd)":/work -w /work quay.io/pypa/manylinux_2_24_aarch64 kokoro/linux/aarch64/python_run_tests_with_qemu_aarch64.sh