From 4d8c4d29e84d2546f37397f964069c0f25835511 Mon Sep 17 00:00:00 2001 From: Ivan Hernandez Date: Wed, 20 Nov 2024 21:10:02 +0000 Subject: [PATCH] fix: Delete functions_ci_cd_cloud_build for Cloud Functions from cloudbuild.yaml file --- functions/ci_cd/cloudbuild.yaml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 functions/ci_cd/cloudbuild.yaml 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]