k3s/scripts/validate

29 lines
453 B
Text
Raw Normal View History

2019-01-01 03:23:01 -05:00
#!/bin/bash
set -e
cd $(dirname $0)/..
2019-03-25 00:50:02 -04:00
if ! command -v golangci-lint; then
echo Skipping validation: no golangci-lint available
exit
fi
2019-01-01 03:23:01 -05:00
echo Running validation
if [ ! -e build/data ];then
mkdir -p build/data
fi
2019-03-25 00:50:02 -04:00
echo Running: go generate
go generate
2019-03-25 00:50:02 -04:00
echo Running: golangci-lint
golangci-lint run
. ./scripts/version.sh
if [ -n "$DIRTY" ]; then
echo Source dir is dirty
git status --porcelain --untracked-files=no
2019-01-24 12:57:19 -05:00
exit 1
fi