From 767350ec74179da6bf018a7a391312b9726d2c18 Mon Sep 17 00:00:00 2001 From: Daniel Azuma Date: Wed, 30 Jun 2021 18:37:44 +0000 Subject: [PATCH] chore: Hello test for cloud build --- .cloudbuild/hello.sh | 6 ++++++ .cloudbuild/hello.yaml | 3 +++ 2 files changed, 9 insertions(+) create mode 100755 .cloudbuild/hello.sh create mode 100644 .cloudbuild/hello.yaml diff --git a/.cloudbuild/hello.sh b/.cloudbuild/hello.sh new file mode 100755 index 00000000..9b1a0dc3 --- /dev/null +++ b/.cloudbuild/hello.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -eo pipefail + +gem install toys +toys --help diff --git a/.cloudbuild/hello.yaml b/.cloudbuild/hello.yaml new file mode 100644 index 00000000..20583db2 --- /dev/null +++ b/.cloudbuild/hello.yaml @@ -0,0 +1,3 @@ +steps: + - name: "ruby:3.0" + entrypoint: ".cloudbuild/hello.sh"