Skip to content

Commit

Permalink
Include tempo-cli in the release (#1086)
Browse files Browse the repository at this point in the history
* Include tempo-cli in the release

* Update changelog
  • Loading branch information
zalegrala authored Oct 28, 2021
1 parent 5124375 commit 0eba30e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,25 @@ builds:
- -X main.Revision={{ .ShortCommit }}
- -X main.Version={{ .Version }}
mod_timestamp: '{{ .CommitTimestamp }}'
- id: "tempo-cli"
main: ./cmd/tempo-cli
binary: tempo-cli
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
flags:
- -v
- -trimpath
ldflags:
- -s
- -w
- -X main.Branch={{ .Branch }}
- -X main.Revision={{ .ShortCommit }}
- -X main.Version={{ .Version }}
mod_timestamp: '{{ .CommitTimestamp }}'
changelog:
skip: true
sort: asc
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
* [ENHANCEMENT] Allow search disablement in vulture [#1069](https://github.com/grafana/tempo/pull/1069) (@zalegrala)
* [ENHANCEMENT] Jsonnet: add `$._config.search_enabled`, correctly set `http_api_prefix` in config [#1072](https://github.com/grafana/tempo/pull/1072) (@kvrhdn)
* [ENHANCEMENT] Performance: Remove WAL contention between ingest and searches [#1076](https://github.com/grafana/tempo/pull/1076) (@mdisibio)
* [ENHANCEMENT] Include tempo-cli in the release [#1086](https://github.com/grafana/tempo/pull/1086) (@zalegrala)
* [BUGFIX] Update port spec for GCS docker-compose example [#869](https://github.com/grafana/tempo/pull/869) (@zalegrala)
* [BUGFIX] Fix "magic number" errors and other block mishandling when an ingester forcefully shuts down [#937](https://github.com/grafana/tempo/issues/937) (@mdisibio)
* [BUGFIX] Fix compactor memory leak [#806](https://github.com/grafana/tempo/pull/806) (@mdisibio)
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ release: $(GORELEASER)
$(GORELEASER) build --skip-validate --rm-dist
$(GORELEASER) release --rm-dist

release-snapshot: $(GORELEASER)
$(GORELEASER) build --skip-validate --rm-dist --snapshot

### Docs
DOCS_IMAGE = grafana/docs-base:latest

Expand Down

0 comments on commit 0eba30e

Please sign in to comment.