From 1d03eb9a8df35e574e76370aa75af113682ff7ca Mon Sep 17 00:00:00 2001 From: Eshaan Bansal Date: Fri, 16 Feb 2024 16:41:07 +0530 Subject: [PATCH] chore: add cloudbuild_dev.yaml (#30) --- cloudbuild_dev.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 cloudbuild_dev.yaml diff --git a/cloudbuild_dev.yaml b/cloudbuild_dev.yaml new file mode 100644 index 0000000..fea9a71 --- /dev/null +++ b/cloudbuild_dev.yaml @@ -0,0 +1,13 @@ +# Build and Push the sarif parser image to GCR +timeout: 5m0s + +steps: + - name: "gcr.io/cloud-builders/docker:20.10.14" + args: + - build + - -t + - ${_REGISTRY_NAME}:dev # always use 'dev' tag on development builds + - . +images: ["${_REGISTRY_NAME}:dev"] +options: + machineType: "E2_HIGHCPU_8"