Skip to content

Commit e48a518

Browse files
authored
Go code checks can be run locally in container (#1012)
Before the only option was to spin up a VM to run code checks, which is expensive in terms of time. Add Dockerfile-check to provide a container build for a runtime environment that supports go tool vet, gofmt, and golint Add script 'code_checks_in_docker.sh' intended to be run inside the Dockerfile-check container that runs `make checks` which in turn runs a variety of go code checks against packages passed in. Checks are reordered so more severe issues (e.g. functional) are resolved before less severe ones (e.g. formatting). Some checks are upated to be simpler and faster because the command accept multiple directories and recurse automatically. Drive-by: * removed some trailing whitespace * added more exclusions in dockerignore * variables for go check commands not needed, they are only referenced once and require a visual lookup to find what the command actually is Signed-off-by: Chris Plock <[email protected]>
1 parent a5a12ce commit e48a518

File tree

4 files changed

+54
-12
lines changed

4 files changed

+54
-12
lines changed

.dockerignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# we want to get the git commit SHA but not all the binary repo data
22
.git/objects/pack
33
bin/
4+
.vagrant
45
vagrant/
56
docs/
67
scripts/gobgp
78
*.tar
89
*.bz2
910
# export from a docker container, no need to copy into any docker containers
1011
install/v2plugin/rootfs
12+
vagrant/k8s/export/netctl

Dockerfile-check

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM golang:1.7.6
2+
3+
ENV GOPATH=/go
4+
5+
WORKDIR /go/src/github.com/contiv/netplugin/
6+
7+
RUN go get github.com/golang/lint/golint \
8+
github.com/client9/misspell/cmd/misspell
9+
10+
CMD ["make", "checks"]

Makefile

+15-12
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ TAR_FILE := $(TAR_LOC)/$(TAR_FILENAME)
2727
GO_MIN_VERSION := 1.7
2828
GO_MAX_VERSION := 1.8
2929
GO_VERSION := $(shell go version | cut -d' ' -f3 | sed 's/go//')
30-
GOLINT_CMD := golint -set_exit_status
31-
GOFMT_CMD := gofmt -s -l
32-
GOVET_CMD := go tool vet
3330
CI_HOST_TARGETS ?= "host-unit-test host-integ-test host-build-docker-image"
3431
SYSTEM_TESTS_TO_RUN ?= "00SSH|Basic|Network|Policy|TestTrigger|ACIM|Netprofile"
3532
K8S_SYSTEM_TESTS_TO_RUN ?= "00SSH|Basic|Network|Policy"
@@ -67,19 +64,20 @@ godep-restore:
6764

6865
gofmt-src:
6966
$(info +++ gofmt $(PKG_DIRS))
70-
@for dir in $(PKG_DIRS); do $(GOFMT_CMD) $${dir} | grep "go"; [[ $$? -ne 0 ]] || exit 1; done
67+
@[[ -z "$$(gofmt -s -d $(PKG_DIRS) | tee /dev/stderr)" ]] || exit 1
7168

69+
# go lint does not automatically recurse
7270
golint-src:
7371
$(info +++ golint $(PKG_DIRS))
74-
@for dir in $(PKG_DIRS); do $(GOLINT_CMD) $${dir}/... || exit 1;done
72+
@for dir in $(PKG_DIRS); do golint -set_exit_status $${dir}/...; done
7573

7674
govet-src:
7775
$(info +++ govet $(PKG_DIRS))
78-
@for dir in $(PKG_DIRS); do $(GOVET_CMD) $${dir} || exit 1;done
76+
@go tool vet $(PKG_DIRS)
7977

8078
misspell-src:
8179
$(info +++ check spelling $(PKG_DIRS))
82-
misspell -locale US -error $(PKG_DIRS)
80+
@misspell -locale US -error $(PKG_DIRS)
8381

8482
go-version:
8583
$(info +++ check go version)
@@ -90,7 +88,12 @@ ifneq ($(GO_VERSION), $(firstword $(sort $(GO_VERSION) $(GO_MAX_VERSION))))
9088
$(error go version check failed, expected <= $(GO_MAX_VERSION), found $(GO_VERSION))
9189
endif
9290

93-
checks: go-version gofmt-src golint-src govet-src misspell-src
91+
checks: go-version govet-src golint-src gofmt-src misspell-src
92+
93+
# When multi-stage builds are available in VM, source can be copied into
94+
# container FROM the netplugin-build container to simplify this target
95+
checks-with-docker:
96+
scripts/code_checks_in_docker.sh $(PKG_DIRS)
9497

9598
compile:
9699
cd $(GOPATH)/src/github.com/contiv/netplugin && \
@@ -267,7 +270,7 @@ host-integ-test: host-cleanup start-aci-gw
267270

268271
start-aci-gw:
269272
@echo dev: starting aci gw...
270-
docker pull $(ACI_GW_IMAGE)
273+
docker pull $(ACI_GW_IMAGE)
271274
docker run --net=host -itd -e "APIC_URL=SANITY" -e "APIC_USERNAME=IGNORE" -e "APIC_PASSWORD=IGNORE" --name=contiv-aci-gw $(ACI_GW_IMAGE)
272275

273276
host-build-docker-image:
@@ -311,11 +314,11 @@ demo-v2plugin:
311314
vagrant ssh netplugin-node1 -c 'bash -lc "source /etc/profile.d/envvar.sh && cd /opt/gopath/src/github.com/contiv/netplugin && make host-pluginfs-create host-plugin-restart host-swarm-restart"'
312315

313316
# release a v2 plugin
314-
host-plugin-release:
317+
host-plugin-release:
315318
@echo dev: creating a docker v2plugin ...
316-
sh scripts/v2plugin_rootfs.sh
319+
sh scripts/v2plugin_rootfs.sh
317320
docker plugin create ${CONTIV_V2PLUGIN_NAME} install/v2plugin
318-
@echo dev: pushing ${CONTIV_V2PLUGIN_NAME} to docker hub
321+
@echo dev: pushing ${CONTIV_V2PLUGIN_NAME} to docker hub
319322
@echo dev: need docker login with user in contiv org
320323
docker plugin push ${CONTIV_V2PLUGIN_NAME}
321324

scripts/code_checks_in_docker.sh

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
PKG_DIRS=$*
6+
7+
docker build -f Dockerfile-check -t contiv/netplugin-checks .
8+
9+
# create container, stdout is the created container id
10+
container_id=$(docker create --name netplugin-checks \
11+
contiv/netplugin-checks)
12+
13+
# when there is an exit, remove the container
14+
function remove_container {
15+
docker rm ${container_id}
16+
}
17+
trap remove_container EXIT
18+
19+
NETPLUGIN_DIR=/go/src/github.com/contiv/netplugin
20+
# copy Makefile and go packages to be checked
21+
docker cp Makefile ${container_id}:${NETPLUGIN_DIR}/
22+
for pkg in ${PKG_DIRS}; do
23+
docker cp $pkg ${container_id}:${NETPLUGIN_DIR}/
24+
done
25+
26+
# run the checks
27+
docker start --attach ${container_id}

0 commit comments

Comments
 (0)