Questions tagged [google-cloud-build]

Cloud Build lets you build software quickly across all languages. Get complete control over defining custom workflows for building, testing, and deploying across multiple environments such as VMs, serverless, Kubernetes, or Firebase. Cloud Build is a service that executes your builds on Google Cloud Platform infrastructure.

Public documentation can be found here: https://cloud.google.com/cloud-build/docs/

847 questions
-1
votes
1 answer

How to create MongoDB database using dockerfile and use data in that database for running test cases

I have a Go project which contains a testcase file main_test.go for testing the commands after the project is built and an executable is created. package cmd import ( "testing" "os" "os/exec" ) func TestCommand(t *testing.T) { …
Shady98
  • 11
  • 3
-1
votes
2 answers

gcloud builds submit fails while docker push + gcloud run deploy work just fine?

EDIT: The so called duplicate question was way off since 1. I could push another image and 2. I could not push a build image. Finally, point #3 is the solution was totally different and ONLY related to pushing build images via cloudbuild. ie. I…
-1
votes
1 answer

Tell the best practice for injecting secrets values to CloudRun

I deploy cloud run with cloud build. Following is cloudbuild.yaml and deploy command. $ cat cloudbuid.yaml steps: - id: Cloud Run Deploy name: 'gcr.io/cloud-builders/gcloud' args: [ run, deploy, $_SERVICE_NAME,…
-2
votes
1 answer

Any support for matrix build

Recently research different build tools , GCP CloudBuild is one of the selection  https://github.com/GoogleCloudPlatform/cloud-builders one of require is work loop an array list and write the function only once and run in parallel however i did not…
-2
votes
1 answer

ERROR: An app.yaml (or appengine-web.xml) file is required to deploy this directory as an App Engine application

When I try deploying my Python code through Cloud Build to Google App Engine (GAE) I receive the following ERROR message: ERROR: An app.yaml (or appengine-web.xml) file is required to deploy this directory as an App Engine application ERROR:…
-2
votes
2 answers

Steps for Cloud Function + Cloud Build API + Node 10?

As I received email from Firbase to upgrade Firebase Cloud Function with Node 10 and Cloud Build API. I have done all the steps as below: Updated to the "Blaze" pay-as-you-go Plan Updated Node.js 10 runtime Enabled Cloud Build API Now what? I am…
-5
votes
1 answer

Cloud-build Trigger

1.I want to build trigger on Cloud build for only specific branches 2.It should work with both branches as well as tags in same trigger Any solution/suggestion Thanks in advance
Shashikumar KL
  • 335
  • 2
  • 12
1 2 3
56
57