-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
356 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# This is an example goreleaser.yaml file with some sane defaults. | ||
# Make sure to check the documentation at http://goreleaser.com | ||
builds: | ||
- main: main.go | ||
binary: solr-client | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
ldflags: | ||
- -s -X main.Version={{.Version}} -X main.GitRevString={{.Commit}} | ||
env: | ||
- CGO_ENABLED=0 | ||
- main: main.go | ||
binary: solr-client | ||
goos: | ||
- darwin | ||
goarch: | ||
- amd64 | ||
ldflags: | ||
- -s -X main.Version={{.Version}} -X main.GitRevString={{.Commit}} | ||
env: | ||
- CGO_ENABLED=0 | ||
- main: main.go | ||
binary: solr-client | ||
goos: | ||
- windows | ||
goarch: | ||
- amd64 | ||
ldflags: | ||
- -s -X main.Version={{.Version}} -X main.GitRevString={{.Commit}} | ||
env: | ||
- CGO_ENABLED=0 | ||
archive: | ||
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
replacements: | ||
amd64: 64-bit | ||
386: 32-bit | ||
darwin: macOS | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
checksum: | ||
name_template: 'SHA256.txt' | ||
snapshot: | ||
name_template: SNAPSHOT-{{.Commit}} | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
brew: | ||
name: solr-client | ||
github: | ||
owner: oleewere | ||
name: homebrew-repo | ||
commit_author: | ||
name: oleewere | ||
email: [email protected] | ||
folder: Formula | ||
homepage: "https://github.com/oleewere" | ||
description: "Software to manage multiple Ambari servers." | ||
test: | | ||
system "#{bin}/solr-client --version" | ||
install: | | ||
bin.install "solr-client" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.