Skip to content

Commit

Permalink
Fix cloudbuild errors
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan O'Leary <ryanaoleary@google.com>
  • Loading branch information
ryanaoleary committed Jul 24, 2024
1 parent 0d4d0c0 commit f9e1b4f
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions ray-on-gke/tpu/kuberay-tpu-webhook/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,16 @@
# limitations under the License.

steps:
- id: 'kuberay tpu webhook fmt'
name: 'golang:1.21.11'
args: ["fmt", "./..."]
- id: 'kuberay tpu webhook vet'
name: 'golang:1.21.11'
dir: /workspace/kuberay-tpu-webhook
entrypoint: 'bash'
args:
- '-c'
- |
set -e
make vet
allowFailure: false
args: ["vet", "./..."]
- id: 'kuberay tpu webhook test'
name: 'golang:1.21.11'
dir: /workspace/kuberay-tpu-webhook
entrypoint: 'bash'
args:
- '-c'
- |
set -e
make test
args: ["test", "./..."]
allowFailure: false
options:
machineType: 'E2_HIGHCPU_8'
timeout: 60s

0 comments on commit f9e1b4f

Please sign in to comment.