forked from zaach/jison
-
Notifications
You must be signed in to change notification settings - Fork 20
/
git-tag-and-bump-and-rebuild.sh
278 lines (198 loc) · 12.2 KB
/
git-tag-and-bump-and-rebuild.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#! /bin/bash
#
#
# check if important files exist; if not, abort mission!
# Prevent major boo-boo's which only pollute our git repo!
#
are_we_okay() {
if ! file_exists lib/util/ebnf-parser.js ; then
return 1; # fail
fi
if ! file_exists lib/util/ebnf-transform.js ; then
return 1; # fail
fi
if ! file_exists lib/util/lex-parser.js ; then
return 1; # fail
fi
if ! file_exists lib/util/parser.js ; then
return 1; # fail
fi
if ! file_exists lib/util/regexp-lexer.js ; then
return 1; # fail
fi
if ! file_exists lib/util/set.js ; then
return 1; # fail
fi
if ! file_exists lib/util/transform-parser.js ; then
return 1; # fail
fi
if ! file_exists lib/util/typal.js ; then
return 1; # fail
fi
return 0; # ok!
}
file_exists() {
if test -n "$1" && test -f "$1"; then
return 0; // ok
else
return 1; # fail
fi
}
# ---------------------------------------------------------------------------
pushd $(dirname $0) 2> /dev/null > /dev/null
# to emulate GOTO: we run a loop and BREAK out of it:
while true; do
# ---------------------------------------------------------------------------
# stage 1: rebuild all libraries from scratch, using existing NPM packages.
# Commit.
# ---------------------------------------------------------------------------
# discard the package-lock files as these keep us stuck on specific versions while we WANT to upgrade all around now!
find . -iname package-lock.json -delete
if ! make npm-update ; then break; fi; # GOTO END on failure
# make sure we regenerate the package-lock.json files BEFORE we run another git-commit:
if ! make superclean ; then break; fi; # GOTO END on failure
if ! make prep ; then break; fi; # GOTO END on failure
if ! make site ; then break; fi; # GOTO END on failure
if ! are_we_okay ; then break; fi; # GOTO END on failure
# git submodule foreach git commit -a -m 'rebuilt library files'
# ^-- one or more subrepo's may fail as there'ld be nothing to commit,
# which would abort the `git submodule foreach` command!
pushd modules/ebnf-parser/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/jison2json/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/jison-lex/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/json2jison/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/lex-parser/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
# ---------------------------------------------------------------------------
# stage 2: repeat step 1 for good measure: now JISON at least has freshly
# regenerated files in lib/util/ hence expect the results to be
# ever so slightly different from the previous run!
# ---------------------------------------------------------------------------
if ! make superclean ; then break; fi; # GOTO END on failure
if ! make prep ; then break; fi; # GOTO END on failure
if ! make site ; then break; fi; # GOTO END on failure
if ! are_we_okay ; then break; fi; # GOTO END on failure
pushd modules/ebnf-parser/ 2> /dev/null > /dev/null
git commit -a -m 'rebuilt library files'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/jison2json/ 2> /dev/null > /dev/null
git commit -a -m 'rebuilt library files'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/jison-lex/ 2> /dev/null > /dev/null
git commit -a -m 'rebuilt library files'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/json2jison/ 2> /dev/null > /dev/null
git commit -a -m 'rebuilt library files'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/lex-parser/ 2> /dev/null > /dev/null
git commit -a -m 'rebuilt library files'
git push --all
popd 2> /dev/null > /dev/null
git commit -a -m 'rebuilt library files'
git push --all
# ---------------------------------------------------------------------------
# stage 3: Tag and Publish.
# ---------------------------------------------------------------------------
if ! make git-tag ; then break; fi; # GOTO END on failure
if ! are_we_okay ; then break; fi; # GOTO END on failure
if ! make publish ; then break; fi; # GOTO END on failure
if ! are_we_okay ; then break; fi; # GOTO END on failure
# ---------------------------------------------------------------------------
# stage 4: Bump build revision for future work, commit & push.
# ---------------------------------------------------------------------------
if ! make bump ; then break; fi; # GOTO END on failure
if ! are_we_okay ; then break; fi; # GOTO END on failure
# git submodule foreach git commit -a -m 'rebuilt library files'
# ^-- one or more subrepo's may fail as there'ld be nothing to commit,
# which would abort the `git submodule foreach` command!
pushd modules/ebnf-parser/ 2> /dev/null > /dev/null
git commit -a -m 'bumped build revision'
git push --all
git push --tags
popd 2> /dev/null > /dev/null
pushd modules/jison2json/ 2> /dev/null > /dev/null
git commit -a -m 'bumped build revision'
git push --all
git push --tags
popd 2> /dev/null > /dev/null
pushd modules/jison-lex/ 2> /dev/null > /dev/null
git commit -a -m 'bumped build revision'
git push --all
git push --tags
popd 2> /dev/null > /dev/null
pushd modules/json2jison/ 2> /dev/null > /dev/null
git commit -a -m 'bumped build revision'
git push --all
git push --tags
popd 2> /dev/null > /dev/null
pushd modules/lex-parser/ 2> /dev/null > /dev/null
git commit -a -m 'bumped build revision'
git push --all
git push --tags
popd 2> /dev/null > /dev/null
git commit -a -m 'bumped build revision'
git push --all
git push --tags
# ---------------------------------------------------------------------------
# stage 5: update NPM packages, if any; rebuild & commit
# ---------------------------------------------------------------------------
# rebuild everything before we go and tag the buggers!
#make git-tag
#make site
#../../../util/git_pull_push.sh -f
# discard the package-lock files as these keep us stuck on specific versions while we WANT to upgrade all around now!
find . -iname package-lock.json -delete
if ! make npm-update ; then break; fi; # GOTO END on failure
# make sure we regenerate the package-lock.json files BEFORE we run another git-commit:
if ! make superclean ; then break; fi; # GOTO END on failure
if ! make prep ; then break; fi; # GOTO END on failure
if ! make site ; then break; fi; # GOTO END on failure
if ! are_we_okay ; then break; fi; # GOTO END on failure
pushd modules/ebnf-parser/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/jison2json/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/jison-lex/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/json2jison/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
pushd modules/lex-parser/ 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
popd 2> /dev/null > /dev/null
git commit -a -m 'updated NPM packages'
git push --all
echo "Done. You can now continue work on the new version:"
node lib/cli.js -V
# end of BREAK-as-emulation-of-GOTO loop:
break
done
popd 2> /dev/null > /dev/null