-
Notifications
You must be signed in to change notification settings - Fork 4
/
build-executables.sh
executable file
·62 lines (53 loc) · 1.36 KB
/
build-executables.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
#!/usr/bin/env bash
# From: https://stackoverflow.com/a/53583797/23060
# From: https://gist.github.com/DimaKoz/06b7475317b12e7ffa724ef0e115a4ec
version=$1
if [[ -z "$version" ]]; then
echo "usage: $0 <version>"
exit 1
fi
package_name=rodeo
#
# The full list of the platforms is at: https://golang.org/doc/install/source#environment
platforms=(
"darwin/amd64"
"darwin/arm64"
"linux/amd64"
"linux/arm"
"linux/arm64"
"windows/amd64"
)
rm -rf release/
mkdir -p release
for platform in "${platforms[@]}"
do
platform_split=(${platform//\// })
os=${platform_split[0]}
GOOS=${platform_split[0]}
GOARCH=${platform_split[1]}
if [ $os = "darwin" ]; then
os="macOS"
fi
output_name=$package_name'-'$version'-'$os'-'$GOARCH
zip_name=$output_name
if [ $os = "windows" ]; then
output_name+='.exe'
fi
echo "Building release/$output_name..."
env GOOS=$GOOS GOARCH=$GOARCH go build \
-ldflags "-X github.com/akrabat/rodeo/commands.Version=$version" \
-o release/$output_name
if [ $? -ne 0 ]; then
echo 'An error has occurred! Aborting the script execution...'
exit 1
fi
pushd release > /dev/null
if [ $os = "windows" ]; then
zip $zip_name.zip $output_name
rm $output_name
else
chmod a+x $output_name
gzip $output_name
fi
popd > /dev/null
done