bigquery/deploy.cloudbuild.yaml (25 lines of code) (raw):
# 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
#
# http://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.
steps:
# Build the binary and put it into the builder image.
- name: gcr.io/cloud-builders/docker
args:
- build
- --tag=${_REGISTRY}/bigquery:${TAG_NAME}
- --tag=${_REGISTRY}/bigquery:${_MAJOR_LATEST}
- --tag=${_REGISTRY}/bigquery:latest
- --file=./bigquery/Dockerfile
- '.'
# Run the smoketest to verify that everything built correctly.
- name: ${_REGISTRY}/bigquery:${TAG_NAME}
args:
- --smoketest
- --alsologtostderr
# Push the image with tags.
images:
- ${_REGISTRY}/bigquery:${TAG_NAME}
- ${_REGISTRY}/bigquery:${_MAJOR_LATEST}
- ${_REGISTRY}/bigquery:latest
options:
dynamic_substitutions: true
substitutions:
_REGISTRY: us-east1-docker.pkg.dev/gcb-release/cloud-build-notifiers
# Looks like: $NOTIF-$MAJOR-latest. Not meant for overriding.
_MAJOR_LATEST: "${TAG_NAME%%.*}-latest"
tags:
- cloud-build-notifiers-bigquery
- bigquery-${TAG_NAME}