mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 13:05:36 +03:00
2968a65f14
Updates #2275.
Updates #3057.
Squashed commit of the following:
commit da22ad203cec1ef2a5d0a218933ddc3ac03c2ad3
Merge: dbd7e202 779fbe79
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Dec 22 16:26:46 2021 +0300
Merge branch 'master' into 2275-upd-go
commit dbd7e20209ddc04198e89698b7e3c2750c4d9902
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Dec 22 15:04:17 2021 +0300
all: upd docker img
commit 269796e3a00f60120a6327d6501f2dde031435c4
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Dec 21 21:04:25 2021 +0300
all: upd go, tools, deps
47 lines
890 B
Bash
47 lines
890 B
Bash
#!/bin/sh
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
readonly verbose
|
|
|
|
# Verbosity levels:
|
|
# 0 = Don't print anything except for errors.
|
|
# 1 = Print commands, but not nested commands.
|
|
# 2 = Print everything.
|
|
if [ "$verbose" -gt '1' ]
|
|
then
|
|
set -x
|
|
v_flags='-v=1'
|
|
x_flags='-x=1'
|
|
elif [ "$verbose" -gt '0' ]
|
|
then
|
|
set -x
|
|
v_flags='-v=1'
|
|
x_flags='-x=0'
|
|
else
|
|
set +x
|
|
v_flags='-v=0'
|
|
x_flags='-x=0'
|
|
fi
|
|
readonly v_flags x_flags
|
|
|
|
set -e -f -u
|
|
|
|
if [ "${RACE:-1}" -eq '0' ]
|
|
then
|
|
race_flags='--race=0'
|
|
else
|
|
race_flags='--race=1'
|
|
fi
|
|
readonly race_flags
|
|
|
|
go="${GO:-go}"
|
|
readonly go
|
|
|
|
count_flags='--count=1'
|
|
cover_flags='--coverprofile=./coverage.txt'
|
|
shuffle_flags='--shuffle=on'
|
|
timeout_flags="${TIMEOUT_FLAGS:---timeout=30s}"
|
|
readonly count_flags cover_flags shuffle_flags timeout_flags
|
|
|
|
"$go" test "$count_flags" "$cover_flags" "$race_flags" "$shuffle_flags" "$timeout_flags"\
|
|
"$x_flags" "$v_flags" ./...
|