-
Notifications
You must be signed in to change notification settings - Fork 180
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
Makefile, Vagrantfile: refactor of build system #133
Conversation
is CI down? |
godep go install -v $(TO_BUILD) | ||
|
||
build: start | ||
vagrant ssh netplugin-node1 -c 'sudo -i bash -lc "source /etc/profile.d/envvar.sh && cd /opt/golang/src/github.com/contiv/netplugin && make run-build"' |
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.
I think we should stop the vm once build is done, otherwise it will stay running.
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 problem with that is that each build will trigger a vm restart -- this is very slow for a build/test cycle.
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.
ok, but if user were to just do make build
and stop. They won't know that we left a vm running behind. And If they decide to yank out their workspace and pull a new one, this vm will stay there consuming resources.
I might be coming out a bit paranoid but cleanup somewhat seems a lot safer at expense of spending some time :)
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.
I don't see how this is any different from typical vagrant usage -- if someone does that without stopping the VM, they will be stuck with the same solution, pkill VBoxManage
roughly.
I understand your desire but we have to figure out whether keeping the build time down or protecting the user is more important here. I don't know if there's a way to get the best of both worlds.
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.
I don't see how this is any different from typical vagrant usage
Yes, this is not different in behavior. The only difference is wrt user's experience. In case of doing vagrant up
and then deleting the workspace we can consider it to be error on user's part if it leaves behind a vm. But if a user does make build
and then delete their workspace which leaves behind a vm, it is not an error on their part.
You are right there is no easy way to achieve both in this case i.e. protect the user or improved build time. We can may be print a informative message about the running vm after build to alleviate this a bit. For now, I am ok starting with what we have here as it does solves the builds on mac.
ping @jainvipin @shaleman as well to get their thoughts.
LGTM except for the closure on Otherwise good to merge after sanity passes. |
decided:
|
This implements several features for the build system: * Builds happen on the VM in a consistent way, so they can happen on non linux platforms. * New builder images include: * First class support of 4.0 (Ubuntu) and 4.1 (CentOS) mainline kernels * Docker 1.8.1 * systemd (with proxy support) Signed-off-by: Erik Hollensbe <[email protected]>
Signed-off-by: Erik Hollensbe <[email protected]>
Signed-off-by: Erik Hollensbe <[email protected]>
…stroys the VM after build Signed-off-by: Erik Hollensbe <[email protected]>
@erikh +1
|
|
@mapuri this is completing on everything but DIND, and we recently discussed disabling those tests. Perhaps now is the time? :) |
@erikh, for this particular PR if it's just the known ovs/timing failure I think we should let his one go in as it's a known failure. For disabling the DIND I am fine turning them off. I am just wondering, if we should watch for a little bit more into recent and future sanity failures that relate to the DIND environment. Somehow I have a feeling that this failure is one off and can be hit in any environment. WDYT? also ping @jainvipin, to conveniently punt the decision to him :) |
The test failures are DIND-only now. The heisenbug in the ovs code can be handled out-of-band. Happy to punt to @jainvipin too :) |
Ok, then I believe this can be merged. If nobody objects I will tomorrow. |
sure, SGTM. I have disabled DIND sanity in our jenkins CI. We can eventually cleanup the DIND related code as a separate PR. I will file an issue for the same. |
Makefile, Vagrantfile: refactor of build system
This implements several features for the build system:
platforms.
Signed-off-by: Erik Hollensbe [email protected]