Extend logs-deploy.sh with echo statements 53/62553/1
authorLott, Christopher (cl778h) <cl778h@att.com>
Fri, 6 Dec 2019 15:10:24 +0000 (10:10 -0500)
committerLott, Christopher (cl778h) <cl778h@att.com>
Fri, 6 Dec 2019 15:30:41 +0000 (10:30 -0500)
Show config/parameter values to document the script actions in logs.

Change-Id: I2e5e54d2f0c45bb4f3482e081ff8e17ad3b9e28a
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
releasenotes/notes/add-info-to-logs-deploy-2e9b641b8f2c525a.yaml [new file with mode: 0644]
shell/logs-deploy.sh

diff --git a/releasenotes/notes/add-info-to-logs-deploy-2e9b641b8f2c525a.yaml b/releasenotes/notes/add-info-to-logs-deploy-2e9b641b8f2c525a.yaml
new file mode 100644 (file)
index 0000000..46a5349
--- /dev/null
@@ -0,0 +1,4 @@
+---
+fixes:
+  - |
+    Extend logs-deploy.sh with echo statements to show config/parameter values.
index f80e0b4..44ec180 100644 (file)
@@ -19,6 +19,7 @@ if [[ -z $"${LOGS_SERVER:-}" ]]; then
 else
     nexus_url="${NEXUSPROXY:-$NEXUS_URL}"
     nexus_path="${SILO}/${JENKINS_HOSTNAME}/${JOB_NAME}/${BUILD_NUMBER}"
+    echo "INFO: Nexus URL $nexus_url path $nexus_path"
 
     if [[ -n ${ARCHIVE_ARTIFACTS:-} ]] ; then
         # Handle multiple search extensions as separate values to '-p|--pattern'
@@ -27,11 +28,14 @@ else
         for arg in $ARCHIVE_ARTIFACTS; do
             pattern_opts+=("-p" "$arg")
         done
+        echo "INFO: archiving workspace using pattern(s): $ARCHIVE_ARTIFACTS"
         lftools deploy archives "${pattern_opts[@]}" \
                 "$nexus_url" "$nexus_path" "$WORKSPACE"
     else
+        echo "INFO: archiving workspace"
         lftools deploy archives "$nexus_url" "$nexus_path" "$WORKSPACE"
     fi
+    echo "INFO: archiving logs"
     lftools deploy logs "$nexus_url" "$nexus_path" "${BUILD_URL:-}"
 
     echo "Build logs: <a href=\"$LOGS_SERVER/$nexus_path\">$LOGS_SERVER/$nexus_path</a>"