Skip to content

Console Output

Skipping 267 KB.. Full Log
13:02:17  ---> 79ff8fc644c8
13:02:17 Step 13/14 : ENTRYPOINT ["hack/dind"]
13:02:17  ---> Using cache
13:02:17  ---> af020d3bb5e9
13:02:17 Step 14/14 : COPY . /go/src/github.com/docker/libcompose
13:02:17  ---> Using cache
13:02:17  ---> 30e259583fd7
13:02:18 Successfully built 30e259583fd7
13:02:18 Successfully tagged dockerbuildbot/libcompose:5961a4761d583427ca6ce29cd7627364d2090307
13:02:18 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-521/bundles:/go/src/github.com/docker/libcompose/bundles" "dockerbuildbot/libcompose:5961a4761d583427ca6ce29cd7627364d2090307" ./hack/make.sh validate-dco validate-git-marks validate-gofmt validate-lint validate-vet
13:02:18 ---> Making bundle: validate-dco (in .)
13:02:18 Congratulations!  All commits are properly signed with the DCO!
13:02:18 
13:02:18 ---> Making bundle: validate-git-marks (in .)
13:02:18 Congratulations!  There is no conflict.
13:02:18 
13:02:18 ---> Making bundle: validate-gofmt (in .)
13:02:18 Congratulations!  All Go source files are properly formatted.
13:02:18 
13:02:18 ---> Making bundle: validate-lint (in .)
13:02:18 Congratulations!  All Go source files have been linted.
13:02:18 
13:02:18 ---> Making bundle: validate-vet (in .)
13:02:18 Congratulations!  All Go source files have been vetted.
13:02:18 
[Pipeline] }
[Pipeline] // timeout
[Pipeline] echo
13:02:19 chowning workspace
[Pipeline] sh
13:02:19 + uname -m
[Pipeline] sh
13:02:19 + pwd
13:02:19 + id -u
13:02:19 + id -g
13:02:19 + docker run --rm -v /home/ubuntu/workspace/libcompose_PR-521:/workspace busybox chown -R 1000:1000 /workspace
13:02:19 Unable to find image 'busybox:latest' locally
13:02:20 latest: Pulling from library/busybox
13:02:20 7c9d20b9b6cd: Pulling fs layer
13:02:20 7c9d20b9b6cd: Download complete
13:02:20 7c9d20b9b6cd: Pull complete
13:02:20 Digest: sha256:fe301db49df08c384001ed752dff6d52b4305a73a7f608f21528048e8a08b51e
13:02:20 Status: Downloaded newer image for busybox:latest
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] stage
13:02:21 Using the ‘stage’ step without a block argument is deprecated
13:02:21 Entering stage test
13:02:21 Proceeding
[Pipeline] withEnv
[Pipeline] {
[Pipeline] timeout
13:02:21 Timeout set to expire in 1 hr 0 min
[Pipeline] {
[Pipeline] sh
13:02:21 + make -e test
13:02:21 docker build -t "dockerbuildbot/libcompose:5961a4761d583427ca6ce29cd7627364d2090307" .
13:02:21 Sending build context to Docker daemon  6.594MB

13:02:21 Step 1/14 : FROM golang:1.12.7
13:02:21  ---> be63d15101cb
13:02:21 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
13:02:21  ---> Using cache
13:02:21  ---> cd2acaba8026
13:02:21 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
13:02:21  ---> Using cache
13:02:21  ---> c8584571d9b1
13:02:21 Step 4/14 : ENV DOCKER_VERSIONS 1.9.1 1.10.3 1.13.1 17.03.2 17.06.0
13:02:21  ---> Using cache
13:02:21  ---> 0fe586e3740c
13:02:21 Step 5/14 : ENV DEFAULT_DOCKER_VERSION 17.03.2
13:02:21  ---> Using cache
13:02:21  ---> 759c45bbaa56
13:02:21 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
13:02:21  ---> Using cache
13:02:21  ---> 5fc79174de35
13:02:21 Step 7/14 : RUN ln -s /usr/local/bin/docker-${DEFAULT_DOCKER_VERSION} /usr/local/bin/docker
13:02:21  ---> Using cache
13:02:21  ---> 553657cdffc9
13:02:21 Step 8/14 : WORKDIR /go/src/github.com/docker/libcompose
13:02:21  ---> Using cache
13:02:21  ---> 435f215ad834
13:02:21 Step 9/14 : ENV COMPOSE_COMMIT 1.9.0
13:02:21  ---> Using cache
13:02:21  ---> 422a999fb2e4
13:02:21 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
13:02:21  ---> Using cache
13:02:21  ---> e26c56b72b61
13:02:21 Step 11/14 : ENV COMPOSE_BINARY /go/src/github.com/docker/libcompose/libcompose-cli
13:02:21  ---> Using cache
13:02:21  ---> 097875072506
13:02:21 Step 12/14 : ENV USER root
13:02:21  ---> Using cache
13:02:21  ---> 79ff8fc644c8
13:02:21 Step 13/14 : ENTRYPOINT ["hack/dind"]
13:02:21  ---> Using cache
13:02:21  ---> af020d3bb5e9
13:02:21 Step 14/14 : COPY . /go/src/github.com/docker/libcompose
13:02:21  ---> Using cache
13:02:21  ---> 30e259583fd7
13:02:21 Successfully built 30e259583fd7
13:02:21 Successfully tagged dockerbuildbot/libcompose:5961a4761d583427ca6ce29cd7627364d2090307
13:02:21 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-521/bundles:/go/src/github.com/docker/libcompose/bundles" "dockerbuildbot/libcompose:5961a4761d583427ca6ce29cd7627364d2090307" ./hack/make.sh binary test-unit test-integration test-acceptance
13:02:22 ---> Making bundle: binary (in .)
13:02:22 go: finding github.com/docker/cli v0.0.0-20190711175710-5b38d82aa076
13:02:22 go: finding github.com/modern-go/reflect2 v1.0.1
13:02:22 go: finding github.com/Microsoft/go-winio v0.3.8
13:02:22 go: finding github.com/docker/go-units v0.4.0
13:02:22 go: finding github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
13:02:22 go: finding github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7
13:02:22 go: finding github.com/docker/go-connections v0.3.0
13:02:22 go: finding github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
13:02:22 go: finding github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
13:02:23 go: finding gotest.tools v2.2.0+incompatible
13:02:23 go: finding github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82
13:02:23 go: finding github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420
13:02:23 go: finding github.com/gogo/protobuf v1.1.1
13:02:23 go: finding github.com/Microsoft/hcsshim v0.8.6
13:02:23 go: finding github.com/opencontainers/image-spec v0.0.0-20170515205857-f03dbe35d449
13:02:23 go: finding golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
13:02:23 go: finding github.com/kr/pty v0.0.0-20150511174710-5cf931ef8f76
13:02:23 go: finding google.golang.org/grpc v1.22.1
13:02:24 go: finding github.com/docker/docker-credential-helpers v0.6.3
13:02:24 go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
13:02:24 go: finding golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
13:02:24 go: finding github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
13:02:24 go: finding github.com/stretchr/testify v1.3.0
13:02:24 go: finding github.com/xeipuuv/gojsonschema v1.1.0
13:02:25 go: finding golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
13:02:25 go: finding github.com/urfave/cli v1.21.0
13:02:25 go: finding google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
13:02:25 go: finding github.com/pkg/errors v0.8.0
13:02:25 go: finding github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc
13:02:25 go: finding cloud.google.com/go v0.26.0
13:02:25 go: finding github.com/prometheus/client_golang v1.1.0
13:02:25 go: finding github.com/gorilla/context v1.1.1
13:02:25 go: finding github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c
13:02:26 go: finding github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
13:02:26 go: finding github.com/BurntSushi/toml v0.3.1
13:02:26 go: finding golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
13:02:26 go: finding golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135
13:02:26 go: finding github.com/golang/mock v1.1.1
13:02:26 go: finding github.com/json-iterator/go v1.1.7
13:02:27 go: finding github.com/stretchr/objx v0.1.0
13:02:27 go: finding honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc
13:02:27 go: finding github.com/golang/protobuf v1.2.0
13:02:28 go: finding github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742
13:02:28 go: finding github.com/client9/misspell v0.3.4
13:02:28 go: finding github.com/davecgh/go-spew v1.1.0
13:02:28 go: finding golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
13:02:28 go: finding github.com/pmezard/go-difflib v1.0.0
13:02:29 go: finding github.com/google/go-cmp v0.2.0
13:02:29 go: finding github.com/gorilla/mux v0.0.0-20160317213430-0eeaf8392f5b
13:02:29 go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
13:02:29 go: finding github.com/docker/distribution v2.7.1+incompatible
13:02:29 go: finding github.com/sirupsen/logrus v1.2.0
13:02:30 go: finding golang.org/x/text v0.3.0
13:02:30 go: finding github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
13:02:30 go: finding github.com/davecgh/go-spew v1.1.1
13:02:30 go: finding github.com/beorn7/perks v1.0.1
13:02:30 go: finding golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3
13:02:30 go: finding golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33
13:02:31 go: finding github.com/konsorten/go-windows-terminal-sequences v1.0.1
13:02:31 go: finding github.com/stretchr/testify v1.2.2
13:02:31 go: finding github.com/opencontainers/runc v0.0.0-20161109192122-51371867a01c
13:02:31 go: finding golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3
13:02:31 go: finding google.golang.org/appengine v1.1.0
13:02:32 go: finding gopkg.in/yaml.v2 v2.2.2
13:02:33 go: finding github.com/stretchr/objx v0.1.1
13:02:33 go: finding github.com/golang/protobuf v1.3.2
13:02:33 go: finding github.com/prometheus/procfs v0.0.3
13:02:33 go: finding golang.org/x/tools v0.0.0-20190311212946-11955173bddd
13:02:33 go: finding github.com/google/gofuzz v1.0.0
13:02:34 go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
13:02:34 go: finding github.com/prometheus/common v0.6.0
13:02:34 go: finding github.com/google/go-cmp v0.3.0
13:02:35 go: finding golang.org/x/net v0.0.0-20190311183353-d8887717615a
13:02:35 go: finding github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421
13:02:35 go: finding gopkg.in/yaml.v2 v2.2.1
13:02:35 go: finding golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
13:02:35 go: finding github.com/prometheus/client_golang v1.0.0
13:02:35 go: finding github.com/go-kit/kit v0.8.0
13:02:35 go: finding golang.org/x/sync v0.0.0-20181108010431-42b317875d0f
13:02:35 go: finding github.com/julienschmidt/httprouter v1.2.0
13:02:36 go: finding golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4
13:02:36 go: finding github.com/matttproud/golang_protobuf_extensions v1.0.1
13:02:36 go: finding github.com/go-logfmt/logfmt v0.4.0
13:02:36 go: finding golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5
13:02:36 go: finding github.com/json-iterator/go v1.1.6
13:02:36 go: finding github.com/golang/protobuf v1.3.1
13:02:36 go: finding gopkg.in/alecthomas/kingpin.v2 v2.2.6
13:02:37 go: finding github.com/beorn7/perks v1.0.0
13:02:37 go: finding github.com/prometheus/procfs v0.0.2
13:02:37 go: finding github.com/prometheus/common v0.4.1
13:02:37 go: finding github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223
13:02:37 go: finding golang.org/x/sync v0.0.0-20190423024810-112230192c58
13:02:37 go: finding github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515
13:02:37 go: finding github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973
13:02:37 go: finding github.com/go-logfmt/logfmt v0.3.0
13:02:37 go: finding github.com/prometheus/client_golang v0.9.1
13:02:37 go: finding golang.org/x/net v0.0.0-20181114220301-adae6a3d119a
13:02:37 go: finding github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d
13:02:37 go: finding github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf
13:02:37 go: finding github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc
13:02:37 go: finding github.com/go-stack/stack v1.8.0
13:02:37 go: finding github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910
13:02:38 go: downloading golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
13:02:38 go: downloading github.com/sirupsen/logrus v1.2.0
13:02:38 go: downloading github.com/docker/cli v0.0.0-20190711175710-5b38d82aa076
13:02:38 go: downloading github.com/urfave/cli v1.21.0
13:02:38 go: downloading github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
13:02:38 go: downloading golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
13:02:38 go: downloading github.com/docker/go-connections v0.3.0
13:02:38 go: downloading gopkg.in/yaml.v2 v2.2.2
13:02:38 go: extracting github.com/sirupsen/logrus v1.2.0
13:02:38 go: extracting github.com/urfave/cli v1.21.0
13:02:38 go: extracting github.com/docker/go-connections v0.3.0
13:02:38 go: downloading github.com/docker/go-units v0.4.0
13:02:38 go: extracting github.com/docker/go-units v0.4.0
13:02:38 go: extracting gopkg.in/yaml.v2 v2.2.2
13:02:38 go: downloading github.com/xeipuuv/gojsonschema v1.1.0
13:02:39 go: extracting github.com/xeipuuv/gojsonschema v1.1.0
13:02:39 go: extracting golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
13:02:40 go: extracting golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
13:02:42 go: extracting github.com/docker/cli v0.0.0-20190711175710-5b38d82aa076
13:02:42 go: downloading github.com/pkg/errors v0.8.0
13:02:42 go: extracting github.com/pkg/errors v0.8.0
13:02:42 go: extracting github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
13:02:42 go: downloading github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c
13:02:42 go: downloading github.com/docker/distribution v2.7.1+incompatible
13:02:42 go: downloading github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
13:02:42 go: downloading github.com/opencontainers/runc v0.0.0-20161109192122-51371867a01c
13:02:42 go: extracting github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c
13:02:42 go: downloading github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420
13:02:42 go: downloading github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc
13:02:42 go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
13:02:42 go: downloading golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3
13:02:42 go: extracting github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
13:02:42 go: downloading google.golang.org/grpc v1.22.1
13:02:42 go: extracting github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420
13:02:42 go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
13:02:43 go: extracting github.com/opencontainers/runc v0.0.0-20161109192122-51371867a01c
13:02:43 go: downloading github.com/docker/docker-credential-helpers v0.6.3
13:02:43 go: extracting github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc
13:02:43 go: downloading github.com/opencontainers/image-spec v0.0.0-20170515205857-f03dbe35d449
13:02:43 go: extracting github.com/docker/docker-credential-helpers v0.6.3
13:02:43 go: downloading github.com/gogo/protobuf v1.1.1
13:02:43 go: extracting github.com/opencontainers/image-spec v0.0.0-20170515205857-f03dbe35d449
13:02:43 go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
13:02:43 go: extracting github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
13:02:43 go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
13:02:43 go: extracting github.com/docker/distribution v2.7.1+incompatible
13:02:43 go: extracting github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
13:02:43 go: downloading golang.org/x/sync v0.0.0-20190423024810-112230192c58
13:02:43 go: downloading github.com/gorilla/mux v0.0.0-20160317213430-0eeaf8392f5b
13:02:44 go: downloading github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82
13:02:44 go: extracting golang.org/x/sync v0.0.0-20190423024810-112230192c58
13:02:44 go: extracting github.com/gorilla/mux v0.0.0-20160317213430-0eeaf8392f5b
13:02:44 go: downloading github.com/gorilla/context v1.1.1
13:02:44 go: extracting github.com/gorilla/context v1.1.1
13:02:44 go: extracting github.com/docker/go-metrics v0.0.0-20181218153428-b84716841b82
13:02:44 go: downloading github.com/prometheus/client_golang v1.1.0
13:02:44 go: extracting google.golang.org/grpc v1.22.1
13:02:44 go: extracting github.com/prometheus/client_golang v1.1.0
13:02:44 go: downloading github.com/prometheus/procfs v0.0.3
13:02:44 go: downloading github.com/beorn7/perks v1.0.1
13:02:44 go: downloading github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
13:02:44 go: downloading github.com/golang/protobuf v1.3.2
13:02:44 go: downloading github.com/prometheus/common v0.6.0
13:02:44 go: downloading google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
13:02:45 go: extracting github.com/beorn7/perks v1.0.1
13:02:45 go: extracting github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
13:02:45 go: extracting golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3
13:02:45 go: extracting github.com/prometheus/procfs v0.0.3
13:02:45 go: extracting github.com/prometheus/common v0.6.0
13:02:45 go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
13:02:45 go: extracting github.com/matttproud/golang_protobuf_extensions v1.0.1
13:02:45 go: extracting github.com/golang/protobuf v1.3.2
13:02:46 go: extracting github.com/gogo/protobuf v1.1.1
13:02:46 go: extracting google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
13:02:58 
13:02:58 ---> Making bundle: test-unit (in .)
13:02:58 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/cli/docker/app
13:03:20 ok  	github.com/docker/libcompose/cli/docker/app	1.123s	coverage: 88.2% of statements
13:03:20 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/config
13:03:20 go: downloading github.com/stretchr/testify v1.3.0
13:03:21 go: extracting github.com/stretchr/testify v1.3.0
13:03:21 go: downloading github.com/davecgh/go-spew v1.1.1
13:03:21 go: downloading github.com/pmezard/go-difflib v1.0.0
13:03:21 go: extracting github.com/pmezard/go-difflib v1.0.0
13:03:21 go: extracting github.com/davecgh/go-spew v1.1.1
13:03:23 --- FAIL: TestMixedInvalidServicesAndInvalidServiceNames (0.01s)
13:03:23     validation_test.go:70: 
13:03:23         	Error Trace:	validation_test.go:70
13:03:23         	            				validation_test.go:46
13:03:23         	            				validation_test.go:341
13:03:23         	Error:      	Should be true
13:03:23         	Test:       	TestMixedInvalidServicesAndInvalidServiceNames
13:03:23     validation_test.go:75: 
13:03:23         	Error Trace:	validation_test.go:75
13:03:23         	            				validation_test.go:46
13:03:23         	            				validation_test.go:341
13:03:23         	Error:      	Should be true
13:03:23         	Test:       	TestMixedInvalidServicesAndInvalidServiceNames
13:03:23 FAIL
13:03:23 coverage: 66.3% of statements
13:03:23 FAIL	github.com/docker/libcompose/config	0.531s
13:03:23 
13:03:23 Tests failed: github.com/docker/libcompose
13:03:24 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/builder
13:03:27 ok  	github.com/docker/libcompose/docker/builder	1.036s	coverage: 89.0% of statements
13:03:27 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/client
13:03:29 ok  	github.com/docker/libcompose/docker/client	1.239s	coverage: 100.0% of statements
13:03:29 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/network
13:03:32 ok  	github.com/docker/libcompose/docker/network	1.026s	coverage: 90.9% of statements
13:03:32 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/service
13:03:35 ok  	github.com/docker/libcompose/docker/service	1.034s	coverage: 15.9% of statements
13:03:35 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/docker/volume
13:03:37 ok  	github.com/docker/libcompose/docker/volume	1.025s	coverage: 23.5% of statements
13:03:37 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/labels
13:03:39 ok  	github.com/docker/libcompose/labels	1.007s	coverage: 16.0% of statements
13:03:39 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/lookup
13:03:41 ok  	github.com/docker/libcompose/lookup	1.016s	coverage: 91.9% of statements
13:03:41 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/project
13:03:43 ok  	github.com/docker/libcompose/project	1.069s	coverage: 31.9% of statements
13:03:43 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/project/events
13:03:44 ok  	github.com/docker/libcompose/project/events	1.009s	coverage: 10.2% of statements
13:03:44 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/project/options
13:03:46 ok  	github.com/docker/libcompose/project/options	1.007s	coverage: 100.0% of statements
13:03:46 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/utils
13:03:48 ok  	github.com/docker/libcompose/utils	1.011s	coverage: 41.3% of statements
13:03:48 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/version
13:03:49 ok  	github.com/docker/libcompose/version	1.006s	coverage: 0.0% of statements [no tests to run]
13:03:49 + go test -race -cover -coverprofile=cover.out github.com/docker/libcompose/yaml
13:03:51 ok  	github.com/docker/libcompose/yaml	1.022s	coverage: 72.1% of statements
13:03:51 
13:03:51 Run non-race test (if any)
13:03:51 + go test  -cover -coverprofile=cover.out github.com/docker/libcompose/utils
13:03:56 ok  	github.com/docker/libcompose/utils	0.003s	coverage: 56.0% of statements
13:03:56 
13:03:56 Test failures in: ./config
13:03:56 
13:03:57 Makefile:36: recipe for target 'test' failed
13:03:57 make: *** [test] Error 1
[Pipeline] }
[Pipeline] // timeout
[Pipeline] echo
13:03:57 chowning workspace
[Pipeline] sh
13:03:57 + uname -m
[Pipeline] sh
13:03:57 + pwd
13:03:57 + id -u
13:03:57 + id -g
13:03:57 + docker run --rm -v /home/ubuntu/workspace/libcompose_PR-521:/workspace busybox chown -R 1000:1000 /workspace
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] archive
13:03:58 The archive step is deprecated, please use archiveArtifacts instead.
13:03:58 No files found to archive for pattern "bundles"; continuing.
[Pipeline] sh
13:03:59 + docker rmi dockerbuildbot/libcompose:5961a4761d583427ca6ce29cd7627364d2090307
13:03:59 Untagged: dockerbuildbot/libcompose:5961a4761d583427ca6ce29cd7627364d2090307
13:03:59 Deleted: sha256:30e259583fd7465d040e94887b3b15e0c4b26724a2c4c583a23d3f064aa61176
13:03:59 Deleted: sha256:ac574b8e86f95518720df74ec5761ebd109f28b25784c07a96a6f0d2adb68aef
13:03:59 Deleted: sha256:af020d3bb5e951515bdc77ff18e8e18b5f7d06ecea6e9cb018b16cb745345f2e
13:03:59 Deleted: sha256:79ff8fc644c81bbadbfbcf57bc82785357dd68181ac997b16467412e0440ab78
13:03:59 Deleted: sha256:0978750725068a71fe4c50c6ea4362196c8f30b05eabba99ca960c7d926476d0
13:03:59 Deleted: sha256:e26c56b72b61e2604784a88972b9781bdcf38f642219a31616c3548d6fe12167
13:03:59 Deleted: sha256:4507057e80df6e4919921e4e863dffa3cd642bc158baeeb9b02ac99510219334
13:03:59 Deleted: sha256:422a999fb2e413adac570abb3654f6c64f62e929c7d5328833698eea10a64b0a
13:03:59 Deleted: sha256:435f215ad834a9e7636a0fd179aab502d5dff4c9eb1a3e696db7b201685b1b70
13:03:59 Deleted: sha256:01ff3fc1b347244df31e6ecf7122bc199701b2fdd8847f4780d22a37eb984331
13:03:59 Deleted: sha256:553657cdffc9d422530a5b636dccc5a6fa6232e561af4554ab0861f6615f845c
13:03:59 Deleted: sha256:65e33b738f7903622c597cb814416691e6f60ce730d695352d7c4a89cff931e6
13:03:59 Deleted: sha256:5fc79174de35a1a721ff881e0e39d2a9147e46e3aa79414695e94126dcb740c5
13:03:59 Deleted: sha256:4d9cc6941aaaf6afab3add35d057a133ffa51b10304722724a27f4f936c83aca
13:03:59 Deleted: sha256:759c45bbaa564c7374ef875e0d10ce9887bad3aef720456955138a84b5bbd971
13:03:59 Deleted: sha256:0fe586e3740cc74367a0d425ead3f57fd5617ba16b59714b6af8f72740d5eb05
13:03:59 Deleted: sha256:c8584571d9b17c89fd65083dc30d91cc89448325a7e2dfe956e1d2f16260781c
13:03:59 Deleted: sha256:dc96baf41491e37f6a793f0c630004472bb28902babc33f529c7ce0229cb8bd4
13:03:59 Deleted: sha256:cd2acaba80267fb759ecd468b9686d9db3f81125f627184cfaa0ef5de8c38560
13:03:59 Deleted: sha256:ba499521c63a00c0d58030c4d8f57c5898c223769ef8fabd22399de42e806eb1
[Pipeline] }
[Pipeline] // wrap
[Pipeline] }
[Pipeline] // wrap
[Pipeline] }
[Pipeline] // withDockerRegistry
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline

GitHub has been notified of this commit’s build result

ERROR: script returned exit code 2
Finished: FAILURE