mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-05 04:55:22 +00:00
* Add linter to Makefile and build image * Also make it part of verify step Signed-off-by: Tony Batard <tbatard@pivotal.io> * clean up of Makefile and permissions for .go/golangci-lint Signed-off-by: Duffie Cooley <cooleyd@vmware.com> * changed verify-lint.sh to lint.sh to avoid breaking ci Signed-off-by: mtritabaugh <mtritabaugh@vmware.com> * Add changelog Signed-off-by: Tony Batard <tbatard@pivotal.io> * Add LINTERS option to run only specific linters * e.g. make lint LINTERS=unused,deadcode Signed-off-by: Tony Batard <tbatard@pivotal.io> * adding timeout to golangci-lint, and checking cache Signed-off-by: Matyas Danter <mdanter@vmware.com> * Fixed some formatting and added comments Signed-off-by: Matyas Danter <mdanter@vmware.com> * modifying lint script to use golangci.yaml Signed-off-by: Matyas Danter <mdanter@vmware.com> * update to move default linters to Makefile Signed-off-by: mtritabaugh <mtritabaugh@vmware.com> * Adding documentation for lint make targets. Signed-off-by: Matyas Danter <mdanter@vmware.com> * Update Copyright with current year Signed-off-by: Tony Batard <tbatard@pivotal.io> * initial git workflow commit Signed-off-by: mtritabaugh <mtritabaugh@vmware.com> * Added lint-all target and implemented -n as default * Added a local-lint-all and lint-all target that will show lint errors for all of the codebase * changed the default of lint and local-lint to only show new lint errors Signed-off-by: Duffie Cooley <cooleyd@vmware.com> * updated docs to reflect new target Signed-off-by: mtritabaugh <mtritabaugh@vmware.com> Co-authored-by: Duffie Cooley <cooleyd@vmware.com> Co-authored-by: mtritabaugh <mtritabaugh@vmware.com> Co-authored-by: Matyas Danter <mdanter@vmware.com>
50 lines
2.1 KiB
Docker
50 lines
2.1 KiB
Docker
# Copyright 2018, 2019, 2020 the Velero contributors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
FROM golang:1.14
|
|
|
|
ENV GO111MODULE=on
|
|
# Use a proxy for go modules to reduce the likelihood of various hosts being down and breaking the build
|
|
ENV GOPROXY=https://proxy.golang.org
|
|
|
|
# get code-generation tools (for now keep in GOPATH since they're not fully modules-compatible yet)
|
|
RUN mkdir -p /go/src/k8s.io
|
|
WORKDIR /go/src/k8s.io
|
|
RUN git config --global advice.detachedHead false
|
|
RUN git clone -b kubernetes-1.17.0 https://github.com/kubernetes/code-generator
|
|
|
|
# get controller-tools
|
|
RUN go get sigs.k8s.io/controller-tools/cmd/controller-gen@v0.2.4
|
|
|
|
# get goimports (the revision is pinned so we don't indiscriminately update, but the particular commit
|
|
# is not important)
|
|
RUN go get golang.org/x/tools/cmd/goimports@11e9d9cc0042e6bd10337d4d2c3e5d9295508e7d
|
|
|
|
# get protoc compiler and golang plugin
|
|
WORKDIR /root
|
|
RUN apt-get update && apt-get install -y unzip
|
|
RUN wget --quiet https://github.com/protocolbuffers/protobuf/releases/download/v3.9.1/protoc-3.9.1-linux-x86_64.zip && \
|
|
unzip protoc-3.9.1-linux-x86_64.zip && \
|
|
mv bin/protoc /usr/bin/protoc && \
|
|
chmod +x /usr/bin/protoc
|
|
RUN go get github.com/golang/protobuf/protoc-gen-go@v1.0.0
|
|
|
|
# get goreleaser
|
|
RUN wget --quiet https://github.com/goreleaser/goreleaser/releases/download/v0.120.8/goreleaser_Linux_x86_64.tar.gz && \
|
|
tar xvf goreleaser_Linux_x86_64.tar.gz && \
|
|
mv goreleaser /usr/bin/goreleaser && \
|
|
chmod +x /usr/bin/goreleaser
|
|
|
|
# get golangci-lint
|
|
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.27.0 |