grpc_run_basictests_python_aarch64.sh 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/usr/bin/env bash
  2. # Copyright 2021 The gRPC Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. set -ex
  16. # install pre-requisites for gRPC C core build
  17. sudo apt update
  18. sudo apt install -y build-essential autoconf libtool pkg-config cmake python python-pip clang
  19. sudo pip install six
  20. # install python3.6 and pip
  21. sudo apt install -y python3 python3-pip
  22. python3 --version
  23. cd grpc
  24. git submodule update --init
  25. # build and test python (currently we only test with python3.6, but that's ok since our aarch64 testing resources are limited)
  26. tools/run_tests/run_tests.py -l python --compiler python3.6 -c opt -t -x run_tests/python_linux_opt_native/sponge_log.xml --report_suite_name python_linux_opt_native --report_multi_target || FAILED=true
  27. if [ "$FAILED" != "" ]
  28. then
  29. exit 1
  30. fi