Skip to content

Commit

Permalink
Reverted back to using GOPATH and dep as it broke plugin system. See g…
Browse files Browse the repository at this point in the history
…olang/go#26759 for more details

Signed-off-by: Oleg Sidorov <[email protected]>
  • Loading branch information
Oleg Sidorov committed Jul 29, 2019
1 parent a2609a8 commit 4c9f3ab
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 43 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ go:
- "1.12.x"

before_install:
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
- go get github.com/mattn/goveralls
- go test ./...

Expand Down
39 changes: 39 additions & 0 deletions Gopkg.lock

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

38 changes: 38 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

# 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"


[[constraint]]
name = "github.com/DataDog/zstd"
version = "1.4.1"

[[constraint]]
name = "github.com/fsnotify/fsnotify"
version = "1.4.7"

[[constraint]]
name = "github.com/golang/snappy"
version = "0.0.1"

[[constraint]]
name = "gopkg.in/yaml.v2"
version = "2.2.2"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BINARY_NAME=flowd
DOCKER_COMPOSE=docker-compose
GOCMD=GO111MODULE=on go
GOCMD=go
GOVERSION=1.12
GOBUILD=$(GOCMD) build
GOCLEAN=$(GOCMD) clean
Expand Down
13 changes: 0 additions & 13 deletions go.mod

This file was deleted.

29 changes: 0 additions & 29 deletions go.sum

This file was deleted.

0 comments on commit 4c9f3ab

Please sign in to comment.