7522e81b7a8347762a0b50d8d8f4f76d7d72b8dc
[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 # shellcheck disable=SC1090
14 source ~/lf-env.sh
15 lf-activate-venv lftools
16
17 # Ensure we fail the job if any steps fail
18 # Disable 'globbing'
19 set -euf -o pipefail
20
21 # The 'lftool deploy archives' command below expects the archives
22 # directory to exist.  Normally lf-infra-sysstat or similar would
23 # create it and add content, but to make sure this script is
24 # self-contained, we ensure it exists here.
25 mkdir -p "$WORKSPACE/archives"
26
27 function get_pattern_opts()
28 {
29     opts=()
30     for arg in ${ARCHIVE_ARTIFACTS:-}; do
31         opts+=("-p" "$arg")
32     done
33     echo "${opts[@]-}"
34 }
35
36 pattern_opts=$(get_pattern_opts)
37
38 if [[ -z ${LOGS_SERVER:-} ]]; then
39     echo "WARNING: Nexus logging server not set"
40 else
41     nexus_url="${NEXUSPROXY:-$NEXUS_URL}"
42     nexus_path="${SILO}/${JENKINS_HOSTNAME}/${JOB_NAME}/${BUILD_NUMBER}"
43     echo "INFO: Nexus URL $nexus_url path $nexus_path"
44
45     echo "INFO: archiving workspace using pattern(s): ${pattern_opts:-}"
46     # shellcheck disable=SC2086
47     lftools deploy archives ${pattern_opts:-} "$nexus_url" "$nexus_path" "$WORKSPACE"
48
49     echo "INFO: archiving logs to Nexus"
50     lftools deploy logs "$nexus_url" "$nexus_path" "${BUILD_URL:-}"
51
52     echo "Nexus build logs: <a href=\"$LOGS_SERVER/$nexus_path\">$LOGS_SERVER/$nexus_path</a>"
53 fi
54
55 if [[ -z ${S3_BUCKET:-} ]]; then
56     echo "WARNING: S3 logging server not set"
57 else
58     s3_path="logs/$SILO/$JENKINS_HOSTNAME/$JOB_NAME/$BUILD_NUMBER/"
59     echo "INFO: S3 path $s3_path"
60
61     echo "INFO: archiving logs to S3"
62     # shellcheck disable=SC2086
63     lftools deploy s3 ${pattern_opts:-} "$S3_BUCKET" "$s3_path" \
64         "$BUILD_URL" "$WORKSPACE"
65
66     echo "S3 build logs: <a href=\"https://$CDN_URL/$s3_path\"></a>"
67 fi
68