Handle multiple search extension passed by JJB
[releng/global-jjb.git] / shell / logs-deploy.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> logs-deploy.sh"
12
13 # Ensure we fail the job if any steps fail.
14 set -eu -o pipefail
15
16 if [[ -z $LOGS_SERVER ]]; then
17     echo "WARNING: Logging server not set"
18 else
19     nexus_url="${NEXUSPROXY:-$NEXUS_URL}"
20     nexus_path="${SILO}/${JENKINS_HOSTNAME}/${JOB_NAME}/${BUILD_NUMBER}"
21
22     # Handle multiple search extensions as separate values to '-p|--pattern'
23     set -f # Disable pathname expansion
24     IFS=' ' read -r -a search_exts <<< "${ARCHIVE_ARTIFACTS:-}"
25     pattern_opts=()
26     for search_ext in "${search_exts[@]}";
27     do
28         pattern_opts+=("-p" "$search_ext")
29     done
30
31     lftools deploy archives "${pattern_opts[@]}" "$nexus_url" "$nexus_path" \
32             "$WORKSPACE"
33     set +f  # Enable pathname expansion
34     lftools deploy logs "$nexus_url" "$nexus_path" "${BUILD_URL:-}"
35
36     echo "Build logs: <a href=\"$LOGS_SERVER/$nexus_path\">$LOGS_SERVER/$nexus_path</a>"
37 fi