2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
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"
13 # Ensure we fail the job if any steps fail
17 function get_pattern_opts()
20 for arg in ${ARCHIVE_ARTIFACTS:-}; do
26 pattern_opts=$(get_pattern_opts)
28 if [[ -z ${LOGS_SERVER:-} ]]; then
29 echo "WARNING: Nexus logging server not set"
31 nexus_url="${NEXUSPROXY:-$NEXUS_URL}"
32 nexus_path="${SILO}/${JENKINS_HOSTNAME}/${JOB_NAME}/${BUILD_NUMBER}"
33 echo "INFO: Nexus URL $nexus_url path $nexus_path"
35 echo "INFO: archiving workspace using pattern(s): ${pattern_opts:-}"
36 # shellcheck disable=SC2086
37 lftools deploy archives ${pattern_opts:-} "$nexus_url" "$nexus_path" "$WORKSPACE"
39 echo "INFO: archiving logs to Nexus"
40 lftools deploy logs "$nexus_url" "$nexus_path" "${BUILD_URL:-}"
42 echo "Nexus build logs: <a href=\"$LOGS_SERVER/$nexus_path\">$LOGS_SERVER/$nexus_path</a>"
45 if [[ -z ${S3_BUCKET:-} ]]; then
46 echo "WARNING: S3 logging server not set"
48 s3_path="logs/$SILO/$JENKINS_HOSTNAME/$JOB_NAME/$BUILD_NUMBER/"
49 echo "INFO: S3 path $s3_path"
51 echo "INFO: archiving logs to S3"
52 # shellcheck disable=SC2086
53 lftools deploy s3 ${pattern_opts:-} "$S3_BUCKET" "$s3_path" \
54 "$BUILD_URL" "$WORKSPACE"
56 echo "S3 build logs: <a href=\"https://$CDN_URL/$s3_path\"></a>"