mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
28 lines
533 B
Bash
28 lines
533 B
Bash
#!/usr/bin/env bash
|
|
|
|
coverage=$1
|
|
|
|
# find all path that contains go.mod.
|
|
for file in `find . -name go.mod`; do
|
|
dirpath=$(dirname $file)
|
|
echo $dirpath
|
|
|
|
# package kuhecm needs golang >= v1.19
|
|
if [ "kubecm" = $(basename $dirpath) ]; then
|
|
if ! go version|grep -qE "go1.[2-9][0-9]"; then
|
|
echo "ignore kubecm as go version: $(go version)"
|
|
continue 1
|
|
fi
|
|
else
|
|
continue 1
|
|
fi
|
|
|
|
cd $dirpath
|
|
|
|
go mod tidy
|
|
go build ./...
|
|
go test ./... -race || exit 1
|
|
|
|
cd -
|
|
done
|