Skip to content

Commit

Permalink
Add new yamls, buildtest and deploy (#39)
Browse files Browse the repository at this point in the history
* add yaml files

* fix indentation
  • Loading branch information
Aric1088 authored Jul 15, 2020
1 parent 721b09d commit 3fd7335
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
23 changes: 23 additions & 0 deletions bigquery/buildtest.cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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:
- name: gcr.io/cloud-builders/docker
args:
- build
- --file=./bigquery/Dockerfile
- '.'

tags:
- cloud-build-notifiers-bigquery
48 changes: 48 additions & 0 deletions bigquery/deploy.cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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}

0 comments on commit 3fd7335

Please sign in to comment.