diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-01-21 14:59:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-21 14:59:27 +0100 |
commit | ba3509665c16365870ae2c50c6798c0e8489cb78 (patch) | |
tree | 0fcffc4ab48742b28fcddfed71ba82d869987075 /contrib/cirrus/build_vm_images.sh | |
parent | 4afdfd5eab4d887bf023b39f7b179e422b33a6d5 (diff) | |
parent | 7124ef71b566bbcdf0faa77961e90ab6ff0f03c5 (diff) | |
download | podman-ba3509665c16365870ae2c50c6798c0e8489cb78.tar.gz podman-ba3509665c16365870ae2c50c6798c0e8489cb78.tar.bz2 podman-ba3509665c16365870ae2c50c6798c0e8489cb78.zip |
Merge pull request #2177 from cevich/more_timings
cirrus: Record start/end time of important things
Diffstat (limited to 'contrib/cirrus/build_vm_images.sh')
-rwxr-xr-x | contrib/cirrus/build_vm_images.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/cirrus/build_vm_images.sh b/contrib/cirrus/build_vm_images.sh index ecdf1d877..ee45b1ead 100755 --- a/contrib/cirrus/build_vm_images.sh +++ b/contrib/cirrus/build_vm_images.sh @@ -23,6 +23,8 @@ SCRIPT_BASE $SCRIPT_BASE PACKER_BASE $PACKER_BASE " +record_timestamp "cache-image build start" + show_env_vars # Everything here is running on the 'image-builder-image' GCE image @@ -50,3 +52,5 @@ make libpod_images \ SCRIPT_BASE=$SCRIPT_BASE \ PACKER_BASE=$PACKER_BASE \ BUILT_IMAGE_SUFFIX=$BUILT_IMAGE_SUFFIX + +record_timestamp "cache-image build end" |