This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 670
Why does make
try to build tools/runner?
#1893
Comments
CC @tomwilkie |
Yup we can remove that, but we we surely get complaints for people who try to run the tests manually (@rade). I could add it to the run-smoketests target? |
Fine, but I don't normally run that; I tend to run |
And make |
Exactly. that was the idea. |
rade
added a commit
that referenced
this issue
Jan 21, 2016
That way a plain 'make' works out-of-the-box. Fixes #1893.
rade
added a commit
that referenced
this issue
Jan 21, 2016
That way a plain 'make' works out-of-the-box. Fixes #1893.
rade
added a commit
that referenced
this issue
Jan 21, 2016
move smoke test dependencies from 'all' to 'testrunner' target Fixes #1893.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
With #1861, it is almost possible to checkout weaveworks/weave in an arbitrary location (i.e. not under your GOPATH) and do
make
.Almost, but not quite, because it fails while doing
make -C tools/runner
. But it's not obvious to me why theall
target needs to do that anyway (if one considers the point of the default target to be to satisfy the instructions insite/building.md
).tools/runner
looks like something for circleci, and surely circleci can invoke make with some other target to get what it needs?If I remove
$(RUNNER_EXE)
as a dependency ofall
, then a build succeeds when not under GOPATH.The text was updated successfully, but these errors were encountered: