Merge "Add Links to Plugins mentioned in README"
[releng/global-jjb.git] / shell / maven-deploy.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 # Upload the snapshot files to a snapshot repo.
12 #
13 # Requires the existance of $WORKSPACE/m2repo and $WORKSPACE/m2repo-backup to
14 # compare if maven metadata files have changed. Unchanged files are then
15 # removed from $WORKSPACE/m2repo before uploading to the snapshot repo.
16
17 # Ensure we fail the job if any steps fail.
18 set -eu -o pipefail
19
20 m2repo_dir="$WORKSPACE/m2repo"
21 nexus_repo_url="$NEXUS_URL/content/repositories/$NEXUS_REPO"
22
23 lftools_activate
24
25 # Remove metadata files that were not updated.
26 set +e  # Temporarily disable to run diff command.
27 mapfile -t metadata_files <<< "$(diff -s -r "$m2repo_dir" "$WORKSPACE/m2repo-backup" \
28     | grep 'Files .* and .* are identical' \
29     | awk '{print $2}')"
30 set -e  # Re-enable.
31
32 set +u  # $metadata_files could be unbound if project is new.
33 if [ -n "${metadata_files[*]}" ]; then
34     for i in "${metadata_files[@]}"; do
35         echo "Removing unmodified file $i"
36         rm "$i"*
37     done
38 fi
39 set -u  # Re-enable.
40
41 find "$m2repo_dir" -type d -empty -delete
42
43 lftools deploy nexus -s "$nexus_repo_url" "$m2repo_dir"