Skip to content
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

introduce top-level Makefile to build the docker binary #161

Merged
merged 7 commits into from
Mar 27, 2013

Conversation

sa2ajj
Copy link
Contributor

@sa2ajj sa2ajj commented Mar 25, 2013

No description provided.

@srid
Copy link
Contributor

srid commented Mar 25, 2013

the Makefile should respect an existing GOPATH if defined. otherwise, it will violate a Go developer's already set-up development environment. for example, i keep all my Go sources at ~/go/src (with GOPATH set to ~/go), but this Makefile will unwittingly overwrite it.

@sa2ajj
Copy link
Contributor Author

sa2ajj commented Mar 25, 2013

@srid very good point. thank you. Let me think how to address this.

@sa2ajj
Copy link
Contributor Author

sa2ajj commented Mar 25, 2013

@srid, will this approach work for you?

@srid
Copy link
Contributor

srid commented Mar 26, 2013

+1 ... i personally have two preferences,

  • use ./.gopath instead of ./build just to make it explicit. ./build generally won't contain source code, but in our case it will.
  • pass the -v flag to go get and go build for more verbose output from build, so that we will know what packages are being downloaded, and what docker packages are being built.

@sa2ajj
Copy link
Contributor Author

sa2ajj commented Mar 26, 2013

@srid, I changed thedir to .gopath and introduced a possibility to perform verbose operations

@srid
Copy link
Contributor

srid commented Mar 26, 2013

@sa2ajj so far looks good to me, except this: i have the docker source repo cloned under $GOPATH/src/github.com/dotcloud/docker (in future, once docker goes public, i could use go get to directly fetch the repo under the same directory). it looks like the Makefile will delete this directory upon make clean.

when .gopath is not in use (i.e., $GOPATH is already defined), $DOCKER_DIR can be assumed to exist, and is the same as the directory where the Makefile lives.

@sa2ajj
Copy link
Contributor Author

sa2ajj commented Mar 26, 2013

@srid, you have a very particular setup that helps to find all corner cases :)

I took a slightly different approach. Does it work for you?

@rm -rf $(dir $(DOCKER_BIN))
ifeq ($(GOPATH), $(BUILD_DIR))
@rm -rf $(BUILD_DIR)
else ifneq ($(DOCKER_DIR), $(realpath $(DOCKER_DIR)))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure why the clean target is not being simply written as follows.

clean:
    @rm -rf $(dir $(DOCKER_BIN))
    @rm -rf $(BUILD_DIR)

it seems to take care of both the cases (GOPATH being already set or not).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

because it takes care of three cases:

GOPATH is notset
GOPATH is set, but docker is elsewhere
GOPATH is set and docker is within it

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you're building with the Makefile, aren't you implicitly expecting that
GOPATH will be overridden for the duration of the build?

Eg. I don't think there's a need for injecting other GOPATH locations into
the build.

On Tue, Mar 26, 2013 at 10:49 AM, Mikhail Sobolev
[email protected]:

In Makefile:

+all: $(DOCKER_BIN)
+
+$(DOCKER_BIN): $(DOCKER_DIR)

  • @mkdir -p $(dir $@)
  • @(cd $(DOCKER_MAIN); go get $(GO_OPTIONS); go build $(GO_OPTIONS) -o $@)
  • @echo $(DOCKER_BIN_RELATIVE) is created.

+$(DOCKER_DIR):

+clean:

  • @rm -rf $(dir $(DOCKER_BIN))
    +ifeq ($(GOPATH), $(BUILD_DIR))
  • @rm -rf $(BUILD_DIR)
    +else ifneq ($(DOCKER_DIR), $(realpath $(DOCKER_DIR)))

because it takes care of three cases:

GOPATH is notset
GOPATH is set, but docker is elsewhere
GOPATH is set and docker is within it


Reply to this email directly or view it on GitHubhttps://github.com//pull/161/files#r3536213
.

@sa2ajj
Copy link
Contributor Author

sa2ajj commented Mar 26, 2013

I think the original concern is quite valid: you do not want to download the same deps again and again. And for some people (or situations) that might be a problem. So if GOPATH is already set, let's re-use whatever is available there (downloaded and built).

@shykes
Copy link
Contributor

shykes commented Mar 27, 2013

So, any outstanding issues? Should I try it out and merge if it works for me?

@sa2ajj
Copy link
Contributor Author

sa2ajj commented Mar 27, 2013

I think it's now good to go (more testing from the open source users will tell us if there's any issue:))

@shykes shykes merged commit f961ec5 into moby:master Mar 27, 2013
@sa2ajj sa2ajj deleted the top-level-makefile branch March 27, 2013 21:46
@sa2ajj sa2ajj mentioned this pull request Mar 29, 2013
runcom pushed a commit to runcom/docker that referenced this pull request Jun 8, 2016
container: memory_store: fix deadlock [rhel7-1.10.3]
liusdu pushed a commit to liusdu/moby that referenced this pull request Oct 30, 2017
upstream issue: moby#30311
Cherry-pick from moby#30340
fix moby#161

Signed-off-by: Dmitry Shyshkin <[email protected]>
Signed-off-by: Lei Jitang <[email protected]>
liusdu pushed a commit to liusdu/moby that referenced this pull request Oct 30, 2017
Fix docker leaks ExecIds on failed exec -i

upstream issue: moby#30311
Cherry-pick from moby#30340
fix moby#161

Signed-off-by: Dmitry Shyshkin <[email protected]>
Signed-off-by: Lei Jitang <[email protected]>


See merge request docker/docker!275
thaJeztah pushed a commit to thaJeztah/docker that referenced this pull request Feb 22, 2019
[18.09] Backport "Disabled these tests on s390x and ppc64le:"
dperny pushed a commit to dperny/docker that referenced this pull request Oct 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants