mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 10:28:29 -07:00
99 lines
2.4 KiB
Bash
99 lines
2.4 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
# AdGuard Home Build Script
|
||
|
#
|
||
|
# The commentary in this file is written with the assumption that the
|
||
|
# reader only has superficial knowledge of the POSIX shell language and
|
||
|
# alike. Experienced readers may find it overly verbose.
|
||
|
|
||
|
# The default verbosity level is 0. Show every command that is run and
|
||
|
# every package that is processed if the caller requested verbosity
|
||
|
# level greater than 0. Also show subcommands if the requested
|
||
|
# verbosity level is greater than 1. Otherwise, do nothing.
|
||
|
verbose="${VERBOSE:-0}"
|
||
|
if [ "$verbose" -gt '1' ]
|
||
|
then
|
||
|
env
|
||
|
set -x
|
||
|
readonly v_flags='-v'
|
||
|
readonly x_flags='-x'
|
||
|
elif [ "$verbose" -gt '0' ]
|
||
|
then
|
||
|
set -x
|
||
|
readonly v_flags='-v'
|
||
|
readonly x_flags=''
|
||
|
else
|
||
|
set +x
|
||
|
readonly v_flags=''
|
||
|
readonly x_flags=''
|
||
|
fi
|
||
|
|
||
|
# Exit the script if a pipeline fails (-e), prevent accidental filename
|
||
|
# expansion (-f), and consider undefined variables as errors (-u).
|
||
|
set -e -f -u
|
||
|
|
||
|
# Allow users to set the Go version.
|
||
|
go="${GO:-go}"
|
||
|
|
||
|
# Require the channel to be set and validate the value.
|
||
|
channel="$CHANNEL"
|
||
|
case "$channel"
|
||
|
in
|
||
|
('development'|'edge'|'beta'|'release')
|
||
|
# All is well, go on.
|
||
|
;;
|
||
|
(*)
|
||
|
echo "invalid channel '$channel', supported values are\
|
||
|
'development', 'edge', 'beta', and 'release'" 1>&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
# Require the version to be set.
|
||
|
#
|
||
|
# TODO(a.garipov): Additional validation?
|
||
|
version="$VERSION"
|
||
|
|
||
|
# Set the linker flags accordingly: set the channel and the versio as
|
||
|
# well as goarm and gomips variable values, if the variables are set and
|
||
|
# are not empty.
|
||
|
ldflags="-s -w -X main.version=${version}"
|
||
|
ldflags="${ldflags} -X main.channel=${channel}"
|
||
|
if [ "${GOARM:-}" != '' ]
|
||
|
then
|
||
|
ldflags="${ldflags} -X main.goarm=${GOARM}"
|
||
|
elif [ "${GOMIPS:-}" != '' ]
|
||
|
then
|
||
|
ldflags="${ldflags} -X main.gomips=${GOMIPS}"
|
||
|
fi
|
||
|
|
||
|
# Allow users to limit the build's parallelism.
|
||
|
readonly parallelism="${PARALLELISM:-}"
|
||
|
if [ "$parallelism" != '' ]
|
||
|
then
|
||
|
readonly par_flags="-p ${parallelism}"
|
||
|
else
|
||
|
readonly par_flags=''
|
||
|
fi
|
||
|
|
||
|
# Allow users to specify a different output name.
|
||
|
readonly out="${OUT:-}"
|
||
|
if [ "$out" != '' ]
|
||
|
then
|
||
|
readonly out_flags="-o ${out}"
|
||
|
else
|
||
|
readonly out_flags=''
|
||
|
fi
|
||
|
|
||
|
# Don't use cgo. Use modules.
|
||
|
export CGO_ENABLED='0' GO111MODULE='on'
|
||
|
|
||
|
readonly build_flags="${BUILD_FLAGS:-$out_flags $par_flags\
|
||
|
$v_flags $x_flags}"
|
||
|
|
||
|
# Don't use quotes with flag variables to get word splitting.
|
||
|
"$go" generate $v_flags $x_flags ./...
|
||
|
|
||
|
# Don't use quotes with flag variables to get word splitting.
|
||
|
"$go" build --ldflags "$ldflags" $build_flags
|