Skip to content

Commit

Permalink
Switch to go mod
Browse files Browse the repository at this point in the history
This commmit also update the kubernetes version.

Signed-off-by: Sebastian Sch <[email protected]>
  • Loading branch information
SchSeba authored and ahalimx86 committed May 12, 2020
1 parent 4e0302a commit 6a451ad
Show file tree
Hide file tree
Showing 18,890 changed files with 31,740 additions and 4,962,023 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 3 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ endif
GO = go
GODOC = godoc
GOFMT = gofmt
GLIDE = glide
TIMEOUT = 15
V = 0
Q = $(if $(filter 1,$V),,@)
Expand Down Expand Up @@ -140,14 +139,9 @@ fmt: ; $(info running gofmt...) @ ## Run gofmt on all source files
done ; exit $$ret

# Dependency management

glide.lock: glide.yaml | $(BASE) ; $(info updating dependencies...)
$Q cd $(BASE) && $(GLIDE) update -v
@touch $@
vendor: glide.lock | $(BASE) ; $(info retrieving dependencies...)
$Q cd $(BASE) && $(GLIDE) --quiet install -v
@ln -nsf . vendor/src
@touch $@
.PHONY: deps-update
deps-update: ; $(info updating dependencies...)
go mod tidy && go mod vendor

# Docker image
# To pass proxy for Docker invoke it as 'make image HTTP_POXY=http://192.168.0.1:8080'
Expand Down
195 changes: 0 additions & 195 deletions glide.lock

This file was deleted.

25 changes: 0 additions & 25 deletions glide.yaml

This file was deleted.

18 changes: 18 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module github.com/intel/sriov-network-device-plugin

go 1.13

require (
github.com/Mellanox/rdmamap v1.0.0
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/jaypipes/ghw v0.6.0
github.com/jaypipes/pcidb v0.5.0
github.com/onsi/ginkgo v1.12.0
github.com/onsi/gomega v1.9.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.5.1
github.com/vishvananda/netlink v1.1.0
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
google.golang.org/grpc v1.28.1
k8s.io/kubelet v0.18.1
)
Loading

0 comments on commit 6a451ad

Please sign in to comment.