0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-13 16:11:49 +00:00
renovatebot_renovate/lib/modules/manager/cloudbuild/__fixtures__/cloudbuild.yml
Rhys Arkins dca3418bbd refactor: lib/modules (#14488)
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/

BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
2022-03-04 09:04:02 +01:00

17 lines
552 B
YAML

steps:
- name: 'gcr.io/cloud-builders/docker:19.03.8'
args: ['build', '-t', 'gcr.io/my-project/my-image', '.']
timeout: 500s
- name: 'node:12'
entrypoint: npm
args: ['test']
- name: 'gcr.io/cloud-builders/kubectl'
args: ['set', 'image', 'deployment/my-deployment', 'my-container=gcr.io/my-project/my-image']
env:
- 'CLOUDSDK_COMPUTE_ZONE=us-east4-b'
- 'CLOUDSDK_CONTAINER_CLUSTER=my-cluster'
options:
machineType: 'N1_HIGHCPU_8'
timeout: 660s
tags: ['mytag1', 'mytag2']
images: ['gcr.io/my-project/myimage']