Skip to content

Commit

Permalink
Add Go 1.8 to CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
c4milo committed Mar 18, 2017
1 parent 7379f5d commit 1cf07e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ language: go
go:
- 1.4
- 1.5
- 1.8
- tip

matrix:
Expand Down
4 changes: 2 additions & 2 deletions common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ install:
compile:
@rm -rf build/
@gox $(LDFLAGS) \
-os="darwin" \
-osarch="darwin/amd64" \
-os="linux" \
-os="solaris" \
-os="freebsd" \
Expand All @@ -36,7 +36,7 @@ release: dist
@latest_tag=$$(git describe --tags `git rev-list --tags --max-count=1`); \
comparison="$$latest_tag..HEAD"; \
if [ -z "$$latest_tag" ]; then comparison=""; fi; \
changelog=$$(git log $$comparison --oneline --no-merges --reverse); \
changelog=$$(git log $$comparison --oneline --no-merges); \
github-release $(GHACCOUNT)/$(NAME) $(VERSION) $(BRANCH) "**Changelog**<br/>$$changelog" 'dist/*'; \
git pull

Expand Down

0 comments on commit 1cf07e5

Please sign in to comment.