Skip to content

Commit

Permalink
Building static binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Oct 7, 2015
1 parent aadd58b commit 4d26dd5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
anonuuid

/dist

# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
Expand Down
12 changes: 12 additions & 0 deletions .goxc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"AppName": "anonuuid",
"ArtifactsDest": "dist",
"OutPath": "{{.Dest}}{{.PS}}{{.Version}}{{.PS}}{{.Os}}_{{.Arch}}{{.PS}}{{.ExeName}}{{.Ext}}",
"TasksExclude": [
"go-test",
"go-vet"
],
"MainDirsExclude": "vendor,Godeps,testdata",
"PackageVersion": "1.0",
"ConfigVersion": "0.9"
}
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
.PHONY: convey
convey:
go get github.com/smartystreets/goconvey
goconvey -cover -port=9090 -workDir="$(realpath .)" -depth=0


.PHONY: goxc
goxc:
goxc

0 comments on commit 4d26dd5

Please sign in to comment.