Migrate Maven Merge job to global-jjb
[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 metadata_files=($(diff -s -r "$m2repo_dir" "$WORKSPACE/m2repo-backup" \
26     | grep 'Files .* and .* are identical' | awk '{print $2}'))
27 set -e  # Re-enable.
28
29 set +u  # $metadata_files could be unbound if project is new.
30 if [ -n "${metadata_files[*]}" ]; then
31     for i in "${metadata_files[@]}"; do
32         rm "$i"*
33     done
34 fi
35 set -u  # Re-enable.
36
37 find "$m2repo_dir" -type d -empty -delete
38
39 lftools deploy nexus -s "$nexus_repo_url" "$m2repo_dir"