Print out URL of where to find uploaded logs and artifacts.

This commit is contained in:
Jeff Grafton 2015-11-02 17:26:45 -08:00
parent 7a2564da42
commit f03b3c9171

View File

@ -72,6 +72,8 @@ function upload_logs_to_gcs() {
cp -a "${gcs_acl}" - "${gcs_job_path}/latest-build.txt" || continue cp -a "${gcs_acl}" - "${gcs_job_path}/latest-build.txt" || continue
break # all uploads succeeded if we hit this point break # all uploads succeeded if we hit this point
done done
local -r results_url=${gcs_build_path//"gs:/"/"https://storage.cloud.google.com"}
echo -e "\n\n\n*** View logs and artifacts at ${results_url} ***\n\n"
} }
# Automatically upload logs to GCS on exit or timeout. # Automatically upload logs to GCS on exit or timeout.