Add job to perform branch cutting
[releng/builder.git] / jjb / autorelease / branch-cut.sh
1 #!/bin/bash
2 # @License EPL-1.0 <http://spdx.org/licenses/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
12 # This script requires the user running the script to have "Create References"
13 # permission in Gerrit for the "stable/RELEASE" branch. Where RELEASE is an
14 # official OpenDaylight release. Eg. Oxygen, Nitrogen, Carbon, etc...
15 #
16 # Performs 2 actions:
17 #
18 #     1) Creates a new branch stable/RELEASE (where release is a ODL release,
19 #        eg Oxygen, Nitrogen, Carbon, etc...)
20 #     2) Updates .gitreview in the new stable/RELEASE branch to set the
21 #        defaultbranch to the new branch.
22 #
23 # Required Parameters:
24 #     RELEASE: The name of the release to create a branch for.
25
26 mkdir -p "$WORKSPACE/archives"
27 LOG_FILE="$WORKSPACE/archives/branch-cut.log"
28
29 set -eu -o pipefail
30
31 # Validate inputs
32 if [ -z "$RELEASE" ]; then
33     echo "ERROR: RELEASE variable most be set to a release name. Eg Carbon"
34     exit 1
35 fi
36
37 # --- Start create new maintenance branch
38 echo "---> Creating new mainenance branch"
39 git submodule foreach git fetch origin
40 git fetch origin
41 git submodule foreach git checkout -b "stable/${RELEASE,,}" origin/master
42 git checkout -b "stable/${RELEASE,,}" origin/master
43
44 ##########
45 # Verify #
46 ##########
47
48 {
49     echo "---> Verify maintenance branch"
50     git submodule foreach git branch
51     git branch
52 } | tee -a "$LOG_FILE"
53
54 ########
55 # Push #
56 ########
57
58 if [ "$DRY_RUN" = false ]
59 then
60     echo "Pushing stable/${RELEASE,,} branches to Gerrit"
61     git submodule foreach git push gerrit "stable/${RELEASE,,}"
62     git push gerrit "stable/$RELEASE"
63 fi
64 # --- End create new maintenance branch
65
66 # --- Start update .gitreview
67 echo "---> Update .gitreview"
68 git submodule foreach sed -i -e "s#defaultbranch=master#defaultbranch=stable/${RELEASE,,}#" .gitreview
69 git submodule foreach git add .gitreview
70 git submodule foreach "git commit -sm 'Update .gitreview to stable/${RELEASE,,}'"
71 sed -i -e "s#defaultbranch=master#defaultbranch=stable/${RELEASE,,}#" .gitreview
72 git add .gitreview
73 git commit -sm "Update .gitreview to stable/${RELEASE,,}"
74
75 # Generate git patches
76 patch_dir="$WORKSPACE/archives/patches/git-review"
77 mkdir -p "$patch_dir"
78 for module in $(git submodule | awk '{ print $2 }')
79 do
80     pushd "$module"
81     git format-patch --stdout "origin/master" > "$patch_dir/${module//\//-}.patch"
82     git bundle create "$patch_dir/${module//\//-}.bundle" "origin/master..HEAD"
83     popd
84 done
85
86 ##########
87 # Verify #
88 ##########
89
90 {
91     echo "---> Verify .gitreview"
92     git submodule foreach git show HEAD
93     git show HEAD
94     git submodule foreach git log --oneline -2 --graph --decorate
95     git log --oneline -2 --graph --decorate
96 } | tee -a "$LOG_FILE"
97
98 ########
99 # Push #
100 ########
101
102 if [ "$DRY_RUN" = false ]
103 then
104     echo "Pushing .gitreview patches to Gerrit"
105     git submodule foreach git review -t "branch-cut-${RELEASE,,}"
106     git review -t "branch-cut-${RELEASE,,}"
107 fi
108 # --- Stop update .gitreview