Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .kokoro/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@
# or zero if all commands in the pipeline exit successfully.
set -eo pipefail

python3 -m pip install --require-hashes -r github/google-cloud-python/.kokoro/requirements-aoss.txt
python3 -m keyring --list-backends

echo "[distutils]
index-servers =
aoss-1p-python
[aoss-1p-python]
repository: https://us-python.pkg.dev/cloud-aoss-1p/cloud-aoss-1p-python/" >> $HOME/.pypirc

echo "[install]
index-url = https://us-python.pkg.dev/cloud-aoss-1p/cloud-aoss-1p-python/simple/
trusted-host = us-python.pkg.dev" >> $HOME/pip.conf

export PIP_CONFIG_FILE=$HOME/pip.conf

# Start the releasetool reporter
python3 -m pip install --require-hashes -r github/google-cloud-python/.kokoro/requirements.txt
python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script
Expand Down
2 changes: 2 additions & 0 deletions .kokoro/requirements-aoss.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
keyring
keyrings.google-artifactregistry-auth
Loading