From aee2dcb2ba92589124fbdfd9cd48cb29529063da Mon Sep 17 00:00:00 2001 From: "Lott, Christopher (cl778h)" Date: Fri, 6 Dec 2019 10:10:24 -0500 Subject: [PATCH] Extend logs-deploy.sh with echo statements Show config/parameter values to document the script actions in logs. Change-Id: I2e5e54d2f0c45bb4f3482e081ff8e17ad3b9e28a Signed-off-by: Lott, Christopher (cl778h) --- releasenotes/notes/add-info-to-logs-deploy-2e9b641b8f2c525a.yaml | 4 ++++ shell/logs-deploy.sh | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 releasenotes/notes/add-info-to-logs-deploy-2e9b641b8f2c525a.yaml 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 index 00000000..46a5349e --- /dev/null +++ b/releasenotes/notes/add-info-to-logs-deploy-2e9b641b8f2c525a.yaml @@ -0,0 +1,4 @@ +--- +fixes: + - | + Extend logs-deploy.sh with echo statements to show config/parameter values. diff --git a/shell/logs-deploy.sh b/shell/logs-deploy.sh index f80e0b43..44ec180f 100644 --- a/shell/logs-deploy.sh +++ b/shell/logs-deploy.sh @@ -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: $LOGS_SERVER/$nexus_path" -- 2.16.6