Skip to content

Commit 5fff8e4

Browse files
committed
travis fix
1 parent 7f0d731 commit 5fff8e4

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
bin
2+
vendor
3+
Gopkg.lock
24
*.so
35
*.h

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ matrix:
1515
- go: tip
1616
fast_finish: true
1717

18+
before_install:
19+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep; fi
20+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget https://github.com/golang/dep/releases/download/v0.5.0/dep-darwin-amd64 -O $GOPATH/bin/dep; fi
21+
- chmod +x $GOPATH/bin/dep
22+
1823
install:
24+
- dep ensure
1925
- go get -u github.com/alecthomas/gometalinter
2026
- gometalinter --install
2127

Gopkg.toml

Whitespace-only changes.

0 commit comments

Comments
 (0)