Makefile: add a target to run tests#295
Conversation
|
On Thu, Jan 07, 2016 at 12:33:19PM -0800, Vincent Batts wrote:
With reliable Git configs, I'd replace ${TRAVIS_COMMIT_RANGE} with: @{upstream}..HEAD although for me, @{upstream} is usually my downstream GitHub Alternatively, we could assume that all branches are being developed REMOTE = $(shell git remote -v | sed -n 's|^([^[:space:]]_)[[:space:]]._github.com/opencontainers/specs.*|\1|p' | head -n1) I'm not sure which is more reliable: a. @{upstream} actually pointing at the upstream branch, or Alternatively, you could just require folks to set UPSTREAM UPSTREAM = @{upstream} See #216 for why I prefer two dots to three. |
|
LGTM |
For now, just vet and lint. But would like to include the commit validator, once a good range is selectable. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
|
LGTM |
Since we can't go from the first commit, choosing an arbitrary epoch commit Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
|
LGTM |
Makefile: add a target to run tests
For now, just vet and lint. But would like to include the commit
validator, once a good range is selectable.
Signed-off-by: Vincent Batts vbatts@hashbangbash.com