-
Notifications
You must be signed in to change notification settings - Fork 114
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
chore: remove vendor directory #739
chore: remove vendor directory #739
Conversation
Thanks for your PR,
To skip the vendors CIs, Maintainers can use one of:
|
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.
if CI is green im on board with that
/test-all |
if CI is green, I'm also on board with this |
7bb5da1
to
615b9b1
Compare
Having issues with
Added |
3f034e9
to
9008124
Compare
@adrianchiris @bn222 FYI - had to add Edit: test |
9008124
to
f81700e
Compare
/test-all |
d7d23cf
to
4313ca3
Compare
cd4c50a
to
d4dc47c
Compare
/test-all |
3 similar comments
/test-all |
/test-all |
/test-all |
d4dc47c
to
d045930
Compare
/test-all |
1 similar comment
/test-all |
hi @tobiasgiese , end-to-end lanes are failing because of:
Would you mind adding the following changes (or anything similar) to this PR? |
873bc24
to
dc91cac
Compare
I think the issue is that the GH Actions runner has no real home directory. Also |
Seems like the issue is really the empty |
Makefile
Outdated
@@ -27,7 +27,7 @@ WEBHOOK_IMAGE_TAG?=$(IMAGE_REPO)/$(APP_NAME)-webhook:latest | |||
MAIN_PKG=cmd/manager/main.go | |||
export NAMESPACE?=openshift-sriov-network-operator | |||
export WATCH_NAMESPACE?=openshift-sriov-network-operator | |||
export GOFLAGS+=-mod=vendor | |||
export GOPATH=$(shell go env GOPATH) |
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.
can you change this to:
export HOME?=$(PWD)
also, can you split this commit that files deletions are separated to other file changes? It It makes very hard to browse changes.
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.
Ah, good idea! 👍🏻
Sure, let me split it
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.
The initial idea why I changed this line in the removal commit was that each commit is working. But I can separate them for sure
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.
Yeah, that's a good principle. But in GH it makes reviews pretty impossible 😅
dc91cac
to
26f9c7b
Compare
26f9c7b
to
077b50c
Compare
/test-e2e-nvidia-all |
077b50c
to
e7731d6
Compare
Switched to Go modules for dependency management. This simplifies our workflow and reduces repo size. Signed-off-by: Tobias Giese <[email protected]> Co-authored-by: Soule BA <[email protected]> Co-authored-by: killianmuldoon <[email protected]>
We have issue with GOPATH if no HOME env is set. To fix this we want to make the current directory as our new home. Signed-off-by: Tobias Giese <[email protected]> Co-authored-by: Andrea Panattoni <[email protected]>
Signed-off-by: Tobias Giese <[email protected]>
e7731d6
to
2102856
Compare
/test-e2e-nvidia-all |
1 similar comment
/test-e2e-nvidia-all |
2102856
to
29a761a
Compare
/test-e2e-nvidia-all |
/test-e2e-nvidia-all |
/test-all |
Signed-off-by: Tobias Giese <[email protected]> Co-authored-by: Andrea Panattoni <[email protected]>
29a761a
to
25585da
Compare
/test-e2e-nvidia-all all tests are running now 👍🏻 |
thanks for working on this one @tobiasgiese !! |
punching it ! 🚀 |
Switched to Go modules for dependency management. This simplifies our workflow and reduces repo size.