Skip to content

Commit

Permalink
Update gitignore and ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
danielqsj committed Dec 6, 2017
1 parent 019a432 commit 3cca26a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

# Output of the go coverage tool, specifically when used with LiteIDE
*.out
.build/

# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/
Expand All @@ -18,3 +19,7 @@ kafka_exporter

# Project IDE
.idea/
*.iml

# Test configuration
test/
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ services:
language: go

go:
- 1.8
- 1.9

after_success:
- make docker
- make push
- if [[ -n "$TRAVIS_TAG" ]]; then make crossbuild release; fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
make docker;
make push;
fi
- if [[ -n "$TRAVIS_TAG" ]]; then
make crossbuild release;
fi

0 comments on commit 3cca26a

Please sign in to comment.