tree: 1d70e9ecaa1bc60c40e0557c873ca8eada5cd5cb [path history] [tgz]
  1. cloudbuild.yaml
  2. README.md
  3. release-versions.yaml
  4. release.py
  5. requirements.txt
release/README.md

Release process

Validating release config - TODO (rnv) - convert to presubmit cloud build

task

After making changes to the release state the validity of the changes can be checked by running the following command from the root of the repo:

gcloud builds submit --config=presubmit.yaml

where presubmit.yaml could look like the following:

steps:
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk:latest'
  entrypoint: 'bash'
  args: ['-c',
  'pip3 install -r release/requirements.txt && python3 release/release.py --verify'
  ]