chore: enable strict mode for test CI

Signed-off-by: Wei Fu <fuweid89@gmail.com>
This commit is contained in:
Wei Fu
2023-03-25 16:48:33 +08:00
parent 7230b943d0
commit 55bce22e97
13 changed files with 77 additions and 52 deletions

View File

@@ -3,11 +3,11 @@
# Build all release binaries and images to directory ./release.
# Run from repository root.
#
set -e
set -euo pipefail
source ./scripts/test_lib.sh
VERSION=$1
VERSION=${1:-}
if [ -z "${VERSION}" ]; then
echo "Usage: ${0} VERSION" >> /dev/stderr
exit 255