-
Notifications
You must be signed in to change notification settings - Fork 557
Conversation
a3026bc
to
726b433
Compare
Makefile
Outdated
@@ -23,7 +23,7 @@ _build: | |||
go build -v -ldflags="-X github.com/Azure/acs-engine/cmd.BuildSHA=${VERSION} -X github.com/Azure/acs-engine/cmd.BuildTime=${BUILD}" | |||
cd test/acs-engine-test; go build -v | |||
|
|||
build: prereqs _build | |||
build: _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.
Might as well remove _build
and replace with build
. I had kept build
so that a naive make
or make build
would work out of the box. If build
doesn't automatically invoke glide
, then the user has to know to run an additional step. But I'm fine with it either way.
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.
👍
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.
lgtm
@acs-bot test this please |
5835729
to
fdcc925
Compare
Rebased off of master and removed the |
@acs-bot test this please |
b018c38
to
1528b96
Compare
This introduces go coding standards to the project and automation to run as part of CI and tests to enforce them.
Add documentation that the project follows Go coding style standards closely so
go fmt
can take care of most formatting issues and end bike shedding.We should also follow the conventions recommended by go lint and gometalinter.
make test-style
runs static validations and linting checksAddress all static validation and linting errors
make ci
also runstest-style
Fixes #692
This change is