build_validate_upload.sh 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #! /bin/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. WORK_DIR=$(pwd)/"$(dirname "$0")"
  17. cd ${WORK_DIR}
  18. # Remove existing wheels
  19. rm -rf ${WORK_DIR}/dist
  20. # Generate the package content then build the source wheel
  21. python3 build.py
  22. python3 setup.py bdist_wheel
  23. # Run the tests to ensure all protos are importable, also avoid confusing normal
  24. # imports with relative imports
  25. pushd $(mktemp -d '/tmp/test_xds_protos.XXXXXX')
  26. python3 -m virtualenv env
  27. env/bin/python -m pip install ${WORK_DIR}/dist/*.whl
  28. cp ${WORK_DIR}/generated_file_import_test.py generated_file_import_test.py
  29. env/bin/python generated_file_import_test.py
  30. popd
  31. # Upload the package
  32. python3 -m twine check dist/*
  33. python3 -m twine upload dist/*