Skip to content

Commit

Permalink
Merge pull request #12 from kishaningithub/glide-to-dep-migration
Browse files Browse the repository at this point in the history
Migrate dependency manager from glide to dep. Fixes #11
  • Loading branch information
Aswin Karthik committed Jun 22, 2018
2 parents 5365669 + 62dcbd8 commit 70b3832
Show file tree
Hide file tree
Showing 5 changed files with 212 additions and 83 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ language: go
go:
- 1.10.x
install:
- curl https://glide.sh/get | sh
- glide install
- curl -sL https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
script:
- go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...
after_success:
Expand Down
156 changes: 156 additions & 0 deletions Gopkg.lock

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

54 changes: 54 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# 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]]
name = "github.com/aswinkarthik93/csvdiff"
version = "1.0.0"

[[constraint]]
name = "github.com/cespare/xxhash"
version = "1.0.0"

[[constraint]]
branch = "master"
name = "github.com/mitchellh/go-homedir"

[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.2"

[[constraint]]
name = "github.com/spf13/viper"
version = "1.0.2"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.1"

[prune]
go-tests = true
unused-packages = true
67 changes: 0 additions & 67 deletions glide.lock

This file was deleted.

14 changes: 0 additions & 14 deletions glide.yaml

This file was deleted.

0 comments on commit 70b3832

Please sign in to comment.