k3s/scripts/package-cli

64 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-01-01 08:23:01 +00:00
#!/bin/bash
2019-01-09 16:54:15 +00:00
set -e -x
cd $(dirname $0)/..
2019-11-12 23:36:04 +00:00
. ./scripts/version.sh
GO=${GO-go}
for i in crictl kubectl k3s-agent k3s-server k3s; do
rm -f bin/$i
ln -s containerd bin/$i
done
2019-01-09 16:54:15 +00:00
for i in bridge flannel host-local loopback portmap; do
rm -f bin/$i
ln -s cni bin/$i
2019-01-09 16:54:15 +00:00
done
2019-11-12 14:12:37 +00:00
cp contrib/util/check-config.sh bin/check-config
2019-01-09 16:54:15 +00:00
rm -rf build/data
2019-02-05 04:42:35 +00:00
mkdir -p build/data build/out
mkdir -p dist/artifacts
2019-01-09 16:54:15 +00:00
2019-11-12 14:12:37 +00:00
(
set +x
cd bin
find . -not -path '*/\.*' -type f -exec sha256sum {} \; | sed -e 's| \./| |' | sort -k2 >.sha256sums
(
for f in $(find . -type l); do
echo $f $(readlink $f)
done
) | sed -e 's|^\./||' | sort >.links
set -x
)
2019-09-06 00:39:18 +00:00
tar cvzf ./build/out/data.tar.gz --exclude ./bin/hyperkube ./bin ./etc
2019-02-05 04:42:35 +00:00
HASH=$(sha256sum ./build/out/data.tar.gz | awk '{print $1}')
2019-01-09 16:54:15 +00:00
2019-02-05 04:42:35 +00:00
cp ./build/out/data.tar.gz ./build/data/${HASH}.tgz
2019-01-09 16:54:15 +00:00
BIN_SUFFIX="-${ARCH}"
2019-01-09 16:54:15 +00:00
if [ ${ARCH} = amd64 ]; then
BIN_SUFFIX=""
elif [ ${ARCH} = arm ]; then
BIN_SUFFIX="-armhf"
2019-01-09 16:54:15 +00:00
fi
2019-01-01 08:23:01 +00:00
2019-02-05 04:42:35 +00:00
CMD_NAME=dist/artifacts/k3s${BIN_SUFFIX}
"${GO}" generate
LDFLAGS="
-X github.com/rancher/k3s/pkg/version.Version=$VERSION
-X github.com/rancher/k3s/pkg/version.GitCommit=${COMMIT:0:8}
-w -s
"
2019-01-09 16:54:15 +00:00
STATIC="-extldflags '-static'"
2020-05-05 23:26:05 +00:00
CGO_ENABLED=0 "${GO}" build -ldflags "$LDFLAGS $STATIC" -o ${CMD_NAME} ./cmd/k3s/main.go
2019-12-23 19:07:34 +00:00
2020-07-13 17:06:23 +00:00
stat ${CMD_NAME}
2019-12-23 19:07:34 +00:00
./scripts/build-upload ${CMD_NAME} ${COMMIT}