mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 13:55:17 +00:00
- Revert the version pin from #7706. - Override the YAML linter config to be more forgiving. - Update YAML lint warnings in a number of files. The choice of which lints to fix and which to override was ad hoc: I fixed the ones that were mainly whitespace oriented, and suppressed the ones that were document-structure related. Fixes #7707.
37 lines
644 B
YAML
37 lines
644 B
YAML
project_name: tendermint
|
|
|
|
env:
|
|
# Require use of Go modules.
|
|
- GO111MODULE=on
|
|
|
|
builds:
|
|
- id: "tendermint"
|
|
main: ./cmd/tendermint/main.go
|
|
ldflags:
|
|
- -s -w -X github.com/tendermint/tendermint/version.TMCoreSemVer={{ .Version }}
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- darwin
|
|
- linux
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
|
|
checksum:
|
|
name_template: SHA256SUMS-{{.Version}}.txt
|
|
algorithm: sha256
|
|
|
|
release:
|
|
name_template: "{{.Version}} (WARNING: BETA SOFTWARE)"
|
|
|
|
archives:
|
|
- files:
|
|
- LICENSE
|
|
- README.md
|
|
- UPGRADING.md
|
|
- SECURITY.md
|
|
- CHANGELOG.md
|