Activate virtual env for logs-deploy
[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 function get_pattern_opts()
22 {
23     opts=()
24     for arg in ${ARCHIVE_ARTIFACTS:-}; do
25         opts+=("-p" "$arg")
26     done
27     echo "${opts[@]-}"
28 }
29
30 pattern_opts=$(get_pattern_opts)
31
32 if [[ -z ${LOGS_SERVER:-} ]]; then
33     echo "WARNING: Nexus logging server not set"
34 else
35     nexus_url="${NEXUSPROXY:-$NEXUS_URL}"
36     nexus_path="${SILO}/${JENKINS_HOSTNAME}/${JOB_NAME}/${BUILD_NUMBER}"
37     echo "INFO: Nexus URL $nexus_url path $nexus_path"
38
39     echo "INFO: archiving workspace using pattern(s): ${pattern_opts:-}"
40     # shellcheck disable=SC2086
41     lftools deploy archives ${pattern_opts:-} "$nexus_url" "$nexus_path" "$WORKSPACE"
42
43     echo "INFO: archiving logs to Nexus"
44     lftools deploy logs "$nexus_url" "$nexus_path" "${BUILD_URL:-}"
45
46     echo "Nexus build logs: <a href=\"$LOGS_SERVER/$nexus_path\">$LOGS_SERVER/$nexus_path</a>"
47 fi
48
49 if [[ -z ${S3_BUCKET:-} ]]; then
50     echo "WARNING: S3 logging server not set"
51 else
52     s3_path="logs/$SILO/$JENKINS_HOSTNAME/$JOB_NAME/$BUILD_NUMBER/"
53     echo "INFO: S3 path $s3_path"
54
55     echo "INFO: archiving logs to S3"
56     # shellcheck disable=SC2086
57     lftools deploy s3 ${pattern_opts:-} "$S3_BUCKET" "$s3_path" \
58         "$BUILD_URL" "$WORKSPACE"
59
60     echo "S3 build logs: <a href=\"https://$CDN_URL/$s3_path\"></a>"
61 fi
62