Skip to content

Commit

Permalink
Switch from godep to dep; fix support for Golang 1.9 (#27)
Browse files Browse the repository at this point in the history
Support for Golang 1.9 in Skeema has been broken since master branch of
transitive dep github.com/docker/docker now requires Golang 1.10. By switching
to Dep, the dependency chain should now work properly for Golang 1.9.
  • Loading branch information
evanelias committed Jun 14, 2018
1 parent 43e61ca commit 6266641
Show file tree
Hide file tree
Showing 276 changed files with 11,641 additions and 1,544 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
@@ -1,7 +1,7 @@
sudo: required
language: go
go:
- "1.10.x"
- "1.9.x"
services:
- docker

Expand All @@ -12,15 +12,17 @@ env:
global:
- SKEEMA_TEST_IMAGES="mysql:5.6,mysql:5.7"

install: true

before_install:
- go get golang.org/x/lint/golint
- go get github.com/mattn/goveralls

script:
- go test -v -coverprofile=coverage.out -covermode=count
- go vet ./...
- go vet
- test -z "$(gofmt -s -d *.go 2>&1)"
- golint -set_exit_status .
- golint -set_exit_status

after_script:
- goveralls -coverprofile=coverage.out -service=travis-ci
257 changes: 0 additions & 257 deletions Godeps/Godeps.json

This file was deleted.

5 changes: 0 additions & 5 deletions Godeps/Readme

This file was deleted.

0 comments on commit 6266641

Please sign in to comment.