-
Notifications
You must be signed in to change notification settings - Fork 13
/
release.sh
executable file
·85 lines (62 loc) · 2.09 KB
/
release.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
#!/bin/bash -e
EXPECTED_OTP=("25" "26" "27")
yes_or_exit() {
while true; do
read -r -p "$1 " yn
case $yn in
[Yy][Ee][sS]) true; break ;;
[Nn][Oo]) echo "Ok, bye bye!"; exit ;;
* ) echo "Please answer 'yes' or 'no'." ;;
esac
done
}
VERSION=$1
if [ "${VERSION}" == "" ]; then
echo "Error: a version argument corresponding to a tag must be supplied!"
exit
fi
read -r -p "Do you want to recreate _checkouts/rebar3_ex_doc? [yes/no] " yn
if [ $yn == "yes" ]; then
echo "Deleting _checkouts/rebar3_ex_doc..."
rm -rf _checkouts/rebar3_ex_doc
mkdir -p _checkouts
cd _checkouts
git clone https://github.com/starbelly/rebar3_ex_doc
cd rebar3_ex_doc
mkdir priv
else
cd _checkouts/rebar3_ex_doc
fi
git checkout "v${VERSION}"
EX_DOC_VER="v$(grep -m1 "@ex_doc_version" mix.exs | awk '{print $2}' | tr -d '"')"
for OTP_VER in "${EXPECTED_OTP[@]}"
do
echo "Fetching ex_doc ${EX_DOC_VER} escript from GitHub for OTP ${OTP_VER} ..."
curl -L -o ex_doc_otp_${OTP_VER} "https://github.com/elixir-lang/ex_doc/releases/download/${EX_DOC_VER}/ex_doc_otp_${OTP_VER}"
curl -L -o ex-doc-otp-${OTP_VER}.sha256sum "https://github.com/elixir-lang/ex_doc/releases/download/${EX_DOC_VER}/ex-doc-otp-${OTP_VER}.sha256sum"
echo "Validating integrity of ex_doc download..."
sha256sum -c ex-doc-otp-${OTP_VER}.sha256sum
chmod +x ex_doc_otp_${OTP_VER}
mv ex_doc_otp_${OTP_VER} priv
mv ex-doc-otp-${OTP_VER}.sha256sum priv
echo "Looks good!"
SIZE=$(du -ah priv/ex_doc_otp_${OTP_VER} | awk '{print $1}')
echo "Size of priv/ex_doc_otp_${OTP_VER}: $SIZE"
done
rebar3 ex_doc
echo
echo "Documentation has been generated for rebar3_ex_doc using rebar3_ex_doc."
echo "This should be checked before publishing."
echo
yes_or_exit "Open up the documentation?"
open doc/index.html
echo
yes_or_exit "Did everything look ok?"
for OTP_VER in "${EXPECTED_OTP[@]}"
do
if [ ! -f "priv/ex_doc_otp_${OTP_VER}" ]; then
echo "Expected file 'priv/ex_doc_otp_${OTP_VER}' does not exist."
exit 1
fi
done
rebar3 hex publish