Add license-check

Signed-off-by: Alex Ellis <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis 2017-11-06 19:40:24 +00:00
parent 715811ad6c
commit b92b0926fa

View File

@ -1,6 +1,8 @@
FROM golang:1.8.3 as build
WORKDIR /go/src/github.com/openfaas/faas/gateway
RUN curl -sL https://github.com/alexellis/license-check/releases/download/0.1/license-check > /usr/bin/license-check && chmod +x /usr/bin/license-check
COPY vendor vendor
COPY handlers handlers
@ -14,7 +16,8 @@ COPY plugin plugin
COPY server.go .
# Run a gofmt and exclude all vendored code.
RUN test -z "$(gofmt -l $(find . -type f -name '*.go' -not -path "./vendor/*"))" \
RUN license-check -path ./ --verbose=false \
&& test -z "$(gofmt -l $(find . -type f -name '*.go' -not -path "./vendor/*"))" \
&& go test $(go list ./... | grep -v integration | grep -v /vendor/ | grep -v /template/) -cover \
&& CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o gateway .