Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix issue168 #170

Merged
merged 9 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ builds:
- main: cmd/plax/main.go
id: plax
binary: plax
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
Expand All @@ -20,6 +22,8 @@ builds:
- main: cmd/plaxrun/main.go
id: plaxrun
binary: plaxrun
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
Expand All @@ -30,6 +34,8 @@ builds:
- main: cmd/plaxrun/plugins/report/stdout/main.go
id: plaxrun_report_stdout
binary: plaxrun_report_stdout
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
Expand All @@ -40,6 +46,8 @@ builds:
- main: cmd/plaxrun/plugins/report/octane/main.go
id: plaxrun_report_octane
binary: plaxrun_report_octane
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
Expand All @@ -50,6 +58,8 @@ builds:
- main: cmd/plaxrun/plugins/report/rp/main.go
id: plaxrun_report_rp
binary: plaxrun_report_rp
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
Expand All @@ -60,6 +70,8 @@ builds:
- main: cmd/yamlincl/main.go
id: yamlincl
binary: yamlincl
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ clean:

.PHONY: dist
dist: clean
goreleaser release --skip-publish --rm-dist
goreleaser release --skip=publish --clean

.PHONY: release
release: clean
goreleaser release --rm-dist
goreleaser release --clean

# A demonstratio of using a Go plug-in to load a MySQL driver at
# runtime for use in a Plax test that uses a SQL channel to talk to
Expand Down
Loading