forked from DevelopersRede/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·105 lines (83 loc) · 1.43 KB
/
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
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
#!/usr/bin/env bash
tag=`date +"%m.%d"`
image=magento2
error()
{
echo
echo -e "\e[91mAlguma coisa aconteceu. Verifique.\e[39m">&2
echo
exit 1
}
package()
{
if [ ! -z `git tag -l $1` ]; then
echo
echo -e "\e[91mA tag $1 já existe. Você precisa deletá-la antes de construir o pacote nessa versão.\e[39m">&2
echo
exit 1
fi
if [ ! command -v zip > /dev/null 2>&1 ]; then
echo
echo -e "\e[91mNão temos zip nesse sistema. Você precisará instalá-lo.\e[39m">&2
echo
exit 1
fi
zip -r magento2 * -x mysql -x .git -x Dockerfile -x docker-compose.yml -x build.sh -x README.md
if [ $? -ne 0 ]; then
error
fi
git tag -a $1 -m "Versão $1"
if [ $? -ne 0 ]; then
error
fi
git push origin $1
}
image()
{
echo
echo "Construindo a imagem $image:$tag."
echo
echo -e "\e[32mIsso pode demorar algum tempo...\e[39m"
echo
docker build -t $image:latest .
if [ $? -ne 0 ]; then
error
fi
docker tag $image:latest $image:$tag
if [ $? -ne 0 ]; then
error
fi
echo
echo -e "\e[32mImagem construída com sucesso.\e[39m"
echo
}
using()
{
echo
echo "Utilização:"
echo
echo "$0 image Para construir a imagem Docker"
echo "$0 package version Para construir o pacote. Especifique a versão do pacote"
echo
exit 1
}
if [[ -z $1 ]] ; then
using
else
case $1 in
help)
using
;;
image)
image
;;
package)
if [[ -z $2 ]]; then
using
fi
package $2
;;
*)
;;
esac
fi