-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from fclairamb/travis-setup-releases
Travis setup releases
- Loading branch information
Showing
1 changed file
with
16 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# We don't really need it (at least for now) | ||
# before_install: | ||
# - sudo apt-get update -qq | ||
# - sudo apt-get install ftp -qq | ||
|
||
before_install: | ||
- go get github.com/golang/lint/golint | ||
- go get github.com/fzipp/gocyclo | ||
|
||
- go get github.com/golang/lint/golint | ||
- go get github.com/fzipp/gocyclo | ||
language: go | ||
|
||
# We're building for the two last versions | ||
go: | ||
- 1.7.x | ||
- 1.8.x | ||
|
||
- 1.7.x | ||
- 1.8.x | ||
script: | ||
- ./.check-fmt.sh | ||
- gocyclo -over 15 . | ||
- go test -v ./... | ||
- ./.check-fmt.sh | ||
- gocyclo -over 15 . | ||
- go test -v ./... | ||
- go build -v | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: K2o6tz2pw9OeIqVMu0sO01+9QFXA6GxG90PG3les4FOMqOUxyYZDPorMqlXpmAKD0mJWzP8PuWPSBfT9zSN3FkUHsjKA3mwvpab04rjFGr5ccmm90EfVttFyzAY45fokSA3fJo5T3iGjPbmg8Qtey2ST7X8dmuTt2i2kzv30cE2rmCE2wUfGWmq2r43ygaJBTjYtUCowxkDYsm/86qx0NB9SAD7LRDEWc62bcc0+CJZtRE5XXG4YhDJxDJWgMSEdwPt3i/c4NqYhOGCoLpBAh77mgHLJKf0NaThLa3Z6vVKog4/dBxJGSu+QvqA7jS6S6Pm72wWvcUqSPzL2TMk8zvD2KND9q6RPdTn1MuzvARn+IZOf5ndGgDjilcNgCXuC2adOzuo7rbecmTSkbzgux+RGRixr93p13Vn4Nt/WqLMq2ftqAv/gvmAi3OntShcKv9487zML/tDIxdvXXf7fmJDKl59eBKVddrY1GjzdcNVU8l+UoenrXIJh6+sTKcxLDVoqGb34T9QLWLYEK9bqGcmSHy9MFmjE/vh4vu8K8Fgrcpb/GHruRCqpFWIS2SxQaPawc8zVtBMXOvpnb8839Bi0HtdbInE6FynOUgHQ87UyFgwwB6v5YFAOgSpStpPqVX5O4UWZ2vNI1N83qSnxZfOmiayAA1Z7zlPPZTNq4rY= | ||
file: ftpserver | ||
skip_cleanup: true | ||
on: | ||
tags: true |