Fix ShellCheck v0.4.7 lint issues
[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 # Remove metadata files that were not updated.
24 set +e  # Temporarily disable to run diff command.
25 IFS=" " read -r -a metadata_files <<< "$(diff -s -r "$m2repo_dir" "$WORKSPACE/m2repo-backup" \
26     | grep 'Files .* and .* are identical' \
27     | awk '{print $2}')"
28 set -e  # Re-enable.
29
30 set +u  # $metadata_files could be unbound if project is new.
31 if [ -n "${metadata_files[*]}" ]; then
32     for i in "${metadata_files[@]}"; do
33         rm "$i"*
34     done
35 fi
36 set -u  # Re-enable.
37
38 find "$m2repo_dir" -type d -empty -delete
39
40 lftools deploy nexus -s "$nexus_repo_url" "$m2repo_dir"