| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | #!/bin/bash# Adapted from https://github.com/googleapis/google-cloud-python/blob/master/.kokoro/publish-docs.shset -eo pipefail# Disable buffering, so that the logs stream through.export PYTHONUNBUFFERED=1cd github/protobuf/python# install packagesudo apt-get updatesudo apt-get -y install software-properties-commonsudo add-apt-repository universesudo apt-get updatesudo apt-get -y install unzipwget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.2/protoc-3.11.2-linux-x86_64.zipunzip protoc-3.11.2-linux-x86_64.zip bin/protocmv bin/protoc ../src/protocpython3.6 -m venv venvsource venv/bin/activatepython setup.py install# install docs dependenciespython -m pip install -r docs/requirements.txt# build docscd docsmake htmlcd ..deactivatepython3.6 -m pip install protobuf==3.11.1 gcp-docuploader# install a json parsersudo apt-get -y install jq# create metadatapython3.6 -m docuploader create-metadata \  --name=$(jq --raw-output '.name // empty' .repo-metadata.json) \  --version=$(python3 setup.py --version) \  --language=$(jq --raw-output '.language // empty' .repo-metadata.json) \  --distribution-name=$(python3 setup.py --name) \  --product-page=$(jq --raw-output '.product_documentation // empty' .repo-metadata.json) \  --github-repository=$(jq --raw-output '.repo // empty' .repo-metadata.json) \  --issue-tracker=$(jq --raw-output '.issue_tracker // empty' .repo-metadata.json)cat docs.metadata# upload docspython3.6 -m docuploader upload docs/_build/html --metadata-file docs.metadata --staging-bucket docs-staging
 |