Skip to content

Console Output

01:39:09 + make -e validate
01:39:09 mkdir bundles
01:39:09 docker build -t "dockerbuildbot/libcompose:6e6161c3caa04ebfc6678f793a3177c11c384315" .
01:39:09 Sending build context to Docker daemon  6.589MB

01:39:09 Step 1/14 : FROM golang:1.12.7
01:39:09  ---> be63d15101cb
01:39:09 Step 2/14 : RUN apt-get update &&     apt-get install -y iptables build-essential --no-install-recommends &&     apt-get install -y python-pip &&     pip install virtualenv
01:39:09  ---> Using cache
01:39:09  ---> 00a341ec614f
01:39:09 Step 3/14 : RUN GO111MODULE=off go get github.com/aktau/github-release &&     GO111MODULE=off go get golang.org/x/tools/cmd/cover &&     GO111MODULE=off go get golang.org/x/lint/golint
01:39:09  ---> Using cache
01:39:09  ---> 0734c0b7f1aa
01:39:09 Step 4/14 : ENV DOCKER_VERSIONS 1.9.1 1.10.3 1.13.1 17.03.2 17.06.0
01:39:09  ---> Using cache
01:39:09  ---> 780abe25c22b
01:39:09 Step 5/14 : ENV DEFAULT_DOCKER_VERSION 17.03.2
01:39:09  ---> Using cache
01:39:09  ---> b10ada6c6132
01:39:09 Step 6/14 : RUN set -e; set -x;     for v in $(echo ${DOCKER_VERSIONS} | cut -f1); do         if test "${v}" = "1.9.1" || test "${v}" = "1.10.3"; then            mkdir -p /usr/local/bin/docker-${v}/;            curl https://get.docker.com/builds/Linux/x86_64/docker-${v} -o /usr/local/bin/docker-${v}/docker;            chmod +x /usr/local/bin/docker-${v}/docker;         elif test "${v}" = "1.13.1"; then            curl https://get.docker.com/builds/Linux/x86_64/docker-${v}.tgz -o docker-${v}.tgz;              tar xzf docker-${v}.tgz -C /usr/local/bin/;              mv /usr/local/bin/docker /usr/local/bin/docker-${v};              rm docker-${v}.tgz;         else              curl https://download.docker.com/linux/static/stable/x86_64/docker-${v}-ce.tgz -o docker-${v}.tgz;              tar xzf docker-${v}.tgz -C /usr/local/bin/;              mv /usr/local/bin/docker /usr/local/bin/docker-${v};              rm docker-${v}.tgz;         fi     done
01:39:09  ---> Using cache
01:39:09  ---> 6ac736766953
01:39:09 Step 7/14 : RUN ln -s /usr/local/bin/docker-${DEFAULT_DOCKER_VERSION} /usr/local/bin/docker
01:39:09  ---> Using cache
01:39:09  ---> eeb8d3d51d77
01:39:09 Step 8/14 : WORKDIR /go/src/github.com/docker/libcompose
01:39:09  ---> Using cache
01:39:09  ---> 613156f54aee
01:39:09 Step 9/14 : ENV COMPOSE_COMMIT 1.9.0
01:39:09  ---> Using cache
01:39:09  ---> db94f3802703
01:39:09 Step 10/14 : RUN virtualenv venv &&     git clone https://github.com/docker/compose.git venv/compose &&     cd venv/compose &&     git checkout -q "$COMPOSE_COMMIT" &&     ../bin/pip install                -r requirements.txt                -r requirements-dev.txt
01:39:09  ---> Using cache
01:39:09  ---> 426bdfe25030
01:39:09 Step 11/14 : ENV COMPOSE_BINARY /go/src/github.com/docker/libcompose/libcompose-cli
01:39:09  ---> Using cache
01:39:09  ---> 67d74b4f4281
01:39:09 Step 12/14 : ENV USER root
01:39:09  ---> Using cache
01:39:09  ---> 1f4c636a867d
01:39:09 Step 13/14 : ENTRYPOINT ["hack/dind"]
01:39:09  ---> Using cache
01:39:09  ---> 8dc6088d3bdc
01:39:09 Step 14/14 : COPY . /go/src/github.com/docker/libcompose
01:39:09  ---> Using cache
01:39:09  ---> 26813b876d5c
01:39:09 Successfully built 26813b876d5c
01:39:09 Successfully tagged dockerbuildbot/libcompose:6e6161c3caa04ebfc6678f793a3177c11c384315
01:39:09 docker run --rm -i  --privileged -e DAEMON_VERSION=""default"" -e OS_PLATFORM_ARG -e OS_ARCH_ARG -e DOCKER_TEST_HOST -e TESTDIRS -e TESTFLAGS -e SHOWWARNING -e TESTVERBOSE -v "/home/ubuntu/workspace/libcompose_PR-519/bundles:/go/src/github.com/docker/libcompose/bundles" "dockerbuildbot/libcompose:6e6161c3caa04ebfc6678f793a3177c11c384315" ./hack/make.sh validate-dco validate-git-marks validate-gofmt validate-lint validate-vet
01:39:10 ---> Making bundle: validate-dco (in .)
01:39:10 Congratulations!  All commits are properly signed with the DCO!
01:39:10 
01:39:10 ---> Making bundle: validate-git-marks (in .)
01:39:10 Congratulations!  There is no conflict.
01:39:10 
01:39:10 ---> Making bundle: validate-gofmt (in .)
01:39:10 Congratulations!  All Go source files are properly formatted.
01:39:10 
01:39:10 ---> Making bundle: validate-lint (in .)
01:39:10 Errors from golint:
01:39:10 yaml/network.go:25:1: comment on exported method Networks.HashString should be of the form "HashString ..."
01:39:10 yaml/network.go:38:1: comment on exported method Network.HashString should be of the form "HashString ..."
01:39:10 yaml/volume.go:23:1: comment on exported method Volumes.HashString should be of the form "HashString ..."
01:39:10 
01:39:10 Please fix the above errors. You can test via "golint" and commit the result.
01:39:10 
01:39:10 Makefile:48: recipe for target 'validate' failed
01:39:10 make: *** [validate] Error 1