This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
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
1 parent
676b39e
commit 2e36896
Showing
5 changed files
with
93 additions
and
2 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
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
bin/ | ||
dist/ |
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,44 @@ | ||
# View goreleaser docs for configuration settings | ||
# https://goreleaser.com | ||
|
||
--- | ||
project_name: pgreplay | ||
|
||
builds: | ||
- binary: pgreplay | ||
main: cmd/pgreplay/main.go | ||
goos: | ||
- darwin | ||
- linux | ||
goarch: | ||
- amd64 | ||
ldflags: > | ||
-X github.com/gocardless/pgreplay/cmd/main.Version={{.Version}} | ||
-X github.com/gocardless/pgreplay/cmd/main.Commit={{.Commit}} | ||
-X github.com/gocardless/pgreplay/cmd/main.Date={{.Date}} | ||
-a | ||
-installsuffix cgo | ||
env: | ||
- CGO_ENABLED=0 | ||
|
||
nfpm: | ||
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
vendor: GoCardless | ||
homepage: https://github.com/gocardless/pgreplay-go | ||
maintainer: GoCardless Engineering <[email protected]> | ||
description: &description PostgreSQL load testing tool | ||
formats: | ||
- deb | ||
|
||
brew: | ||
github: | ||
owner: gocardless | ||
name: homebrew-taps | ||
commit_author: | ||
name: GoCardless Engineering | ||
email: [email protected] | ||
folder: Formula | ||
homepage: https://github.com/gocardless/pgreplay-go | ||
description: *description | ||
test: system "#{bin}/pgreplay version" | ||
install: bin.install "pgreplay" |
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 @@ | ||
0.1.0 |
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