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