8369a9fa68b7f4b8fadb5ccc6da081aa6a40b5a9
[releng/builder.git] / jjb / autorelease / include-raw-autorelease-release-versions.sh
1 #!/bin/bash
2 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
3 ##############################################################################
4 # Copyright (c) 2015, 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 # RELEASE_TAG=Beryllium-SR1  # Example
13 # RELEASE_BRANCH=stable/beryllium  # Example
14
15 # Directory to put git format-patches
16 PATCH_DIR="$WORKSPACE/patches"
17
18 echo "$RELEASE_TAG"
19 lftools version release "$RELEASE_TAG"
20 git submodule foreach "git commit -am \"Release $RELEASE_TAG\" || true"
21 git commit -am "Release $RELEASE_TAG"
22
23 mkdir patches
24 # TODO: Fix this workaround so that scripts will ensure that taglist.log exists and archived.
25 mv taglist.log "$PATCH_DIR" || true
26 modules=$(xmlstarlet sel -N x=http://maven.apache.org/POM/4.0.0 -t -m '//x:modules' -v '//x:module' pom.xml)
27 for module in $modules; do
28     pushd "$module"
29     git format-patch --stdout "origin/$RELEASE_BRANCH" > "$PATCH_DIR/${module//\//-}.patch"
30     git bundle create "$PATCH_DIR/${module//\//-}.bundle" "origin/master..HEAD"
31     popd
32 done
33
34 tar cvzf patches.tar.gz -C "$WORKSPACE" patches
35 rm "$PATCH_DIR"/*.bundle