Skip to content

Commit

Permalink
Added goreleaser configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
DheerendraRathor committed Sep 26, 2017
1 parent a4b6b70 commit 8033bfc
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.ppm
*.png
GoTracer
dist/
40 changes: 40 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Build customization
builds:
- main: main.go
binary: GoTracer
goos:
- windows
- darwin
- linux
goarch:
- amd64
- main: net/agent/agent.go
binary: GoTracerAgent
goos:
- windows
- darwin
- linux
goarch:
- amd64
- main: net/master/master.go
binary: GoTracerMaster
goos:
- windows
- darwin
- linux
goarch:
- amd64

# Archive customization
archive:
format: tar.gz
replacements:
darwin: macOS
format_overrides:
- goos: windows
format: zip
files:
- README.md
- sample_world.json
- examples/fiveSpheres.json
- net/master/agents.json

0 comments on commit 8033bfc

Please sign in to comment.