Feat: Branch cut stable/calcium
[releng/builder.git] / jjb / opendaylight-infra-deploy-maven-site.sh
1 #!/bin/bash
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
12 # Ensure we fail the job if any steps fail.
13 set -eu -o pipefail
14
15 MAVEN_GROUP_ID=$(xmlstarlet sel \
16       -N "x=http://maven.apache.org/POM/4.0.0" \
17       -t \
18       --if "/x:project/x:groupId" \
19       -v "/x:project/x:groupId" \
20       --elif "/x:project/x:parent/x:groupId" \
21       -v "/x:project/x:parent/x:groupId" \
22       --else -o "" \
23       pom.xml 2>/dev/null)
24
25 cd "$WORKSPACE/target"
26 mv staged-site "$STREAM"
27 zip -r maven-site.zip "$STREAM"
28 lftools deploy nexus-zip "$NEXUS_URL" site "$MAVEN_GROUP_ID" maven-site.zip