Skip to content

Commit

Permalink
store dependencies' versions with godep
Browse files Browse the repository at this point in the history
These dependencies can be loaded into your $GOPATH simply executing
`godep restore`. This will allow builds to become reproducible, without
getting in the way of those wanting to consume parts of the project's
source code as a library.
  • Loading branch information
jzelinskie committed Apr 23, 2015
1 parent ab8306d commit 64fa0f8
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,9 @@ go:
- tip

install:
- go get github.com/badgerodon/peg
- go get github.com/barakmich/glog
- go get github.com/cznic/mathutil
- go get github.com/julienschmidt/httprouter
- go get github.com/petar/GoLLRB/llrb
- go get github.com/peterh/liner
- go get github.com/robertkrimen/otto
- go get github.com/russross/blackfriday
- go get github.com/syndtr/goleveldb/leveldb
- go get github.com/syndtr/goleveldb/leveldb/cache
- go get github.com/syndtr/goleveldb/leveldb/iterator
- go get github.com/syndtr/goleveldb/leveldb/opt
- go get github.com/syndtr/goleveldb/leveldb/util
- go get github.com/boltdb/bolt
- go get gopkg.in/mgo.v2
- go get gopkg.in/mgo.v2/bson
- go get code.google.com/p/go-uuid/uuid
# Install our tracked dependencies
- go get github.com/tools/godep
- godep restore

# Google App Engine dependencies
- cd ..
Expand All @@ -33,7 +19,7 @@ install:
- export PATH=$PATH:$PWD/go_appengine/
- cd cayley

script:
script:
- go test -v ./...
- goapp test -v ./graph/gaedatastore

65 changes: 65 additions & 0 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Godeps/Readme

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 64fa0f8

Please sign in to comment.