-
Notifications
You must be signed in to change notification settings - Fork 27
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
Remove local gopath #88
Merged
SchSeba
merged 4 commits into
k8snetworkplumbingwg:master
from
adrianchiris:remove-local-gopath
May 30, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
# Files | ||
.gopath | ||
.cover | ||
*.cover | ||
|
||
# Folders | ||
build/ | ||
bin/ | ||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
module github.com/Mellanox/ib-sriov-cni | ||
module github.com/k8snetworkplumbingwg/ib-sriov-cni | ||
|
||
go 1.20 | ||
|
||
require ( | ||
github.com/Mellanox/rdma-cni v1.0.1 | ||
github.com/containernetworking/cni v1.1.2 | ||
github.com/containernetworking/plugins v1.3.0 | ||
github.com/containernetworking/plugins v1.5.0 | ||
github.com/gofrs/flock v0.8.1 | ||
github.com/k8snetworkplumbingwg/rdma-cni v1.1.0 | ||
github.com/k8snetworkplumbingwg/sriovnet v1.2.0 | ||
github.com/onsi/ginkgo v1.16.5 | ||
github.com/onsi/gomega v1.27.6 | ||
github.com/onsi/ginkgo/v2 v2.19.0 | ||
github.com/onsi/gomega v1.33.1 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/vishvananda/netlink v1.2.1-beta.2 | ||
) | ||
|
||
require ( | ||
github.com/Mellanox/rdmamap v1.1.0 // indirect | ||
github.com/coreos/go-iptables v0.6.0 // indirect | ||
github.com/coreos/go-iptables v0.7.0 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/safchain/ethtool v0.3.0 // indirect | ||
github.com/spf13/afero v1.9.5 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/vishvananda/netns v0.0.4 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/tools v0.21.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice!