mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
71 lines
1.7 KiB
Bash
Executable File
71 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
set -o errexit
|
|
|
|
CDIR=$(cd `dirname "$0"` && pwd)
|
|
cd "$CDIR"
|
|
|
|
ORG_PATH="github.com/cloudflare"
|
|
REPO_PATH="${ORG_PATH}/cfssl"
|
|
ARCH="$(uname -m)"
|
|
|
|
export GOPATH="${CDIR}/gopath"
|
|
|
|
export PATH="${PATH}:${GOPATH}/bin"
|
|
|
|
eval $(go env)
|
|
|
|
if [ ! -h gopath/src/${REPO_PATH} ]; then
|
|
mkdir -p gopath/src/${ORG_PATH}
|
|
ln -s ../../../.. gopath/src/${REPO_PATH} || exit 255
|
|
fi
|
|
|
|
ls "${GOPATH}/src/${REPO_PATH}"
|
|
|
|
PACKAGES=""
|
|
if [ "$#" != 0 ]; then
|
|
for pkg in "$@"; do
|
|
PACKAGES="$PACKAGES $REPO_PATH/$pkg"
|
|
done
|
|
else
|
|
PACKAGES=$(go list ./... | grep -v /vendor/ | grep ^_)
|
|
# Escape current cirectory
|
|
CDIR_ESC=$(printf "%q" "$CDIR/")
|
|
# Remove current directory from the package path
|
|
PACKAGES=${PACKAGES//$CDIR_ESC/}
|
|
# Remove underscores
|
|
PACKAGES=${PACKAGES//_/}
|
|
# split PACKAGES into an array and prepend REPO_PATH to each local package
|
|
split=(${PACKAGES// / })
|
|
PACKAGES=${split[@]/#/${REPO_PATH}/}
|
|
fi
|
|
|
|
# Build and install cfssl executable in PATH
|
|
go install -tags "$BUILD_TAGS" ${REPO_PATH}/cmd/cfssl
|
|
|
|
COVPROFILES=""
|
|
for package in $(go list -f '{{if len .TestGoFiles}}{{.ImportPath}}{{end}}' $PACKAGES)
|
|
do
|
|
profile="$GOPATH/src/$package/.coverprofile"
|
|
if [ $ARCH = 'x86_64' ]; then
|
|
go test -race -tags "$BUILD_TAGS" --coverprofile=$profile $package
|
|
else
|
|
go test -tags "$BUILD_TAGS" --coverprofile=$profile $package
|
|
fi
|
|
[ -s $profile ] && COVPROFILES="$COVPROFILES $profile"
|
|
done
|
|
cat $COVPROFILES > coverprofile.txt
|
|
|
|
if ! command -v fgt > /dev/null ; then
|
|
go get github.com/GeertJohan/fgt
|
|
fi
|
|
|
|
if ! command -v golint > /dev/null ; then
|
|
go get github.com/golang/lint/golint
|
|
fi
|
|
|
|
for package in $PACKAGES
|
|
do
|
|
echo "fgt golint ${package}"
|
|
fgt golint "${package}"
|
|
done
|