test_java_aarch64.sh 2.0 KB

1234567891011121314151617181920212223242526272829303132
  1. #!/bin/bash
  2. set -ex
  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 protoc as we will later need it for the java build.
  12. # we build it under the dockcross/manylinux2014-aarch64 image so that the resulting protoc binary is compatible
  13. # with a wide range of linux distros (including any docker images we will use later to build and test java)
  14. kokoro/linux/aarch64/dockcross_helpers/run_dockcross_manylinux2014_aarch64.sh kokoro/linux/aarch64/protoc_crosscompile_aarch64.sh
  15. # the command that will be used to build and test java under an emulator
  16. # * IsValidUtf8Test and DecodeUtf8Test tests are being skipped because that take very long under an emulator.
  17. TEST_JAVA_COMMAND="mvn --batch-mode -DskipTests install && mvn --batch-mode -Dtest='**/*Test, !**/*IsValidUtf8Test, !**/*DecodeUtf8Test' -DfailIfNoTests=false surefire:test"
  18. # use an actual aarch64 docker image (with a real aarch64 java and maven) to run build & test protobuf java under an emulator
  19. # * mount the protobuf root as /work to be able to access the crosscompiled files
  20. # * to avoid running the process inside docker as root (which can pollute the workspace with files owned by root), we force
  21. # running under current user's UID and GID. To be able to do that, we need to provide a home directory for the user
  22. # otherwise the UID would be homeless under the docker container and pip install wouldn't work. For simplicity,
  23. # we just run map the user's home to a throwaway temporary directory
  24. # * the JAVA_OPTS and MAVEN_CONFIG variables are being set mostly to silence warnings about non-existent home directory
  25. # and to avoid polluting the workspace.
  26. docker run $DOCKER_TTY_ARGS --rm --user "$(id -u):$(id -g)" -e "HOME=/home/fake-user" -e "JAVA_OPTS=-Duser.home=/home/fake-user" -e "MAVEN_CONFIG=/home/fake-user/.m2" -v "$(mktemp -d):/home/fake-user" -v "$(pwd)":/work -w /work arm64v8/maven:3.8-openjdk-11 bash -c "cd java && $TEST_JAVA_COMMAND"