Fix rtd merge job to handle new tag uploaded
[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 JAVADOC_DIR="$WORKSPACE/archives/javadoc"
20
21 pushd "$JAVADOC_DIR"
22 zip -r "$WORKSPACE/javadoc.zip" .
23 popd
24
25 lftools deploy nexus-zip "$NEXUS_URL" "javadoc" "$DEPLOY_PATH" "$WORKSPACE/javadoc.zip"
26
27 # Tarball the javadoc dir and rm the directory to avoid re-upload into logs
28 pushd "$JAVADOC_DIR"
29 tar cvJf "$WORKSPACE/archives/javadoc.tar.xz" .
30 rm -rf "$JAVADOC_DIR"
31 popd