mirror of
https://github.com/openfaas/faas.git
synced 2025-06-12 02:06:46 +00:00
Add license-check
Signed-off-by: Alex Ellis <alexellis2@gmail.com>
This commit is contained in:
parent
715811ad6c
commit
b92b0926fa
@ -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 .
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user