diff --git a/functions/ci_cd/cloudbuild.yaml b/functions/ci_cd/cloudbuild.yaml deleted file mode 100644 index 779a1fbabe..0000000000 --- a/functions/ci_cd/cloudbuild.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2019 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 -# -# https://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. - -# [START functions_ci_cd_cloud_build] -steps: -- name: golang - args: ['go', 'version'] -- name: golang - args: ['go', 'test'] - dir: 'function/dir/from/repo/root' -- name: 'gcr.io/cloud-builders/gcloud' - args: ['functions', 'deploy', '[YOUR_DEPLOYED_FUNCTION_NAME]', '[YOUR_FUNCTION_TRIGGER]', '--runtime', 'go116', '--entry-point', '[YOUR_FUNCTION_NAME_IN_CODE]'] - dir: 'function/dir/from/repo/root' -# [END functions_ci_cd_cloud_build]