mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 15:14:36 +00:00
bc382bba46
Fixes #697 Switched to golangci-lint, fixes issues with buildkite and does some linting fixes to appease the new linters.
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
steps:
|
|
- command:
|
|
# https://github.com/golangci/golangci-lint#memory-usage-of-golangci-lint
|
|
- "GOGC=20 ./scripts/find-lint.sh"
|
|
label: "\U0001F9F9 Lint / :go: 1.12"
|
|
agents:
|
|
# Use a larger instance as linting takes a looot of memory
|
|
queue: "medium"
|
|
plugins:
|
|
- docker#v3.0.1:
|
|
image: "golang:1.12"
|
|
|
|
- wait
|
|
|
|
- command:
|
|
- "go build ./cmd/..."
|
|
label: "\U0001F528 Build / :go: 1.11"
|
|
plugins:
|
|
- docker#v3.0.1:
|
|
image: "golang:1.11"
|
|
retry:
|
|
automatic:
|
|
- exit_status: 128
|
|
limit: 3
|
|
|
|
- command:
|
|
- "go build ./cmd/..."
|
|
label: "\U0001F528 Build / :go: 1.12"
|
|
plugins:
|
|
- docker#v3.0.1:
|
|
image: "golang:1.12"
|
|
retry:
|
|
automatic:
|
|
- exit_status: 128
|
|
limit: 3
|
|
|
|
- command:
|
|
- "go test ./..."
|
|
label: "\U0001F9EA Unit tests / :go: 1.11"
|
|
plugins:
|
|
- docker#v3.0.1:
|
|
image: "golang:1.11"
|
|
|
|
- command:
|
|
- "go test ./..."
|
|
label: "\U0001F9EA Unit tests / :go: 1.12"
|
|
plugins:
|
|
- docker#v3.0.1:
|
|
image: "golang:1.12"
|