mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
ba62c79f9b
Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com> Signed-off-by: galal-hussein <hussein.galal.ahmed.11@gmail.com>
34 lines
815 B
Bash
Executable File
34 lines
815 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "${DEBUG}" = 1 ]; then
|
|
set -x
|
|
fi
|
|
|
|
. ./scripts/version.sh
|
|
|
|
# Try to keep the K3s binary under 70 megabytes.
|
|
# "64M ought to be enough for anybody"
|
|
MAX_BINARY_MB=70
|
|
MAX_BINARY_SIZE=$((MAX_BINARY_MB * 1024 * 1024))
|
|
BIN_SUFFIX="-${ARCH}"
|
|
if [ ${ARCH} = amd64 ]; then
|
|
BIN_SUFFIX=""
|
|
elif [ ${ARCH} = arm ]; then
|
|
BIN_SUFFIX="-armhf"
|
|
elif [ ${ARCH} = s390x ]; then
|
|
BIN_SUFFIX="-s390x"
|
|
fi
|
|
|
|
CMD_NAME="dist/artifacts/k3s${BIN_SUFFIX}"
|
|
SIZE=$(stat -c '%s' ${CMD_NAME})
|
|
|
|
if [ ${SIZE} -gt ${MAX_BINARY_SIZE} ]; then
|
|
echo "k3s binary ${CMD_NAME} size ${SIZE} exceeds max acceptable size of ${MAX_BINARY_SIZE} bytes (${MAX_BINARY_MB} MiB)"
|
|
exit 1
|
|
fi
|
|
|
|
echo "k3s binary ${CMD_NAME} size ${SIZE} is less than max acceptable size of ${MAX_BINARY_SIZE} bytes (${MAX_BINARY_MB} MiB)"
|
|
exit 0
|