mirror of https://github.com/pressly/goose.git
Add vendoring.
- Add vendor dependencies for better macos homebrew support - Referencing #42 - Referencing Homebrew/homebrew-core#14724" Signed-off-by: Mario Kozjak <kozjakm1@gmail.com> Add vendoring. - Add vendor dependencies for better macos homebrew support - Referencing #42 - Referencing Homebrew/homebrew-core#14724 Signed-off-by: Mario Kozjak <kozjakm1@gmail.com> Revert "Add vendoring. (glide)" This reverts commit 8e3eb6282c955f14d493d6f084b3cf4fb4ad7b2b. vendoring: removed vendor/; moved Gopkg.toml to topdir; removed Gopkg.lock Signed-off-by: Mario Kozjak <kozjakm1@gmail.com> travis: use golang/dep for dependency resolving; referencing #51 Signed-off-by: Mario Kozjak <kozjakm1@gmail.com> Gopkg.toml: remove examples Signed-off-by: Mario Kozjak <kozjakm1@gmail.com> Gopkg.toml: goose doesn't need to pull itself :) Signed-off-by: Mario Kozjak <kozjakm1@gmail.com> Gopkg.toml: should be able to upgrade minor versions Signed-off-by: Mario Kozjak <kozjakm1@gmail.com>pull/51/head
parent
d9477382e1
commit
33c4e7f6a3
|
@ -5,10 +5,8 @@ go:
|
|||
- tip
|
||||
|
||||
install:
|
||||
- go get github.com/go-sql-driver/mysql
|
||||
- go get github.com/lib/pq
|
||||
- go get github.com/mattn/go-sqlite3
|
||||
- go get github.com/ziutek/mymysql/godrv
|
||||
- go get github.com/golang/dep/cmd/dep
|
||||
- dep ensure
|
||||
|
||||
script:
|
||||
- go test
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
[[constraint]]
|
||||
name = "github.com/go-sql-driver/mysql"
|
||||
version = "^1.3.0"
|
||||
|
||||
[[constraint]]
|
||||
branch = "master"
|
||||
name = "github.com/lib/pq"
|
||||
|
||||
[[constraint]]
|
||||
name = "github.com/mattn/go-sqlite3"
|
||||
version = "^1.2.0"
|
Loading…
Reference in New Issue