1
- #! /bin/sh
1
+ #! /bin/bash
2
2
3
3
# ===========================================================================
4
4
# (c) Copyright IBM Corp. 2017 All Rights Reserved
5
5
# ===========================================================================
6
- #
6
+ #
7
7
# This code is free software; you can redistribute it and/or modify it
8
8
# under the terms of the GNU General Public License version 2 only, as
9
- # published by the Free Software Foundation.
9
+ # published by the Free Software Foundation.
10
10
#
11
11
# This code is distributed in the hope that it will be useful, but WITHOUT
12
12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16
16
#
17
17
# You should have received a copy of the GNU General Public License version
18
18
# 2 along with this work; if not, see <http://www.gnu.org/licenses/>.
19
- #
19
+ #
20
20
# ===========================================================================
21
-
21
+
22
+ # exit immediately if any unexpected error occurs
23
+ set -e
24
+
22
25
usage () {
23
26
echo " Usage: $0 [-h|--help] [-openj9-repo=<j9vm repo url>] [-openj9-branch=<branch>] [-openj9-sha=<commit sha>] [... other OpenJ9 repositories and branches options] [-parallel=<true|false>]"
24
27
echo " where:"
@@ -30,144 +33,130 @@ usage() {
30
33
echo " -omr-repo the OpenJ9/omr repository url: https://github.com/eclipse/openj9-omr.git"
31
34
echo " or [email protected] :<namespace>/openj9-omr.git"
32
35
echo " -omr-branch the OpenJ9/omr git branch: openj9"
33
- echo " -omr-sha a commit SHA for the omr repository"
36
+ echo " -omr-sha a commit SHA for the omr repository"
34
37
echo " -parallel (boolean) if 'true' then the clone j9 repository commands run in parallel, default is false"
35
38
echo " "
36
39
exit 1
37
40
}
38
41
39
42
# require bash 4.0 or later to support associative arrays
40
- bash_version=` bash --version | sed -n 1p`
41
- if [[ $bash_version != * " version 4." * ]] ; then
43
+ if [ " 0${BASH_VERSINFO[0]} " -lt 4 ] ; then
42
44
echo " Bash version 4.0 or later is required!"
43
45
exit 1
44
46
fi
45
47
46
- declare -A j9repos
47
48
declare -A branches
48
- declare -A default_j9repos=( [openj9]=eclipse/openj9 [omr]=eclipse/openj9-omr )
49
- declare -A default_branches=( [openj9]=master [omr]=openj9 )
50
49
declare -A commands
50
+ declare -A git_urls
51
51
declare -A shas
52
52
53
- pflag=" false"
54
- base_git_url=https://github.com
53
+ git_urls[openj9]=https://github.com/eclipse/openj9
54
+ branches[openj9]=master
55
+
56
+ git_urls[omr]=https://github.com/eclipse/openj9-omr
57
+ branches[omr]=openj9
58
+
59
+ pflag=false
55
60
56
- for i in " $@ "
57
- do
61
+ for i in " $@ " ; do
58
62
case $i in
59
63
-h | --help )
60
- usage
61
- ;;
62
-
63
- -r=* | --revision=* )
64
- hgtag=" ${i#* =} "
65
- ;;
64
+ usage
65
+ ;;
66
66
67
67
-openj9-repo=* )
68
- j9repos [openj9]=" ${i#* =} "
69
- ;;
68
+ git_urls [openj9]=" ${i#* =} "
69
+ ;;
70
70
71
71
-openj9-branch=* )
72
- branches[openj9]=" ${i#* =} "
73
- ;;
72
+ branches[openj9]=" ${i#* =} "
73
+ ;;
74
74
75
75
-openj9-sha=* )
76
- shas[openj9]=" ${i#* =} "
77
- ;;
76
+ shas[openj9]=" ${i#* =} "
77
+ ;;
78
78
79
79
-omr-repo=* )
80
- j9repos [omr]=" ${i#* =} "
81
- ;;
80
+ git_urls [omr]=" ${i#* =} "
81
+ ;;
82
82
83
83
-omr-branch=* )
84
- branches[omr]=" ${i#* =} "
85
- ;;
84
+ branches[omr]=" ${i#* =} "
85
+ ;;
86
86
87
87
-omr-sha=* )
88
- shas[omr]=" ${i#* =} "
89
- ;;
88
+ shas[omr]=" ${i#* =} "
89
+ ;;
90
90
91
91
-parallel=* )
92
- pflag=" ${i#* =} "
93
- ;;
92
+ pflag=" ${i#* =} "
93
+ ;;
94
94
95
95
' --' ) # no more options
96
- usage
97
- ;;
96
+ break
97
+ ;;
98
98
99
99
-* ) # bad option
100
- usage
101
- ;;
100
+ usage
101
+ ;;
102
102
103
103
* ) # bad option
104
- usage
105
- ;;
104
+ usage
105
+ ;;
106
106
esac
107
107
done
108
108
109
- git=` which git`
110
-
111
109
# clone OpenJ9 repos
112
110
date ' +[%F %T] Get OpenJ9 sources'
113
111
START_TIME=$( date +%s)
114
112
115
- for i in " ${! default_j9repos[@]} " ; do
116
- branch=${default_branches[$i]}
117
- if [ ${branches[$i]+_} ]; then
118
- branch=${branches[$i]}
119
- fi
113
+ for i in " ${! git_urls[@]} " ; do
114
+ branch=${branches[$i]}
120
115
121
- if [ -d ${i} ]; then
116
+ if [ -d ${i} ] ; then
122
117
echo
123
118
echo " Update ${i} source"
124
119
echo
125
120
126
121
cd ${i}
127
- git pull --rebase origin ${branch} || exit $?
122
+ git pull --rebase origin ${branch}
128
123
129
- if [ -f .gitmodules ]; then
130
- git pull --rebase --recurse-submodules=yes || exit $?
131
- git submodule update --rebase --recursive || exit $?
124
+ if [ -f .gitmodules ] ; then
125
+ git pull --rebase --recurse-submodules=yes
126
+ git submodule update --rebase --recursive
132
127
fi
133
- cd -
128
+ cd - > /dev/null
134
129
else
135
- git_url=${base_git_url} /${default_j9repos[$i]}
136
-
137
- if [ ${j9repos[$i]+_} ]; then
138
- git_url=" ${j9repos[$i]} "
139
- fi
140
-
141
- git_clone_command=" ${git} clone --recursive -b ${branch} ${git_url} ${i} "
142
- commands[$i ]=${git_clone_command}
130
+ git_clone_command=" git clone --recursive -b ${branch} ${git_urls[$i]} ${i} "
131
+ commands[$i ]=$git_clone_command
143
132
144
133
echo
145
134
echo " Clone repository: ${i} "
146
135
echo
147
136
148
- if [ ${pflag} = " true" ] ; then
137
+ if [ ${pflag} = true ] ; then
149
138
# run git clone in parallel
150
- ( ${ git_clone_command} ; echo " $? " > /tmp/${i} .pid.rc ) 2>&1 &
139
+ ( if $ git_clone_command ; then echo 0 ; else echo $? ; fi ) > /tmp/${i} .pid.rc 2>&1 &
151
140
else
152
- ${ git_clone_command} || exit $?
141
+ $git_clone_command
153
142
fi
154
143
fi
155
144
done
156
145
157
- if [ ${pflag} = " true" ] ; then
158
- # Wait for all subprocesses to complete
146
+ if [ ${pflag} = true ] ; then
147
+ # wait for all subprocesses to complete
159
148
wait
160
149
fi
161
150
162
151
END_TIME=$( date +%s)
163
152
date " +[%F %T] OpenJ9 clone repositories finished in $(( $END_TIME - $START_TIME )) seconds"
164
153
165
- for i in " ${! default_j9repos [@]} " ; do
166
- if [ -e /tmp/${i} .pid.rc ]; then
154
+ for i in " ${! git_urls [@]} " ; do
155
+ if [ -e /tmp/${i} .pid.rc ] ; then
167
156
# check if the git clone repository command failed
168
- rc=` cat /tmp/${i} .pid.rc | tr -d ' \n\r' `
157
+ rc=$( cat /tmp/${i} .pid.rc | tr -d ' \n\r' )
169
158
170
- if [ " $rc " -ne " 0 " ] ; then
159
+ if [ " $rc " != 0 ] ; then
171
160
echo " ERROR: repository ${i} exited abnormally!"
172
161
cat /tmp/${i} .pid.rc
173
162
echo " Re-run: ${commands[$i]} "
@@ -183,13 +172,13 @@ for i in "${!default_j9repos[@]}" ; do
183
172
fi
184
173
fi
185
174
186
- if [ ${shas[$i]+_} ] ; then
175
+ if [ " x ${shas[$i]} " != x ] ; then
187
176
echo
188
177
echo " Update ${i} to commit ID: ${shas[$i]} "
189
178
echo
190
179
191
180
cd ${i}
192
- git checkout ${shas[$i]} || exit $?
193
- cd -
181
+ git checkout ${shas[$i]}
182
+ cd - > /dev/null
194
183
fi
195
184
done
0 commit comments