| #!/bin/bash |
| # Copyright 2020 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| set -eo pipefail |
| |
| # Disable buffering, so that the logs stream through. |
| export PYTHONUNBUFFERED=1 |
| |
| cd github/python-api-core |
| |
| # Remove old nox |
| python3.6 -m pip uninstall --yes --quiet nox-automation |
| |
| # Install nox |
| python3.6 -m pip install --upgrade --quiet nox |
| python3.6 -m nox --version |
| |
| # build docs |
| nox -s docs |
| |
| python3 -m pip install gcp-docuploader |
| |
| # install a json parser |
| sudo apt-get update |
| sudo apt-get -y install software-properties-common |
| sudo add-apt-repository universe |
| sudo apt-get update |
| sudo apt-get -y install jq |
| |
| # create metadata |
| python3 -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 docs |
| python3 -m docuploader upload docs/_build/html --metadata-file docs.metadata --staging-bucket docs-staging |