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