Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved dependency management from govendor to dep #41

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
language: go

go: "1.9"
go: "1.11.1"

go_import_path: github.com/nanopack/shaman

services:
- postgresql

before_script:
- scripts/travis_consul.sh
- sudo -H pip install awscli

install:
- go get github.com/kardianos/govendor
- govendor sync

- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
script:
- govendor test +local -cover -v
- go test ./...

after_success:
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
Expand Down
292 changes: 292 additions & 0 deletions Gopkg.lock

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

50 changes: 50 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
branch = "master"
name = "github.com/gorilla/pat"

[[constraint]]
branch = "master"
name = "github.com/jcelliott/lumber"

[[constraint]]
name = "github.com/miekg/dns"
version = "1.0.4"

[[constraint]]
branch = "master"
name = "github.com/nanobox-io/golang-nanoauth"

[[constraint]]
name = "go.etcd.io/etcd"
version = "3.3.10"

[prune]
go-tests = true
unused-packages = true
Loading