Chore: Upgrade Jenkins-job-builder to 6.3.0
[releng/global-jjb.git] / shell / maven-javadoc-publish.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 "---> maven-javadoc-publish.sh"
12 # Publishes javadoc to a Maven project.
13
14 # DO NOT enable -u because $MAVEN_PARAMS and $MAVEN_OPTIONS could be unbound.
15 # Ensure we fail the job if any steps fail.
16 set -e -o pipefail
17 set +u
18
19 # shellcheck disable=SC1090
20 . ~/lf-env.sh
21
22 lf-activate-venv --python python3 lftools
23
24 JAVADOC_DIR="$WORKSPACE/archives/javadoc"
25
26 pushd "$JAVADOC_DIR"
27 zip -r "$WORKSPACE/javadoc.zip" .
28 popd
29
30 lftools deploy nexus-zip "$NEXUS_URL" "javadoc" "$DEPLOY_PATH" "$WORKSPACE/javadoc.zip"
31
32 # Tarball the javadoc dir and rm the directory to avoid re-upload into logs
33 pushd "$JAVADOC_DIR"
34 tar cvJf "$WORKSPACE/archives/javadoc.tar.xz" .
35 rm -rf "$JAVADOC_DIR"
36 popd