2017-10-10 12:02:39 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
# Runs the linters against dendrite
|
|
|
|
|
|
|
|
# The linters can take a lot of resources and are slow, so they can be
|
2019-06-19 15:05:03 +02:00
|
|
|
# configured using the following environment variables:
|
2017-10-10 12:02:39 +02:00
|
|
|
#
|
|
|
|
# - `DENDRITE_LINT_CONCURRENCY` - number of concurrent linters to run,
|
2019-06-19 15:05:03 +02:00
|
|
|
# golangci-lint defaults this to NumCPU
|
|
|
|
# - `GOGC` - how often to perform garbage collection during golangci-lint runs.
|
|
|
|
# Essentially a ratio of memory/speed. See https://github.com/golangci/golangci-lint#memory-usage-of-golangci-lint
|
|
|
|
# for more info.
|
2017-10-10 12:02:39 +02:00
|
|
|
|
|
|
|
|
2017-12-12 11:25:38 +01:00
|
|
|
set -eux
|
|
|
|
|
|
|
|
cd `dirname $0`/..
|
2017-10-10 12:02:39 +02:00
|
|
|
|
|
|
|
args=""
|
|
|
|
if [ ${1:-""} = "fast" ]
|
2019-06-19 15:05:03 +02:00
|
|
|
then args="--fast"
|
2017-10-10 12:02:39 +02:00
|
|
|
fi
|
|
|
|
|
2019-06-19 15:05:03 +02:00
|
|
|
echo "Installing golangci-lint..."
|
2019-07-12 15:23:27 +02:00
|
|
|
|
|
|
|
# Make a backup of go.{mod,sum} first
|
|
|
|
# TODO: Once go 1.13 is out, use go get's -mod=readonly option
|
|
|
|
# https://github.com/golang/go/issues/30667
|
|
|
|
cp go.mod go.mod.bak && cp go.sum go.sum.bak
|
2019-10-08 13:20:37 +02:00
|
|
|
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.19.1
|
2017-10-10 12:02:39 +02:00
|
|
|
|
|
|
|
echo "Looking for lint..."
|
2019-06-19 15:05:03 +02:00
|
|
|
golangci-lint run $args
|
2019-07-12 15:23:27 +02:00
|
|
|
|
|
|
|
# Restore go.{mod,sum}
|
|
|
|
mv go.mod.bak go.mod && mv go.sum.bak go.sum
|