-
Notifications
You must be signed in to change notification settings - Fork 50
/
do-build.sh
executable file
·59 lines (51 loc) · 1.42 KB
/
do-build.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
#!/bin/bash
#
# Inventory Profiles Next
#
# Copyright (c) 2024 Plamen K. Kosseff <p.kosseff@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
PROJ="fabric-1.14 fabric-1.15 fabric-1.16 fabric-1.17 fabric-1.18 fabric-1.18.2 fabric-1.19 forge-1.14 forge-1.15 forge-1.16 forge-1.17 forge-1.18.2"
echo
echo
echo
free
echo
echo
echo
echo
for i in $PROJ; do
echo
echo
echo '**********************************'
echo "Will build $i"
echo '**********************************'
echo
echo
cd platforms/$i
../../gradlew --max-workers 1 -S --build-cache build
cd ../../
killall -9 java
done
killall -9 java
echo
echo
echo '**********************************'
echo "End with full build"
echo '**********************************'
echo
echo
./gradlew --max-workers 1 -S --build-cache build
exit 0