mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 03:29:44 +00:00
32 lines
510 B
Bash
Executable File
32 lines
510 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
if ! command -v golangci-lint; then
|
|
echo Skipping validation: no golangci-lint available
|
|
exit
|
|
fi
|
|
echo Running validation
|
|
|
|
if [ ! -e build/data ];then
|
|
mkdir -p build/data
|
|
fi
|
|
|
|
echo Running: go generate
|
|
go generate
|
|
|
|
echo Running: golangci-lint
|
|
golangci-lint run
|
|
|
|
GO111MODULE=on go mod tidy
|
|
GO111MODULE=on go mod vendor
|
|
|
|
. ./scripts/version.sh
|
|
|
|
if [ -n "$DIRTY" ]; then
|
|
echo Source dir is dirty
|
|
git status --porcelain --untracked-files=no
|
|
exit 1
|
|
fi
|