Skip to content

Console Output

Skipping 306 KB.. Full Log
01:38:41 go: finding github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515
01:38:42 go: finding honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc
01:38:42 go: finding github.com/davecgh/go-spew v1.1.1
01:38:42 go: finding github.com/prometheus/procfs v0.0.3
01:38:42 go: finding github.com/client9/misspell v0.3.4
01:38:42 go: finding github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc
01:38:43 go: finding github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
01:38:43 go: finding golang.org/x/tools v0.0.0-20190311212946-11955173bddd
01:38:43 go: finding github.com/go-logfmt/logfmt v0.3.0
01:38:43 go: finding github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973
01:38:43 go: finding github.com/sirupsen/logrus v1.2.0
01:38:43 go: finding github.com/google/go-cmp v0.3.0
01:38:44 go: finding github.com/opencontainers/runc v0.0.0-20161109192122-51371867a01c
01:38:44 go: finding golang.org/x/sync v0.0.0-20190423024810-112230192c58
01:38:44 go: finding github.com/stretchr/objx v0.1.1
01:38:44 go: finding github.com/stretchr/testify v1.2.2
01:38:44 go: finding golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33
01:38:44 go: finding golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
01:38:44 go: finding github.com/konsorten/go-windows-terminal-sequences v1.0.1
01:38:48 Congratulations!  All Go source files have been vetted.
01:38:48 
[Pipeline] }
[Pipeline] // timeout
[Pipeline] echo
01:38:48 chowning workspace
[Pipeline] sh
01:38:49 + uname -m
[Pipeline] sh
01:38:49 + pwd
01:38:49 + id -u
01:38:49 + id -g
01:38:49 + docker run --rm -v /home/ubuntu/workspace/libcompose_PR-526:/workspace busybox chown -R 1000:1000 /workspace
01:38:49 Unable to find image 'busybox:latest' locally
01:38:49 latest: Pulling from library/busybox
01:38:49 ee153a04d683: Pulling fs layer
01:38:49 ee153a04d683: Verifying Checksum
01:38:49 ee153a04d683: Download complete
01:38:49 ee153a04d683: Pull complete
01:38:49 Digest: sha256:9f1003c480699be56815db0f8146ad2e22efea85129b5b5983d0e0fb52d9ab70
01:38:49 Status: Downloaded newer image for busybox:latest
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] stage
01:38:50 Using the ‘stage’ step without a block argument is deprecated
01:38:50 Entering stage test
01:38:50 Proceeding
[Pipeline] withEnv
[Pipeline] {
[Pipeline] timeout
01:38:50 Timeout set to expire in 1 hr 0 min
[Pipeline] {
[Pipeline] sh
01:38:50 + make -e test
01:38:50 docker build -t "dockerbuildbot/libcompose:32e4847bd4be3954733ad2fc2c60bb88a2b0d853" .
01:38:50 Sending build context to Docker daemon  6.581MB

01:38:50 Step 1/14 : FROM golang:1.12.7
01:38:50  ---> be63d15101cb
01:38:50 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:38:50  ---> Using cache
01:38:50  ---> ba67b7690b21
01:38:50 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:38:50  ---> Using cache
01:38:50  ---> 7061f3230528
01:38:50 Step 4/14 : ENV DOCKER_VERSIONS 1.9.1 1.10.3 1.13.1 17.03.2 17.06.0
01:38:50  ---> Using cache
01:38:50  ---> 7c2a703c702d
01:38:50 Step 5/14 : ENV DEFAULT_DOCKER_VERSION 17.03.2
01:38:50  ---> Using cache
01:38:50  ---> b34cb33f4c57
01:38:50 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:38:50  ---> Using cache
01:38:50  ---> 2e179170c1ab
01:38:50 Step 7/14 : RUN ln -s /usr/local/bin/docker-${DEFAULT_DOCKER_VERSION} /usr/local/bin/docker
01:38:50  ---> Using cache
01:38:50  ---> e2f543c9e065
01:38:50 Step 8/14 : WORKDIR /go/src/github.com/docker/libcompose
01:38:50  ---> Using cache
01:38:50  ---> 499a608ee148
01:38:50 Step 9/14 : ENV COMPOSE_COMMIT 1.9.0
01:38:50  ---> Using cache
01:38:50  ---> 50df1b3c68e7
01:38:50 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:38:50  ---> Using cache
01:38:50  ---> 6d66a318b26e
01:38:50 Step 11/14 : ENV COMPOSE_BINARY /go/src/github.com/docker/libcompose/libcompose-cli
01:38:50  ---> Using cache
01:38:50  ---> aa006308cf61
01:38:50 Step 12/14 : ENV USER root
01:38:50  ---> Using cache
01:38:50  ---> 034802e5d171
01:38:50 Step 13/14 : ENTRYPOINT ["hack/dind"]
01:38:50  ---> Using cache
01:38:50  ---> 9d86cb90bbd2
01:38:50 Step 14/14 : COPY . /go/src/github.com/docker/libcompose
01:38:50  ---> Using cache
01:38:50  ---> adfd03372726
01:38:50 Successfully built adfd03372726
01:38:50 Successfully tagged dockerbuildbot/libcompose:32e4847bd4be3954733ad2fc2c60bb88a2b0d853
01:38:50 docker run --rm -i  --privileged -e DAEMON_VERSION="all" -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-526/bundles:/go/src/github.com/docker/libcompose/bundles" "dockerbuildbot/libcompose:32e4847bd4be3954733ad2fc2c60bb88a2b0d853" ./hack/make.sh binary test-unit test-integration test-acceptance
01:38:51 ---> Making bundle: binary (in .)
01:38:51 go: finding github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
01:38:51 go: finding github.com/gogo/protobuf v1.1.1
01:38:51 go: finding github.com/gorilla/mux v0.0.0-20160317213430-0eeaf8392f5b
01:38:51 go: finding github.com/xeipuuv/gojsonschema v1.1.0
01:38:51 go: finding github.com/modern-go/reflect2 v1.0.1
01:38:51 go: finding github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
01:38:51 go: finding github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
01:38:51 go: finding github.com/prometheus/client_golang v1.1.0
01:38:51 go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
01:38:51 go: finding golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
01:38:52 go: finding github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420
01:38:52 go: finding github.com/Microsoft/hcsshim v0.8.6
01:38:52 go: finding github.com/stretchr/testify v1.3.0
01:38:52 go: finding github.com/urfave/cli v1.21.0
01:38:52 go: finding github.com/opencontainers/image-spec v0.0.0-20170515205857-f03dbe35d449
01:38:52 go: finding google.golang.org/grpc v1.22.1
01:38:52 go: finding github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c
01:38:52 go: finding golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
01:38:52 go: finding github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
01:38:52 go: finding github.com/golang/protobuf v1.3.2
01:38:53 go: finding github.com/kr/pty v0.0.0-20150511174710-5cf931ef8f76
01:38:53 go: finding github.com/docker/distribution v2.7.1+incompatible
01:38:53 go: finding github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
01:38:53 go: finding gotest.tools v2.2.0+incompatible
01:38:53 go: finding github.com/gorilla/context v1.1.1
01:38:53 go: finding github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7
01:38:53 go: finding github.com/stretchr/objx v0.1.0
01:38:53 go: finding github.com/pkg/errors v0.8.0
01:38:53 go: finding github.com/json-iterator/go v1.1.7
01:38:54 go: finding github.com/BurntSushi/toml v0.3.1
01:38:54 go: finding cloud.google.com/go v0.26.0
01:38:54 go: finding golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135
01:38:54 go: finding github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc
01:38:54 go: finding github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82
01:38:54 go: finding github.com/golang/mock v1.1.1
01:38:54 go: finding github.com/davecgh/go-spew v1.1.0
01:38:54 go: finding github.com/docker/cli v0.0.0-20190711175710-5b38d82aa076
01:38:54 go: finding golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3
01:38:54 go: finding golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
01:38:55 go: finding github.com/davecgh/go-spew v1.1.1
01:38:55 go: finding github.com/opencontainers/runc v0.0.0-20161109192122-51371867a01c
01:38:55 go: finding golang.org/x/net v0.0.0-20190311183353-d8887717615a
01:38:55 go: finding github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421
01:38:55 go: finding gopkg.in/yaml.v2 v2.2.2
01:38:56 go: finding github.com/Microsoft/go-winio v0.3.8
01:38:56 go: finding golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3
01:38:56 go: finding github.com/docker/go-units v0.4.0
01:38:56 go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
01:38:57 go: finding github.com/prometheus/procfs v0.0.3
01:38:57 go: finding github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742
01:38:57 go: finding github.com/google/go-cmp v0.2.0
01:38:57 go: finding google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
01:38:58 go: finding github.com/prometheus/common v0.6.0
01:38:58 go: finding github.com/google/gofuzz v1.0.0
01:38:59 go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
01:38:59 go: finding github.com/client9/misspell v0.3.4
01:38:59 go: finding github.com/sirupsen/logrus v1.2.0
01:38:59 go: finding github.com/docker/docker-credential-helpers v0.6.3
01:38:59 go: finding golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
01:38:59 go: finding github.com/go-kit/kit v0.8.0
01:38:59 go: finding github.com/golang/protobuf v1.3.1
01:39:00 go: finding golang.org/x/sync v0.0.0-20181108010431-42b317875d0f
01:39:00 go: finding github.com/prometheus/client_golang v1.0.0
01:39:00 go: finding github.com/go-logfmt/logfmt v0.4.0
01:39:00 go: finding honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc
01:39:01 go: finding google.golang.org/appengine v1.1.0
01:39:01 go: finding golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33
01:39:01 go: finding github.com/julienschmidt/httprouter v1.2.0
01:39:01 go: finding golang.org/x/tools v0.0.0-20190311212946-11955173bddd
01:39:02 go: finding golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5
01:39:02 go: finding golang.org/x/text v0.3.0
01:39:02 go: finding github.com/pmezard/go-difflib v1.0.0
01:39:02 go: finding github.com/beorn7/perks v1.0.0
01:39:02 go: finding gopkg.in/yaml.v2 v2.2.1
01:39:02 go: finding github.com/json-iterator/go v1.1.6
01:39:02 go: finding github.com/matttproud/golang_protobuf_extensions v1.0.1
01:39:02 go: finding github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515
01:39:02 go: finding github.com/docker/go-connections v0.3.0
01:39:02 go: finding golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4
01:39:02 go: finding github.com/stretchr/objx v0.1.1
01:39:03 go: finding github.com/prometheus/procfs v0.0.2
01:39:03 go: finding github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223
01:39:03 go: finding golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
01:39:03 go: finding golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
01:39:03 go: finding gopkg.in/alecthomas/kingpin.v2 v2.2.6
01:39:03 go: finding github.com/google/go-cmp v0.3.0
01:39:03 go: finding github.com/prometheus/common v0.4.1
01:39:03 go: finding github.com/stretchr/testify v1.2.2
01:39:03 go: finding github.com/golang/protobuf v1.2.0
01:39:04 go: finding golang.org/x/sync v0.0.0-20190423024810-112230192c58
01:39:04 go: finding github.com/prometheus/client_golang v0.9.1
01:39:04 go: finding github.com/beorn7/perks v1.0.1
01:39:04 go: finding github.com/go-logfmt/logfmt v0.3.0
01:39:04 go: finding github.com/konsorten/go-windows-terminal-sequences v1.0.1
01:39:04 go: finding github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
01:39:04 go: finding github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d
01:39:04 go: finding github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973
01:39:04 go: finding github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf
01:39:04 go: finding github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910
01:39:05 go: finding golang.org/x/net v0.0.0-20181114220301-adae6a3d119a
01:39:05 go: finding github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc
01:39:05 go: finding github.com/go-stack/stack v1.8.0
01:39:06 go: downloading golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
01:39:06 go: downloading golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
01:39:06 go: downloading github.com/urfave/cli v1.21.0
01:39:06 go: downloading github.com/docker/cli v0.0.0-20190711175710-5b38d82aa076
01:39:06 go: downloading github.com/sirupsen/logrus v1.2.0
01:39:06 go: downloading github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
01:39:06 go: downloading github.com/xeipuuv/gojsonschema v1.1.0
01:39:06 go: extracting github.com/sirupsen/logrus v1.2.0
01:39:06 go: extracting github.com/urfave/cli v1.21.0
01:39:06 go: downloading github.com/docker/go-connections v0.3.0
01:39:06 go: extracting github.com/docker/go-connections v0.3.0
01:39:06 go: extracting github.com/xeipuuv/gojsonschema v1.1.0
01:39:07 go: extracting golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
01:39:08 go: downloading gopkg.in/yaml.v2 v2.2.2
01:39:08 go: extracting golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
01:39:08 go: extracting gopkg.in/yaml.v2 v2.2.2
01:39:09 go: extracting github.com/docker/cli v0.0.0-20190711175710-5b38d82aa076
01:39:09 go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
01:39:09 go: downloading golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3
01:39:09 go: extracting github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
01:39:09 go: downloading github.com/docker/docker-credential-helpers v0.6.3
01:39:09 go: extracting github.com/docker/docker-credential-helpers v0.6.3
01:39:10 go: extracting github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
01:39:10 go: downloading github.com/pkg/errors v0.8.0
01:39:10 go: downloading github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420
01:39:10 go: downloading github.com/docker/go-units v0.4.0
01:39:10 go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
01:39:10 go: downloading github.com/docker/distribution v2.7.1+incompatible
01:39:10 go: downloading github.com/opencontainers/image-spec v0.0.0-20170515205857-f03dbe35d449
01:39:10 go: downloading google.golang.org/grpc v1.22.1
01:39:10 go: extracting github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420
01:39:10 go: downloading github.com/opencontainers/runc v0.0.0-20161109192122-51371867a01c
01:39:10 go: extracting golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3
01:39:10 go: extracting github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
01:39:10 go: extracting github.com/pkg/errors v0.8.0
01:39:10 go: extracting github.com/docker/go-units v0.4.0
01:39:10 go: downloading github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
01:39:10 go: extracting github.com/opencontainers/image-spec v0.0.0-20170515205857-f03dbe35d449
01:39:10 go: extracting github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
01:39:10 go: downloading github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc
01:39:11 go: extracting github.com/opencontainers/runc v0.0.0-20161109192122-51371867a01c
01:39:11 go: extracting github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc
01:39:11 go: downloading golang.org/x/sync v0.0.0-20190423024810-112230192c58
01:39:11 go: extracting golang.org/x/sync v0.0.0-20190423024810-112230192c58
01:39:11 go: downloading github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c
01:39:11 go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
01:39:11 go: downloading github.com/gogo/protobuf v1.1.1
01:39:11 go: extracting github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c
01:39:11 go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
01:39:11 go: extracting github.com/docker/distribution v2.7.1+incompatible
01:39:11 go: extracting google.golang.org/grpc v1.22.1
01:39:11 go: downloading github.com/gorilla/mux v0.0.0-20160317213430-0eeaf8392f5b
01:39:11 go: downloading github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82
01:39:11 go: extracting github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82
01:39:11 go: downloading github.com/prometheus/client_golang v1.1.0
01:39:11 go: extracting github.com/gorilla/mux v0.0.0-20160317213430-0eeaf8392f5b
01:39:11 go: downloading github.com/gorilla/context v1.1.1
01:39:11 go: downloading github.com/golang/protobuf v1.3.2
01:39:11 go: downloading google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
01:39:11 go: extracting github.com/gorilla/context v1.1.1
01:39:12 go: extracting github.com/prometheus/client_golang v1.1.0
01:39:12 go: downloading github.com/prometheus/common v0.6.0
01:39:12 go: downloading github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
01:39:12 go: downloading github.com/beorn7/perks v1.0.1
01:39:12 go: downloading github.com/prometheus/procfs v0.0.3
01:39:12 go: extracting github.com/beorn7/perks v1.0.1
01:39:12 go: extracting github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
01:39:12 go: extracting github.com/prometheus/common v0.6.0
01:39:12 go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
01:39:12 go: extracting github.com/golang/protobuf v1.3.2
01:39:12 go: extracting github.com/matttproud/golang_protobuf_extensions v1.0.1
01:39:12 go: extracting github.com/prometheus/procfs v0.0.3
01:39:13 go: extracting github.com/gogo/protobuf v1.1.1
01:39:13 go: extracting google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
01:39:25 
01:39:25 ---> Making bundle: test-unit (in .)
01:39:25 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/cli/docker/app
01:39:47 ok  	github.com/docker/libcompose/cli/docker/app	1.119s	coverage: 88.2% of statements
01:39:47 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/config
01:39:47 go: downloading github.com/stretchr/testify v1.3.0
01:39:47 go: extracting github.com/stretchr/testify v1.3.0
01:39:47 go: downloading github.com/davecgh/go-spew v1.1.1
01:39:47 go: downloading github.com/pmezard/go-difflib v1.0.0
01:39:47 go: extracting github.com/pmezard/go-difflib v1.0.0
01:39:47 go: extracting github.com/davecgh/go-spew v1.1.1
01:39:49 --- FAIL: TestMixedInvalidServicesAndInvalidServiceNames (0.01s)
01:39:49     validation_test.go:70: 
01:39:49         	Error Trace:	validation_test.go:70
01:39:49         	            				validation_test.go:47
01:39:49         	            				validation_test.go:341
01:39:49         	Error:      	Should be true
01:39:49         	Test:       	TestMixedInvalidServicesAndInvalidServiceNames
01:39:49     validation_test.go:75: 
01:39:49         	Error Trace:	validation_test.go:75
01:39:49         	            				validation_test.go:47
01:39:49         	            				validation_test.go:341
01:39:49         	Error:      	Should be true
01:39:49         	Test:       	TestMixedInvalidServicesAndInvalidServiceNames
01:39:49 FAIL
01:39:49 coverage: 66.3% of statements
01:39:49 FAIL	github.com/docker/libcompose/config	0.543s
01:39:49 
01:39:49 Tests failed: github.com/docker/libcompose
01:39:50 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/builder
01:39:53 ok  	github.com/docker/libcompose/docker/builder	1.036s	coverage: 89.0% of statements
01:39:53 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/client
01:39:55 ok  	github.com/docker/libcompose/docker/client	1.235s	coverage: 100.0% of statements
01:39:55 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/network
01:39:58 ok  	github.com/docker/libcompose/docker/network	1.025s	coverage: 90.9% of statements
01:39:58 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/service
01:40:01 ok  	github.com/docker/libcompose/docker/service	1.034s	coverage: 15.9% of statements
01:40:01 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/volume
01:40:03 ok  	github.com/docker/libcompose/docker/volume	1.024s	coverage: 23.5% of statements
01:40:03 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/labels
01:40:04 ok  	github.com/docker/libcompose/labels	1.007s	coverage: 16.0% of statements
01:40:04 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/lookup
01:40:06 ok  	github.com/docker/libcompose/lookup	1.015s	coverage: 91.9% of statements
01:40:06 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/project
01:40:09 ok  	github.com/docker/libcompose/project	1.068s	coverage: 31.9% of statements
01:40:09 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/project/events
01:40:10 ok  	github.com/docker/libcompose/project/events	1.006s	coverage: 10.2% of statements
01:40:10 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/project/options
01:40:11 ok  	github.com/docker/libcompose/project/options	1.005s	coverage: 100.0% of statements
01:40:11 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/utils
01:40:13 ok  	github.com/docker/libcompose/utils	1.011s	coverage: 41.3% of statements
01:40:13 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/version
01:40:15 ok  	github.com/docker/libcompose/version	1.005s	coverage: 0.0% of statements [no tests to run]
01:40:15 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/yaml
01:40:17 ok  	github.com/docker/libcompose/yaml	1.021s	coverage: 72.1% of statements
01:40:17 
01:40:17 Run non-race test (if any)
01:40:17 + go test  -cover -coverprofile=cover.out github.com/docker/libcompose/utils
01:40:22 ok  	github.com/docker/libcompose/utils	0.003s	coverage: 56.0% of statements
01:40:22 
01:40:22 Test failures in: ./config
01:40:22 
01:40:22 Makefile:36: recipe for target 'test' failed
01:40:22 make: *** [test] Error 1
[Pipeline] }
[Pipeline] // timeout
[Pipeline] echo
01:40:22 chowning workspace
[Pipeline] sh
01:40:23 + uname -m
[Pipeline] sh
01:40:23 + pwd
01:40:23 + id -u
01:40:23 + id -g
01:40:23 + docker run --rm -v /home/ubuntu/workspace/libcompose_PR-526:/workspace busybox chown -R 1000:1000 /workspace
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] archive
01:40:24 The archive step is deprecated, please use archiveArtifacts instead.
01:40:24 No files found to archive for pattern "bundles"; continuing.
[Pipeline] sh
01:40:24 + docker rmi dockerbuildbot/libcompose:32e4847bd4be3954733ad2fc2c60bb88a2b0d853
01:40:24 Untagged: dockerbuildbot/libcompose:32e4847bd4be3954733ad2fc2c60bb88a2b0d853
01:40:24 Deleted: sha256:adfd03372726061c1cbf80e477160a66dd0f7a2850c40ca194635f3a069907b6
01:40:24 Deleted: sha256:a519b828f45ade61b8eb3d3ade892de371f439e47d9f8aadb64ed23cac0ea728
01:40:24 Deleted: sha256:9d86cb90bbd27f9d354a5e4cdaf80117aaf97e1eea0f3f108686d0c63aa5f12d
01:40:24 Deleted: sha256:034802e5d17191b9ed57bd8154ce81e5714014962c3b0186f158e27664f573c3
01:40:24 Deleted: sha256:aa006308cf61f5bff6497a218974dc58ab6c42543d17e2f45caf76a201addafd
01:40:24 Deleted: sha256:6d66a318b26e45faf3541f99751e1504d10bf5abecd1cca9a4c9050d797ff802
01:40:24 Deleted: sha256:b8f175dc9f78fab4986c9b7b0f471fb43f90e5868ccc0af79adb92c6c77b51b5
01:40:24 Deleted: sha256:50df1b3c68e719db877b20417e8a0b515c06c526d5633532dbf46fc438e009d1
01:40:24 Deleted: sha256:499a608ee148bd2a93dac2d32a59a40ba5ccf2959b84e134c780ad12046331cd
01:40:24 Deleted: sha256:e9bdafe94ea0f1c23479f511544f0cabc331108b32f09568addc64eea4e6b19c
01:40:24 Deleted: sha256:e2f543c9e065ee3b8015d71ebd07061f72dbc54cda38c85b5edbd47d04c50c5a
01:40:24 Deleted: sha256:4ff2fc56c9cc7d95e80dcd679c740fdf0f7ed8eeec150208678a713e81399ac3
01:40:24 Deleted: sha256:2e179170c1abbcbddbea6bf359277c77c559147fccc8035ac11bf662b1004b9f
01:40:24 Deleted: sha256:15cecb672fb366457bec9c7569d8feb6792522205f3028df2deb4e11da3f1dc6
01:40:24 Deleted: sha256:b34cb33f4c573573ea566da94c1d251b2c75bc32eca3e6391423bc37ff09b3dd
01:40:24 Deleted: sha256:7c2a703c702dd1beed116a9926902ecbdb0c2be409c21080c23434b0c3b32bd8
01:40:24 Deleted: sha256:7061f323052829dc03481c03946d4662b6721017a6126b2a7d8e3d426133228e
01:40:24 Deleted: sha256:29c1fa6ddfd524ef9f06ab731bf5df981814050c2ecf1594a3487722a315387d
01:40:24 Deleted: sha256:ba67b7690b21feb451735bfc27cca944cd5cad7d567f02c015fee3506d8a3a72
01:40:24 Deleted: sha256:d1346f0c74351a25b124c9ce2405721820a8dac2eba98d70edbc2dfc0867cd58
[Pipeline] }
[Pipeline] // wrap
[Pipeline] }
[Pipeline] // wrap
[Pipeline] }
[Pipeline] // withDockerRegistry
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
Terminated
Terminated
Terminated

GitHub has been notified of this commit’s build result

ERROR: script returned exit code 2
Finished: FAILURE