Purge ODL Sodium jobs from builder
[releng/builder.git] / jjb / autorelease / branch-cut.sh
1 #!/bin/bash -l
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 pip install --user --quiet --upgrade git-review
32
33 # Validate inputs
34 if [ -z "$RELEASE" ]; then
35     echo "ERROR: RELEASE variable must be set to a release name. Eg Carbon"
36     exit 1
37 fi
38
39 # Setup Gerrit remote to ensure Change-Id gets set on commit.
40 git config --global --add gitreview.username "jenkins-$SILO"
41 git remote -v
42 git submodule foreach git review -s
43 git review -s
44
45 # --- Start create new maintenance branch
46 echo "---> Creating new mainenance branch"
47 git submodule foreach git fetch origin
48 git fetch origin
49 git submodule foreach git checkout -b "stable/${RELEASE,,}" origin/master
50 git checkout -b "stable/${RELEASE,,}" origin/master
51
52 ##########
53 # Verify #
54 ##########
55
56 {
57     echo "---> Verify maintenance branch"
58     git submodule foreach git branch
59     git branch
60 } | tee -a "$LOG_FILE"
61
62 ########
63 # Push #
64 ########
65
66 if [ "$DRY_RUN" = false ]
67 then
68     echo "Pushing stable/${RELEASE,,} branches to Gerrit"
69     git submodule foreach git push gerrit "stable/${RELEASE,,}"
70     git push gerrit "stable/${RELEASE,,}"
71 fi
72 # --- End create new maintenance branch
73
74 # --- Start update .gitreview
75 echo "---> Update .gitreview"
76 git submodule foreach sed -i -e "s#defaultbranch=master#defaultbranch=stable/${RELEASE,,}#" .gitreview
77 git submodule foreach git add .gitreview
78 git submodule foreach "git commit -sm 'Update .gitreview to stable/${RELEASE,,}'"
79 sed -i -e "s#defaultbranch=master#defaultbranch=stable/${RELEASE,,}#" .gitreview
80 git add .gitreview
81 git commit -sm "Update .gitreview to stable/${RELEASE,,}"
82
83 # Generate git patches
84 patch_dir="$WORKSPACE/archives/patches/git-review"
85 mkdir -p "$patch_dir"
86 for module in $(git submodule | awk '{ print $2 }')
87 do
88     pushd "$module"
89     git format-patch --stdout "origin/master" > "$patch_dir/${module//\//-}.patch"
90     git bundle create "$patch_dir/${module//\//-}.bundle" "origin/master..HEAD"
91     popd
92 done
93
94 ##########
95 # Verify #
96 ##########
97
98 {
99     echo "---> Verify .gitreview"
100     git submodule foreach git show HEAD
101     git show HEAD
102     git submodule foreach git log --oneline -2 --graph --decorate
103     git log --oneline -2 --graph --decorate
104 } | tee -a "$LOG_FILE"
105
106 ########
107 # Push #
108 ########
109
110 if [ "$DRY_RUN" = false ]
111 then
112     echo "Pushing .gitreview patches to Gerrit"
113     git submodule foreach git review -t "branch-cut-${RELEASE,,}"
114     git review -t "branch-cut-${RELEASE,,}"
115 fi
116 # --- Stop update .gitreview