This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
# Grab cached M2 repo | |
- name: gcr.io/cloud-builders/gsutil | |
id: Get M2 Cache | |
args: ['cp', 'gs://BUCKET_NAME/m2.tar.gz', 'm2.tar.gz'] | |
# See https://github.com/GoogleCloudPlatform/cloud-builders-community to get the tar command | |
- name: gcr.io/PROJECT_ID/tar | |
id: Expand M2 Cache | |
args: ['xpzf', 'm2.tar.gz'] | |
# Optional, we had some extra settings to include |