[DEV-134] Made all precompilation checks run on everything instead of only the root dir.

This commit is contained in:
Stas Boutenko
2018-10-21 17:57:19 +03:00
parent 585f92aec9
commit bee911edc8

View File

@@ -19,12 +19,12 @@ RUN dep ensure -v -vendor-only
COPY . .
RUN gofmt -d -e -s .
RUN go vet .
RUN golint -set_exit_status .
RUN aligncheck .
RUN structcheck -e .
RUN varcheck -e .
RUN go fmt ./...
RUN go vet ./...
RUN golint -set_exit_status ./...
RUN aligncheck ./...
RUN structcheck -e ./...
RUN varcheck -e ./...
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o btcd .
RUN strip btcd