hoarder/.travis.yml

16 lines
472 B
YAML
Raw Normal View History

2016-05-13 18:14:25 -04:00
language: go
go:
- 1.6
2016-05-16 20:55:31 -04:00
2016-05-16 21:09:00 -04:00
env:
- DATE=$(date '+%s') BUILD_VERSION='v0.1.0'
2016-05-16 21:09:00 -04:00
2016-05-16 20:55:31 -04:00
before_install:
- go get github.com/mitchellh/gox
- go get github.com/tcnksm/ghr
after_success:
- gox -ldflags "-X 'main.buildVersion=$BUILD_VERSION ($TRAVIS_COMMIT)' -X 'main.buildDate=$DATE'" -output "dist/hoarder_{{.OS}}_{{.Arch}}" ./cmd/hoarder
- ghr --username tblyler --token $GITHUB_TOKEN --replace --prerelease --debug $BUILD_VERSION dist/