-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_release7.sh
executable file
·274 lines (245 loc) · 15.1 KB
/
build_release7.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
#!/bin/sh
RELEASEBRANCH="patch7"
SQUASHBRANCH="squashed7"
CLIENTBRANCH="client7"
AMPACHEDIR=$PWD
COMPOSERPATH="/usr/local/bin/composer"
if [ ! -d $AMPACHEDIR/ampache-patch7 ]; then
git clone -b patch7 https://github.com/ampache/ampache.git ampache-patch7
fi
if [ ! -f $AMPACHEDIR/ampache-patch7/index.php ]; then
rm -rf $AMPACHEDIR/ampache-patch7
git clone -b patch7 https://github.com/ampache/ampache.git ampache-patch7
fi
cd $AMPACHEDIR/ampache-patch7 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
RELEASEVERSION=`grep -oP '[0-9]+\.[0-9]+\.[0-9]+' $AMPACHEDIR/ampache-patch7/src/Config/Init/InitializationHandlerConfig.php`
if [ ! $# -eq 0 ]; then
RELEASEVERSION=$1
fi
echo
echo $RELEASEVERSION
echo
if [ ! -d $AMPACHEDIR/releases ]; then
mkdir $AMPACHEDIR/releases
fi
if [ ! -d $AMPACHEDIR/releases/7 ]; then
mkdir $AMPACHEDIR/releases/7
fi
if [ ! -f $COMPOSERPATH ]; then
COMPOSERPATH="$AMPACHEDIR/docker/composer"
wget -q -O $COMPOSERPATH https://getcomposer.org/download/latest-stable/composer.phar
chmod +x $COMPOSERPATH
fi
cd $AMPACHEDIR/releases/7
if [ ! -d $AMPACHEDIR/releases/7/generic ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git generic
fi
if [ ! -d $AMPACHEDIR/releases/7/generic_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git generic_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/generic_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git generic_client
fi
if [ ! -d $AMPACHEDIR/releases/7/php82 ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php82
fi
if [ ! -f $AMPACHEDIR/releases/7/php82/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php82
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php82
fi
if [ ! -d $AMPACHEDIR/releases/7/php82_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php82_squashed
fi
if [ ! -f $AMPACHEDIR/releases/7/php82_squashed/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php82_squashed
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php82_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/php82_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php82_client
fi
if [ ! -f $AMPACHEDIR/releases/7/php82_client/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php82_client
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php82_client
fi
if [ ! -d $AMPACHEDIR/releases/7/php83 ]; then
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php83
fi
if [ ! -f $AMPACHEDIR/releases/7/php83/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php83
git clone -b $RELEASEBRANCH https://github.com/ampache/ampache.git php83
fi
if [ ! -d $AMPACHEDIR/releases/7/php83_squashed ]; then
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php83_squashed
fi
if [ ! -f $AMPACHEDIR/releases/7/php83_squashed/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php83_squashed
git clone -b $SQUASHBRANCH https://github.com/ampache/ampache.git php83_squashed
fi
if [ ! -d $AMPACHEDIR/releases/7/php83_client ]; then
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php83_client
fi
if [ ! -f $AMPACHEDIR/releases/7/php83_client/index.php ]; then
rm -rf $AMPACHEDIR/releases/7/php83_client
git clone -b $CLIENTBRANCH https://github.com/ampache/ampache.git php83_client
fi
# force reset everything
cd $AMPACHEDIR/releases/7/generic && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/generic_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/generic_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
cd $AMPACHEDIR/releases/7/php82 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/php82_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/php82_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
cd $AMPACHEDIR/releases/7/php83 && git fetch origin $RELEASEBRANCH && git checkout -f $RELEASEBRANCH && git reset --hard origin/$RELEASEBRANCH && git pull
cd $AMPACHEDIR/releases/7/php83_squashed && git fetch origin $SQUASHBRANCH && git checkout -f $SQUASHBRANCH && git reset --hard origin/$SQUASHBRANCH && git pull
cd $AMPACHEDIR/releases/7/php83_client && git fetch origin $CLIENTBRANCH && git checkout -f $CLIENTBRANCH && git reset --hard origin/$CLIENTBRANCH && git pull
# GENERIC (No composer packages installed)
cd $AMPACHEDIR/releases/7/generic
rm -rf ./composer.lock ./package-lock.json vendor/* public/lib/components/*
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/generic_squashed
rm -rf ./composer.lock ./package-lock.json vendor/* ./lib/components/* ./docker/
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/generic_client
rm -rf ./composer.lock ./package-lock.json vendor/* public/client/lib/components/*
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# php 8.2
cd $AMPACHEDIR/releases/7/php82
rm -rf ./composer.lock ./package-lock.json vendor/* public/lib/components/*
php8.2 $COMPOSERPATH install
npm install
npm run build
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php82_squashed
rm -rf ./composer.lock ./package-lock.json vendor/* ./lib/components/* ./docker/
php8.2 $COMPOSERPATH install
npm install
npm run build
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php82_client
rm -rf ./composer.lock ./package-lock.json vendor/* public/client/lib/components/*
php8.2 $COMPOSERPATH install
npm install
npm run build
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# php 8.3
cd $AMPACHEDIR/releases/7/php83
rm -rf ./composer.lock ./package-lock.json vendor/* public/lib/components/*
php8.3 $COMPOSERPATH install
npm install
npm run build
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php83_squashed
rm -rf ./composer.lock ./package-lock.json vendor/* ./lib/components/* ./docker/
php8.3 $COMPOSERPATH install
npm install
npm run build
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
cd $AMPACHEDIR/releases/7/php83_client
rm -rf ./composer.lock ./package-lock.json vendor/* public/client/lib/components/*
php8.3 $COMPOSERPATH install
npm install
npm run build
find . -xtype l -exec rm {} \;
find . -name "*.map.1" -exec rm {} \;
# remove possible old release files before building the new one
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.2.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.2.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.2.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.2.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.3.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.3.zip
fi
if [ -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.3.zip ]; then
rm $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.3.zip
fi
# Build Releases
## GENERIC
cd $AMPACHEDIR/releases/7/generic && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../../ampache-${RELEASEVERSION}_public.zip ./
cd $AMPACHEDIR/releases/7/generic_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_squashed.zip ./ ./
cd $AMPACHEDIR/releases/7/generic_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../../ampache-${RELEASEVERSION}_client.zip ./
## php 8.2
cd $AMPACHEDIR/releases/7/php82 && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.2.zip ./
cd $AMPACHEDIR/releases/7/php82_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_all_squashed_php8.2.zip ./
cd $AMPACHEDIR/releases/7/php82_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_client_php8.2.zip ./
## php 8.3
cd $AMPACHEDIR/releases/7/php83 && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_php8.3.zip ./
cd $AMPACHEDIR/releases/7/php83_squashed && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./rest/.htaccess --exclude=./play/.htaccess --exclude=./channel/.htaccess ./../../ampache-${RELEASEVERSION}_all_squashed_php8.3.zip ./
cd $AMPACHEDIR/releases/7/php83_client && zip -r -q -u -9 --exclude=./config/ampache.cfg.php --exclude=./docker/* --exclude=./.git/* --exclude=./.github/* --exclude=./.tx/* --exclude=./.idea/* --exclude=.gitignore --exclude=.gitattributes --exclude=.scrutinizer.yml --exclude=CNAME --exclude=.codeclimate.yml --exclude=.php* --exclude=.tgitconfig --exclude=.travis.yml --exclude=./public/rest/.htaccess --exclude=./public/play/.htaccess --exclude=./public/channel/.htaccess ./../..//ampache-${RELEASEVERSION}_all_client_php8.3.zip ./
# go back
cd $AMPACHEDIR
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_public.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_squashed.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_client.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.2.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.2.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.2.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.2.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.2.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_php8.3.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.3.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_squashed_php8.3.zip
fi
if [ ! -f $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.3.zip ]; then
echo "ERROR " $AMPACHEDIR/releases/ampache-${RELEASEVERSION}_all_client_php8.3.zip
fi
cd $AMPACHEDIR/releases
# echo the version checksum
echo
echo "# ${RELEASEVERSION}"
echo
echo "php8.3"
md5sum ./ampache-${RELEASEVERSION}_all_php8.3.zip
md5sum ./ampache-${RELEASEVERSION}_all_squashed_php8.3.zip
md5sum ./ampache-${RELEASEVERSION}_all_client_php8.3.zip
echo
echo "php8.2"
md5sum ./ampache-${RELEASEVERSION}_all_php8.2.zip
md5sum ./ampache-${RELEASEVERSION}_all_squashed_php8.2.zip
md5sum ./ampache-${RELEASEVERSION}_all_client_php8.2.zip
echo
echo "**UNSUPPORTED** Code only release. (Requires composer install)"
md5sum ./ampache-${RELEASEVERSION}_public.zip
md5sum ./ampache-${RELEASEVERSION}_squashed.zip
md5sum ./ampache-${RELEASEVERSION}_client.zip
echo
echo
echo
# go home
cd $AMPACHEDIR