Skip to content
Failed

Console Output

Skipping 39 KB.. Full Log
Get:1 http://deb.debian.org/debian buster/main amd64 uuid-runtime amd64 2.33.1-0.1 [95.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 95.2 kB in 0s (256 kB/s)
Selecting previously unselected package uuid-runtime.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15394 files and directories currently installed.)
Preparing to unpack .../uuid-runtime_2.33.1-0.1_amd64.deb ...
Unpacking uuid-runtime (2.33.1-0.1) ...
Setting up uuid-runtime (2.33.1-0.1) ...
Adding group `uuidd' (GID 102) ...
Done.
Warning: The home dir /run/uuidd you specified can't be accessed: No such file or directory
Adding system user `uuidd' (UID 101) ...
Adding new user `uuidd' (UID 101) with group `uuidd' ...
Not creating home directory `/run/uuidd'.
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Removing intermediate container c389bbdcff18
 ---> 860a0cb4f57a
Step 4/14 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in 53e96a5ccf06
Removing intermediate container 53e96a5ccf06
 ---> 4d4e47799bfc
Step 5/14 : COPY . .
 ---> 1bc06afdd626
Step 6/14 : ARG EXPERIMENTAL="off"
 ---> Running in c30aea322ebc
Removing intermediate container c30aea322ebc
 ---> b5181b74e5c7
Step 7/14 : ARG TAG="unknown"
 ---> Running in 72bf5675b475
Removing intermediate container 72bf5675b475
 ---> c653da58892b
Step 8/14 : RUN make EXPERIMENTAL=${EXPERIMENTAL} BUILD_TAG=${BUILD_TAG} TAG=${TAG} bin/cnab-run
 ---> Running in a77b2ecc3b26
CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:31:46Z" -o bin/cnab-run ./cmd/cnab-run
Removing intermediate container 0914665bfa10
 ---> ddb15a026106
[Warning] One or more build-args [ALPINE_VERSION COMMIT] were not consumed
Successfully built ddb15a026106
Successfully tagged docker-app-cross:jenkins-app-PR-683-1
docker create --name docker-app-cross-jenkins-app-PR-683-1 docker-app-cross:jenkins-app-PR-683-1 noop
f661e421c10f855e266cedf47d9e75509810df85967fc81595ff2cd964aa9349
docker cp docker-app-cross-jenkins-app-PR-683-1:/go/src/github.com/docker/app/bin/docker-app-linux bin/docker-app-linux
docker cp docker-app-cross-jenkins-app-PR-683-1:/go/src/github.com/docker/app/bin/docker-app-darwin bin/docker-app-darwin
docker cp docker-app-cross-jenkins-app-PR-683-1:/go/src/github.com/docker/app/bin/docker-app-windows.exe bin/docker-app-windows.exe
docker rm docker-app-cross-jenkins-app-PR-683-1
docker-app-cross-jenkins-app-PR-683-1
docker build --build-arg EXPERIMENTAL=off --build-arg TAG=jenkins-app-PR-683-1 --build-arg COMMIT=f87a3be3 --build-arg ALPINE_VERSION=3.10.1 --build-arg GOPROXY=direct --target=e2e-cross -t docker-app-e2e-cross:jenkins-app-PR-683-1  .
Sending build context to Docker daemon  75.58MB

Step 1/26 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/26 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Using cache
 ---> 446283867a7f
Step 3/26 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> ef7bc0d4bab3
Step 4/26 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> a8998a80f133
Step 5/26 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> fcc4041e4fa3
Step 6/26 : ARG GOPROXY
 ---> Using cache
 ---> 90358d906259
Step 7/26 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> e759350036e7
Step 8/26 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> f4e0205c8309
Step 9/26 : FROM build AS dev
 ---> f4e0205c8309
Step 10/26 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> 6016e114d3a4
Step 11/26 : ARG DEP_VERSION=v0.5.4
 ---> Using cache
 ---> c039953a70f3
Step 12/26 : RUN curl -o /usr/bin/dep -L https://github.com/golang/dep/releases/download/${DEP_VERSION}/dep-linux-amd64 &&     chmod +x /usr/bin/dep
 ---> Using cache
 ---> d4dc8a535761
Step 13/26 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> 1700bcada054
Step 14/26 : ARG GOPROXY
 ---> Using cache
 ---> c3023f276747
Step 15/26 : RUN mkdir $GOPATH/src/gotest.tools &&     git clone -q https://github.com/gotestyourself/gotestsum $GOPATH/src/gotest.tools/gotestsum &&     cd $GOPATH/src/gotest.tools/gotestsum &&     git -C $GOPATH/src/gotest.tools/gotestsum checkout -q $GOTESTSUM_VERSION &&     GO111MODULE=on GOOS=linux   go build -o /usr/local/bin/gotestsum-linux       gotest.tools/gotestsum &&     GO111MODULE=on GOOS=darwin  go build -o /usr/local/bin/gotestsum-darwin      gotest.tools/gotestsum &&     GO111MODULE=on GOOS=windows go build -o /usr/local/bin/gotestsum-windows.exe gotest.tools/gotestsum &&     ln -s gotestsum-linux /usr/local/bin/gotestsum
 ---> Using cache
 ---> 84219268aca2
Step 16/26 : RUN GOOS=linux   go build -o /usr/local/bin/test2json-linux       cmd/test2json &&     GOOS=darwin  go build -o /usr/local/bin/test2json-darwin      cmd/test2json &&     GOOS=windows go build -o /usr/local/bin/test2json-windows.exe cmd/test2json
 ---> Using cache
 ---> ed5f41434459
Step 17/26 : RUN go get -d gopkg.in/mjibson/esc.v0 &&     cd /go/src/github.com/mjibson/esc &&     go build -v -o /usr/bin/esc . &&     rm -rf /go/src/* /go/pkg/* /go/bin/*
 ---> Using cache
 ---> 5782fb883549
Step 18/26 : COPY . .
 ---> Using cache
 ---> 2a2d044c7c8d
Step 19/26 : FROM dev AS cross
 ---> 2a2d044c7c8d
Step 20/26 : ARG EXPERIMENTAL="off"
 ---> Using cache
 ---> 872fec89c5a9
Step 21/26 : ARG TAG="unknown"
 ---> Using cache
 ---> 26c96c59e989
Step 22/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} cross
 ---> Using cache
 ---> ddb15a026106
Step 23/26 : FROM cross AS e2e-cross
 ---> ddb15a026106
Step 24/26 : ARG EXPERIMENTAL="off"
 ---> Running in 5100fb857b5b
Removing intermediate container 5100fb857b5b
 ---> 293b1457384c
Step 25/26 : ARG TAG="unknown"
 ---> Running in ae6cde673297
Removing intermediate container ae6cde673297
 ---> 610dba0accd5
Step 26/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} e2e-cross
 ---> Running in 7151fa3131e9
GOOS=linux CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:32:15Z" -o bin/docker-app-linux ./cmd/docker-app
GOOS=linux CGO_ENABLED=0 go test -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:32:15Z" -c -o bin/docker-app-e2e-linux ./e2e/
GOOS=darwin CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:32:15Z" -o bin/docker-app-darwin ./cmd/docker-app
GOOS=darwin CGO_ENABLED=0 go test -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:32:15Z" -c -o bin/docker-app-e2e-darwin ./e2e/
GOOS=windows CGO_ENABLED=0 go test -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:32:15Z" -c -o bin/docker-app-e2e-windows.exe ./e2e/
(104/104) Wrote k8s.io/kubernetes@v1.14.1
vendor is correct
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
Removing intermediate container 7151fa3131e9
 ---> fd0d19d4375e
[Warning] One or more build-args [COMMIT ALPINE_VERSION] were not consumed
Successfully built fd0d19d4375e
Successfully tagged docker-app-e2e-cross:jenkins-app-PR-683-1
docker create --name docker-app-e2e-cross-jenkins-app-PR-683-1 docker-app-e2e-cross:jenkins-app-PR-683-1 noop
3c52e91746b6f1a2da5aab6eea58d4469d8f1a345dfe62f43b2d1e920765f924
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/go/src/github.com/docker/app/bin/docker-app-e2e-linux bin/docker-app-e2e-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/go/src/github.com/docker/app/bin/docker-app-e2e-darwin bin/docker-app-e2e-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/go/src/github.com/docker/app/bin/docker-app-e2e-windows.exe bin/docker-app-e2e-windows.exe
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/usr/local/bin/gotestsum-linux bin/gotestsum-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/usr/local/bin/gotestsum-darwin bin/gotestsum-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/usr/local/bin/gotestsum-windows.exe bin/gotestsum-windows.exe
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/usr/local/bin/test2json-linux bin/test2json-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/usr/local/bin/test2json-darwin bin/test2json-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-683-1:/usr/local/bin/test2json-windows.exe bin/test2json-windows.exe
docker rm docker-app-e2e-cross-jenkins-app-PR-683-1
docker-app-e2e-cross-jenkins-app-PR-683-1
tar --transform='flags=r;s|docker-app-linux|docker-app-plugin-linux|' -czf bin/docker-app-linux.tar.gz -C bin docker-app-linux
tar czf bin/docker-app-e2e-linux.tar.gz -C bin docker-app-e2e-linux
tar --transform='flags=r;s|docker-app-darwin|docker-app-plugin-darwin|' -czf bin/docker-app-darwin.tar.gz -C bin docker-app-darwin
tar czf bin/docker-app-e2e-darwin.tar.gz -C bin docker-app-e2e-darwin
tar --transform='flags=r;s|docker-app-windows|docker-app-plugin-windows|' -czf bin/docker-app-windows.tar.gz -C bin docker-app-windows.exe
tar czf bin/docker-app-e2e-windows.tar.gz -C bin docker-app-e2e-windows.exe
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/bin
[Pipeline] {
[Pipeline] stash
Removing intermediate container a77b2ecc3b26
 ---> 2679bbd81cd9
Step 9/14 : FROM alpine:${ALPINE_VERSION} as invocation
3.10.1: Pulling from library/alpine
050382585609: Pulling fs layer
050382585609: Verifying Checksum
050382585609: Download complete
050382585609: Pull complete
Digest: sha256:6a92cd1fcdc8d8cdec60f33dda4db2cb1fcdcacf3410a8e05b3741f44a9b5998
Status: Downloaded newer image for alpine:3.10.1
 ---> b7b28af77ffe
Step 10/14 : RUN apk add --no-cache ca-certificates && adduser -S cnab
 ---> Running in bf4151f85da7
fetch http://dl-cdn.alpinelinux.org/alpine/v3.10/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.10/community/x86_64/APKINDEX.tar.gz
(1/1) Installing ca-certificates (20190108-r0)
Executing busybox-1.30.1-r2.trigger
Executing ca-certificates-20190108-r0.trigger
OK: 6 MiB in 15 packages
Removing intermediate container bf4151f85da7
 ---> 282d2695ea02
Step 11/14 : USER cnab
 ---> Running in 9c0418ebb18c
Removing intermediate container 9c0418ebb18c
 ---> d295d1049c3d
Step 12/14 : COPY --from=build /go/src/github.com/docker/app/bin/cnab-run /cnab/app/run
 ---> 410028aa03a9
Step 13/14 : WORKDIR /cnab/app
 ---> Running in d460794b34e5
Removing intermediate container d460794b34e5
 ---> 354023c9f21b
Step 14/14 : CMD /cnab/app/run
 ---> Running in b9aa00fb5fd6
Removing intermediate container b9aa00fb5fd6
 ---> ad263e78b46b
[Warning] One or more build-args [GOPROXY COMMIT] were not consumed
Successfully built ad263e78b46b
Successfully tagged docker/cnab-app-base:jenkins-app-PR-683-1
docker save docker/cnab-app-base:jenkins-app-PR-683-1 -o _build/invocation-image.tar
[Pipeline] sh
+ make -f docker.Makefile INVOCATION_IMAGE_TAG=jenkins-app-PR-683-1-coverage OUTPUT=coverage-invocation-image.tar save-invocation-image-tag
docker tag docker/cnab-app-base:jenkins-app-PR-683-1 docker/cnab-app-base:jenkins-app-PR-683-1-coverage
docker save docker/cnab-app-base:jenkins-app-PR-683-1-coverage -o _build/coverage-invocation-image.tar
[Pipeline] sh
+ make -f docker.Makefile INVOCATION_IMAGE_TAG=jenkins-app-PR-683-1-coverage-experimental OUTPUT=coverage-experimental-invocation-image.tar save-invocation-image-tag
docker tag docker/cnab-app-base:jenkins-app-PR-683-1 docker/cnab-app-base:jenkins-app-PR-683-1-coverage-experimental
docker save docker/cnab-app-base:jenkins-app-PR-683-1-coverage-experimental -o _build/coverage-experimental-invocation-image.tar
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] stash
Stashed 21 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/binaries.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/e2e
[Pipeline] {
[Pipeline] stash
Stashed 66 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/e2e.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/examples
[Pipeline] {
[Pipeline] stash
Stashed 29 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ xargs docker image rm -f
+ docker image ls --format={{.Repository}}:{{.Tag}} *jenkins-app-PR-683-1*
Untagged: docker-app-e2e-cross:jenkins-app-PR-683-1
Deleted: sha256:fd0d19d4375e0f92c5c03fc713f87315e040441983b91dc17b5297918bbf7b6a
Deleted: sha256:06704b6e359dec7001f6e86bd91c5c8316a011e980d387f4778ff76f860d3259
Deleted: sha256:610dba0accd54a3622a9f284f90c6b2cd601b2cd9fab3471564d1158f43aae2f
Deleted: sha256:293b1457384c099f393932ff6000c54e510ae42dae559f1e02acc033b7b3379b
Untagged: docker-app-cross:jenkins-app-PR-683-1
Deleted: sha256:ddb15a0261063842ce71be5fa5bb34c0d28fd36b3edb127df293011149f01655
Deleted: sha256:061c503bdc09c50f001ee17883c777f10ee9802523f13e66d12dc990f83b95bf
Deleted: sha256:26c96c59e98983ee942fc7b8a77025ae9b9daa2ba29efeb9c51a294c54d8f81a
Deleted: sha256:872fec89c5a90bfa8c3a6299113738dec91ef9277c922a24a2f1459493b610b6
Deleted: sha256:2a2d044c7c8dbc783600243dd026621dd5264d43a6bcace0575cb15a7d4f7d1d
Deleted: sha256:a35b5b6a8acf2a0ed0aba7792a57c8c0b10b8d372ce6c8fdc01d99ccbbcf476e
Untagged: docker-app-cli:jenkins-app-PR-683-1
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] deleteDir
Stashed 1 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/invocation-image.tgz
[Pipeline] stash
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
Stashed 1 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/coverage-invocation-image.tgz
[Pipeline] stash
Stashed 1 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/coverage-experimental-invocation-image.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app
[Pipeline] {
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-683-1
Untagged: docker/cnab-app-base:jenkins-app-PR-683-1
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-683-1-coverage
Untagged: docker/cnab-app-base:jenkins-app-PR-683-1-coverage
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-683-1-coverage-experimental
Untagged: docker/cnab-app-base:jenkins-app-PR-683-1-coverage-experimental
Deleted: sha256:ad263e78b46b19b4d37a17aa49fd5fa544fde8efd320ad0338fec988c3cb8229
Deleted: sha256:354023c9f21b28ed20e6560710336eb04d02e34fc6c423562cf0bbab9097db06
Deleted: sha256:410028aa03a97a7af02fd0da693f6e092821ddb7034082fcd987954f95943f3d
Deleted: sha256:5d0f7c5dd32f255888c9a6d3a94d8d3888983835e196659ba299e464900150a3
Deleted: sha256:d295d1049c3d7700b2d20d46082a18a4717385d5c0952f91dbd31dc0f0d9373c
Deleted: sha256:282d2695ea0254dcda29feb41b8761d8edbae2770eed9e9567810893c6c12f30
Deleted: sha256:908628415de8fb5a4c3102dd111523738b40459eba15cb5118af88c286d07908
[Pipeline] }
[Pipeline] // dir
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // parallel
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Test)
[Pipeline] parallel
[Pipeline] { (Branch: Coverage)
[Pipeline] { (Branch: Coverage (experimental))
[Pipeline] { (Branch: Test Linux)
[Pipeline] stage
[Pipeline] { (Coverage)
[Pipeline] stage
[Pipeline] { (Coverage (experimental))
[Pipeline] stage
[Pipeline] { (Test Linux)
[Pipeline] node
[Pipeline] node
[Pipeline] node
Still waiting to schedule task
‘arm32v7-ubuntu-41’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-42’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-43’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-44’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-45’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-46’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-47’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-48’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-49’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-50’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-01’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-02’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-03’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-04’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘azwin-2-cc3270’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘azwin-2-cdca60’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-11’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-12’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-13’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-14’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-15’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-16’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-17’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-18’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-19’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-20’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-21’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-22’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-23’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-24’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-25’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-26’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-27’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-28’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-31’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-32’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-33’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-01’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-02’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-03’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-04’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-05’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-06’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-13’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-14’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-16’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-25’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-26’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-29’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-30’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ubuntu-1804-overlay2 (i-028797bb86a15485f)’ is offline
Still waiting to schedule task
‘arm32v7-ubuntu-41’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-42’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-43’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-44’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-45’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-46’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-47’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-48’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-49’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-50’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-01’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-02’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-03’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-04’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘azwin-2-cc3270’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘azwin-2-cdca60’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-11’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-12’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-13’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-14’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-15’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-16’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-17’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-18’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-19’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-20’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-21’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-22’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-23’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-24’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-25’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-26’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-27’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-28’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-31’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-32’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-33’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-01’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-02’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-03’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-04’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-05’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-06’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-13’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-14’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-16’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-25’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-26’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-29’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-30’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ubuntu-1804-overlay2 (i-028797bb86a15485f)’ is offline
Still waiting to schedule task
‘arm32v7-ubuntu-41’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-42’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-43’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-44’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-45’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-46’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-47’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-48’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-49’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm32v7-ubuntu-50’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-01’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-02’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-03’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘arm64v8-ubuntu-04’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘azwin-2-cc3270’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘azwin-2-cdca60’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-11’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-12’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-13’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-14’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-15’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-16’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-17’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-18’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-19’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-20’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-21’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-22’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-23’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-24’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-25’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-26’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-27’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-28’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-31’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-32’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ppc64le-ubuntu-33’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-01’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-02’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-03’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-04’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-05’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-06’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-13’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-14’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-16’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-25’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-26’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-29’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘s390x-ubuntu-30’ doesn’t have label ‘ubuntu-1804&&x86_64&&overlay2’; ‘ubuntu-1804-overlay2 (i-028797bb86a15485f)’ is offline
Running on ubuntu-1804-overlay2 (i-028797bb86a15485f) in /home/ubuntu/workspace/app_PR-683
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app # timeout=10
Fetching upstream changes from https://github.com/docker/app.git
 > git --version # timeout=10
using GIT_ASKPASS to set credentials docker-jenkins GitHub credentials
 > git fetch --no-tags --progress https://github.com/docker/app.git +refs/pull/683/head:refs/remotes/origin/PR-683
Fetching without tags
Checking out Revision f87a3be3ead295ddc615be8cf08159ca58c0fbce (PR-683)
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/683/head:refs/remotes/origin/PR-683 # timeout=10
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
Fetching upstream changes from https://github.com/docker/app.git
using GIT_ASKPASS to set credentials docker-jenkins GitHub credentials
 > git fetch --no-tags --progress https://github.com/docker/app.git +refs/pull/683/head:refs/remotes/origin/PR-683
 > git config core.sparsecheckout # timeout=10
 > git checkout -f f87a3be3ead295ddc615be8cf08159ca58c0fbce
Commit message: "added app labels to container metadata"
fatal: bad object 26028d2ce48352c9b2c3f496e963b79a4944a426
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/coverage-invocation-image.tgz
[Pipeline] sh
+ docker load -i coverage-invocation-image.tar
Running on ubuntu-1804-overlay2 (i-015cebc0d93303021) in /home/ubuntu/workspace/app_PR-683
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Loaded image: docker/cnab-app-base:jenkins-app-PR-683-1-coverage
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app # timeout=10
Fetching upstream changes from https://github.com/docker/app.git
 > git --version # timeout=10
using GIT_ASKPASS to set credentials docker-jenkins GitHub credentials
 > git fetch --no-tags --progress https://github.com/docker/app.git +refs/pull/683/head:refs/remotes/origin/PR-683
+ make -f docker.Makefile TAG=jenkins-app-PR-683-1-coverage coverage-run
docker build --build-arg EXPERIMENTAL=off --build-arg TAG=jenkins-app-PR-683-1-coverage --build-arg COMMIT=f87a3be3 --build-arg ALPINE_VERSION=3.10.1 --build-arg GOPROXY=direct --target=dev -t docker-app-dev:jenkins-app-PR-683-1 .
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/683/head:refs/remotes/origin/PR-683 # timeout=10
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
Fetching without tags
Running on ubuntu-1804-overlay2 (i-075347d15c62bce2d) in /home/ubuntu/workspace/app_PR-683
[Pipeline] {
[Pipeline] withEnv
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
Checking out Revision f87a3be3ead295ddc615be8cf08159ca58c0fbce (PR-683)
Commit message: "added app labels to container metadata"
fatal: bad object 26028d2ce48352c9b2c3f496e963b79a4944a426
Sending build context to Docker daemon  75.58MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
Fetching upstream changes from https://github.com/docker/app.git
using GIT_ASKPASS to set credentials docker-jenkins GitHub credentials
 > git fetch --no-tags --progress https://github.com/docker/app.git +refs/pull/683/head:refs/remotes/origin/PR-683
 > git config core.sparsecheckout # timeout=10
 > git checkout -f f87a3be3ead295ddc615be8cf08159ca58c0fbce
sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705: Pulling from dockercore/golang-cross
4ae16bd47783: Pulling fs layer
bbab4ec87ac4: Pulling fs layer
2ea1f7804402: Pulling fs layer
96465440c208: Pulling fs layer
16a3d8aca6cd: Pulling fs layer
e0ec5610455a: Pulling fs layer
96d705baf026: Pulling fs layer
39007eb46008: Pulling fs layer
4e549f0f5e64: Pulling fs layer
c0058a8c71f2: Pulling fs layer
2f8d98df0991: Pulling fs layer
96465440c208: Waiting
16a3d8aca6cd: Waiting
e0ec5610455a: Waiting
96d705baf026: Waiting
39007eb46008: Waiting
4e549f0f5e64: Waiting
c0058a8c71f2: Waiting
2f8d98df0991: Waiting
bbab4ec87ac4: Verifying Checksum
bbab4ec87ac4: Download complete
2ea1f7804402: Verifying Checksum
2ea1f7804402: Download complete
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
4ae16bd47783: Verifying Checksum
4ae16bd47783: Download complete
96465440c208: Verifying Checksum
96465440c208: Download complete
16a3d8aca6cd: Verifying Checksum
16a3d8aca6cd: Download complete
96d705baf026: Verifying Checksum
96d705baf026: Download complete
39007eb46008: Verifying Checksum
39007eb46008: Download complete
c0058a8c71f2: Verifying Checksum
c0058a8c71f2: Download complete
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/coverage-experimental-invocation-image.tgz
[Pipeline] sh
+ docker load -i coverage-experimental-invocation-image.tar
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app # timeout=10
Fetching upstream changes from https://github.com/docker/app.git
 > git --version # timeout=10
using GIT_ASKPASS to set credentials docker-jenkins GitHub credentials
 > git fetch --no-tags --progress https://github.com/docker/app.git +refs/pull/683/head:refs/remotes/origin/PR-683
Loaded image: docker/cnab-app-base:jenkins-app-PR-683-1-coverage-experimental
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ make EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- -f docker.Makefile TAG=jenkins-app-PR-683-1-coverage-experimental coverage-run
docker build --build-arg EXPERIMENTAL=on --build-arg TAG=jenkins-app-PR-683-1-coverage-experimental --build-arg COMMIT=f87a3be3 --build-arg ALPINE_VERSION=3.10.1 --build-arg GOPROXY=direct --target=dev -t docker-app-dev:jenkins-app-PR-683-1 .
Sending build context to Docker daemon  75.58MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705: Pulling from dockercore/golang-cross
4ae16bd47783: Pulling fs layer
bbab4ec87ac4: Pulling fs layer
2ea1f7804402: Pulling fs layer
96465440c208: Pulling fs layer
16a3d8aca6cd: Pulling fs layer
e0ec5610455a: Pulling fs layer
96d705baf026: Pulling fs layer
39007eb46008: Pulling fs layer
4e549f0f5e64: Pulling fs layer
c0058a8c71f2: Pulling fs layer
2f8d98df0991: Pulling fs layer
96465440c208: Waiting
16a3d8aca6cd: Waiting
e0ec5610455a: Waiting
96d705baf026: Waiting
39007eb46008: Waiting
4e549f0f5e64: Waiting
c0058a8c71f2: Waiting
2f8d98df0991: Waiting
2ea1f7804402: Verifying Checksum
2ea1f7804402: Download complete
bbab4ec87ac4: Verifying Checksum
bbab4ec87ac4: Download complete
e0ec5610455a: Verifying Checksum
e0ec5610455a: Download complete
4ae16bd47783: Verifying Checksum
4ae16bd47783: Download complete
96465440c208: Verifying Checksum
96465440c208: Download complete
96d705baf026: Verifying Checksum
96d705baf026: Download complete
39007eb46008: Verifying Checksum
39007eb46008: Download complete
16a3d8aca6cd: Verifying Checksum
16a3d8aca6cd: Download complete
c0058a8c71f2: Verifying Checksum
c0058a8c71f2: Download complete
4e549f0f5e64: Verifying Checksum
4e549f0f5e64: Download complete
e0ec5610455a: Verifying Checksum
e0ec5610455a: Download complete
2f8d98df0991: Verifying Checksum
2f8d98df0991: Download complete
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/683/head:refs/remotes/origin/PR-683 # timeout=10
Fetching without tags
Checking out Revision f87a3be3ead295ddc615be8cf08159ca58c0fbce (PR-683)
4e549f0f5e64: Verifying Checksum
4e549f0f5e64: Download complete
4ae16bd47783: Pull complete
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
Fetching upstream changes from https://github.com/docker/app.git
using GIT_ASKPASS to set credentials docker-jenkins GitHub credentials
 > git fetch --no-tags --progress https://github.com/docker/app.git +refs/pull/683/head:refs/remotes/origin/PR-683
 > git config core.sparsecheckout # timeout=10
 > git checkout -f f87a3be3ead295ddc615be8cf08159ca58c0fbce
bbab4ec87ac4: Pull complete
2ea1f7804402: Pull complete
Commit message: "added app labels to container metadata"
fatal: bad object 26028d2ce48352c9b2c3f496e963b79a4944a426
2f8d98df0991: Verifying Checksum
2f8d98df0991: Download complete
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
4ae16bd47783: Pull complete
bbab4ec87ac4: Pull complete
2ea1f7804402: Pull complete
96465440c208: Pull complete
96465440c208: Pull complete
16a3d8aca6cd: Pull complete
16a3d8aca6cd: Pull complete
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/invocation-image.tgz
[Pipeline] sh
+ docker load -i invocation-image.tar
e0ec5610455a: Pull complete
96d705baf026: Pull complete
39007eb46008: Pull complete
Loaded image: docker/cnab-app-base:jenkins-app-PR-683-1
[Pipeline] }
e0ec5610455a: Pull complete
96d705baf026: Pull complete
39007eb46008: Pull complete
[Pipeline] // dir
[Pipeline] unstash
4e549f0f5e64: Pull complete
c0058a8c71f2: Pull complete
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/binaries.tgz
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/examples
[Pipeline] {
[Pipeline] unstash
4e549f0f5e64: Pull complete
c0058a8c71f2: Pull complete
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/e2e
[Pipeline] {
[Pipeline] unstash
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/stashes/e2e.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ ./gotestsum-linux --format short-verbose --junitfile e2e-linux.xml --raw-command -- ./test2json-linux -t -p e2e/linux ./docker-app-e2e-linux -test.v --e2e-path=e2e
2f8d98df0991: Pull complete
Digest: sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705
Status: Downloaded newer image for dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Running in 41e1af69ddeb
Removing intermediate container 41e1af69ddeb
 ---> 67a1a3af5eee
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Running in 1ff55f663081
Reading package lists...
Building dependency tree...
Reading state information...
coreutils is already the newest version (8.30-3).
coreutils set to manually installed.
util-linux is already the newest version (2.33.1-0.1).
util-linux set to manually installed.
The following NEW packages will be installed:
  uuid-runtime
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 95.2 kB of archives.
After this operation, 211 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian buster/main amd64 uuid-runtime amd64 2.33.1-0.1 [95.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 95.2 kB in 0s (365 kB/s)
Selecting previously unselected package uuid-runtime.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 25419 files and directories currently installed.)
Preparing to unpack .../uuid-runtime_2.33.1-0.1_amd64.deb ...
Unpacking uuid-runtime (2.33.1-0.1) ...
Setting up uuid-runtime (2.33.1-0.1) ...
Adding group `uuidd' (GID 102) ...
Done.
Warning: The home dir /run/uuidd you specified can't be accessed: No such file or directory
Adding system user `uuidd' (UID 101) ...
Adding new user `uuidd' (UID 101) with group `uuidd' ...
Not creating home directory `/run/uuidd'.
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Removing intermediate container 1ff55f663081
 ---> 337bf356ff26
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Running in e21e8d0e652f
Removing intermediate container e21e8d0e652f
 ---> 1e491c4efdb7
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Running in d407ba1128d8
Cloning into '.'...
Note: checking out 'a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b <new-branch-name>

HEAD is now at a1b83ffd Merge pull request #1894 from thaJeztah/19.03_backport_reduce_vendoring_impact
Removing intermediate container d407ba1128d8
 ---> 0d55e979dce8
Step 6/18 : ARG GOPROXY
 ---> Running in 7cc859810c12
Removing intermediate container 7cc859810c12
 ---> 7578e2a271f8
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Running in 26cf66dfcbf2
./scripts/build/osx
Building build/docker-darwin-amd64
2f8d98df0991: Pull complete
Digest: sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705
Status: Downloaded newer image for dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Running in cd0e4d499be5
Removing intermediate container cd0e4d499be5
 ---> 87917de87998
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Running in cd312e1763eb
Reading package lists...
Building dependency tree...
Reading state information...
coreutils is already the newest version (8.30-3).
coreutils set to manually installed.
util-linux is already the newest version (2.33.1-0.1).
util-linux set to manually installed.
The following NEW packages will be installed:
  uuid-runtime
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 95.2 kB of archives.
After this operation, 211 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian buster/main amd64 uuid-runtime amd64 2.33.1-0.1 [95.2 kB]
PASS e2e/linux.TestBuild (24.59s)
debconf: delaying package configuration, since apt-utils is not installed
Fetched 95.2 kB in 0s (360 kB/s)
Selecting previously unselected package uuid-runtime.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 25419 files and directories currently installed.)
Preparing to unpack .../uuid-runtime_2.33.1-0.1_amd64.deb ...
Unpacking uuid-runtime (2.33.1-0.1) ...
Setting up uuid-runtime (2.33.1-0.1) ...
Adding group `uuidd' (GID 102) ...
Done.
Warning: The home dir /run/uuidd you specified can't be accessed: No such file or directory
Adding system user `uuidd' (UID 101) ...
Adding new user `uuidd' (UID 101) with group `uuidd' ...
Not creating home directory `/run/uuidd'.
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Removing intermediate container cd312e1763eb
 ---> c59f2211370f
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Running in 87bda858adda
Removing intermediate container 87bda858adda
 ---> 3f74c4e6fd68
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Running in 053625a15ae8
Cloning into '.'...
Note: checking out 'a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b <new-branch-name>

HEAD is now at a1b83ffd Merge pull request #1894 from thaJeztah/19.03_backport_reduce_vendoring_impact
PASS e2e/linux.TestCallCustomStatusAction/validCustomDockerStatusAction (5.16s)
PASS e2e/linux.TestCallCustomStatusAction/validCustomStandardStatusAction (4.85s)
PASS e2e/linux.TestCallCustomStatusAction/missingCustomStatusAction (3.99s)
PASS e2e/linux.TestCallCustomStatusAction (13.99s)
Removing intermediate container 053625a15ae8
 ---> 37162d1e77a7
Step 6/18 : ARG GOPROXY
 ---> Running in c8cf86295504
Removing intermediate container c8cf86295504
 ---> fb61aebb6d7a
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Running in 7920c8bdcb8c
./scripts/build/osx
Building build/docker-darwin-amd64
PASS e2e/linux.TestCnabParameters (4.75s)
PASS e2e/linux.TestExitErrorCode (0.12s)
PASS e2e/linux.TestRender/envvariables/stdout (2.60s)
PASS e2e/linux.TestRender/envvariables/file (2.19s)
PASS e2e/linux.TestRender/envvariables (4.79s)
PASS e2e/linux.TestRender (4.79s)
PASS e2e/linux.TestRenderFormatters (16.65s)
PASS e2e/linux.TestInit (0.14s)
PASS e2e/linux.TestInspectApp (13.38s)
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
PASS e2e/linux.TestDockerAppLifecycle/withBindMounts (24.98s)
PASS e2e/linux.TestDockerAppLifecycle/withoutBindMounts (20.27s)
PASS e2e/linux.TestDockerAppLifecycle (45.25s)
PASS e2e/linux.TestCredentials/missing (0.08s)
PASS e2e/linux.TestCredentials/full (2.38s)
PASS e2e/linux.TestCredentials/mixed-credstore (1.28s)
PASS e2e/linux.TestCredentials/mixed-local-cred (1.23s)
PASS e2e/linux.TestCredentials/overload (0.06s)
PASS e2e/linux.TestCredentials (5.02s)
PASS e2e/linux.TestRenderWithEnvFile (1.58s)
PASS e2e/linux.TestExamplesAreValid (0.19s)
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
PASS e2e/linux.TestImageList (12.67s)
PASS e2e/linux.TestImageRm (13.24s)
PASS e2e/linux.TestImageTag (14.14s)
PASS e2e/linux.TestInvokePluginFromCLI (4.25s)
WARNING: binary creates a Linux executable. Use cross for macOS or Windows.
./scripts/build/binary
Building statically linked build/docker-linux-amd64
PASS e2e/linux.TestPushArchs/default (3.25s)
PASS e2e/linux.TestPushArchs/all-platforms (1.40s)
PASS e2e/linux.TestPushArchs (16.26s)
WARNING: binary creates a Linux executable. Use cross for macOS or Windows.
./scripts/build/binary
Building statically linked build/docker-linux-amd64
PASS e2e/linux.TestPushInsecureRegistry (17.89s)
PASS e2e/linux.TestPushInstall (16.31s)
PASS e2e/linux.TestPushPullInstall (16.00s)
Removing intermediate container 26cf66dfcbf2
 ---> d01e04c72948
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in 6344f788fef2
Removing intermediate container 6344f788fef2
 ---> 045b76245775
Step 9/18 : FROM build AS dev
 ---> 045b76245775
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in 41293885d6f1
Removing intermediate container 41293885d6f1
 ---> 41288efed765
Step 11/18 : ARG DEP_VERSION=v0.5.4
 ---> Running in 2f281cc1d287
Removing intermediate container 2f281cc1d287
 ---> e89384135cec
Step 12/18 : RUN curl -o /usr/bin/dep -L https://github.com/golang/dep/releases/download/${DEP_VERSION}/dep-linux-amd64 &&     chmod +x /usr/bin/dep
 ---> Running in 87f2ad514764
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   5401      0 --:--:-- --:--:-- --:--:--  5401

100 10.5M  100 10.5M    0     0  45.7M      0 --:--:-- --:--:-- --:--:-- 45.7M
Removing intermediate container 87f2ad514764
 ---> eec2b9fe8ffb
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in 0940d2f2079d
Removing intermediate container 0940d2f2079d
 ---> badccc87b10c
Step 14/18 : ARG GOPROXY
 ---> Running in 4e91646f80d3
Removing intermediate container 4e91646f80d3
 ---> 0011d79525d7
Step 15/18 : RUN mkdir $GOPATH/src/gotest.tools &&     git clone -q https://github.com/gotestyourself/gotestsum $GOPATH/src/gotest.tools/gotestsum &&     cd $GOPATH/src/gotest.tools/gotestsum &&     git -C $GOPATH/src/gotest.tools/gotestsum checkout -q $GOTESTSUM_VERSION &&     GO111MODULE=on GOOS=linux   go build -o /usr/local/bin/gotestsum-linux       gotest.tools/gotestsum &&     GO111MODULE=on GOOS=darwin  go build -o /usr/local/bin/gotestsum-darwin      gotest.tools/gotestsum &&     GO111MODULE=on GOOS=windows go build -o /usr/local/bin/gotestsum-windows.exe gotest.tools/gotestsum &&     ln -s gotestsum-linux /usr/local/bin/gotestsum
 ---> Running in 155aa27963bd
go: finding github.com/spf13/pflag v1.0.1
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/pkg/errors v0.8.0
go: finding github.com/sirupsen/logrus v1.0.5
go: finding github.com/onsi/gomega v1.4.3
go: finding github.com/google/go-cmp v0.2.0
go: finding gopkg.in/airbrake/gobrake.v2 v2.0.9
go: finding gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding github.com/onsi/ginkgo v1.8.0
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding github.com/onsi/ginkgo v1.6.0
go: finding golang.org/x/text v0.3.0
go: finding github.com/hpcloud/tail v1.0.0
go: finding github.com/davecgh/go-spew v1.1.0
go: finding github.com/fatih/color v1.6.0
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/mattn/go-colorable v0.0.9
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding github.com/golang/protobuf v1.2.0
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/stretchr/objx v0.1.0
go: finding gotest.tools v2.1.0+incompatible
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
go: downloading gotest.tools v2.1.0+incompatible
go: extracting gotest.tools v2.1.0+incompatible
go: downloading github.com/pkg/errors v0.8.0
go: downloading github.com/sirupsen/logrus v1.0.5
go: downloading github.com/spf13/pflag v1.0.1
go: downloading github.com/fatih/color v1.6.0
go: downloading github.com/jonboulle/clockwork v0.1.0
go: downloading golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: extracting github.com/pkg/errors v0.8.0
go: extracting github.com/jonboulle/clockwork v0.1.0
go: extracting github.com/spf13/pflag v1.0.1
go: extracting golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting github.com/sirupsen/logrus v1.0.5
go: downloading golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: downloading golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: extracting github.com/fatih/color v1.6.0
go: downloading github.com/mattn/go-isatty v0.0.3
go: downloading github.com/mattn/go-colorable v0.0.9
go: extracting github.com/mattn/go-colorable v0.0.9
go: extracting github.com/mattn/go-isatty v0.0.3
go: extracting golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
PASS e2e/linux.TestPushInstallBundle/push-bundle (4.68s)
PASS e2e/linux.TestPushInstallBundle/push-ref (1.09s)
PASS e2e/linux.TestPushInstallBundle/push-bundleref (1.49s)
PASS e2e/linux.TestPushInstallBundle (21.84s)
PASS e2e/linux

DONE 39 tests in 263.132s
time="2019-10-11T10:39:40Z" level=warning msg="failed to lookup go version for junit xml" error="exec: \"go\": executable file not found in $PATH"
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] archiveArtifacts
Archiving artifacts
Uploaded 1 artifact(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-683-1
Untagged: docker/cnab-app-base:jenkins-app-PR-683-1
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
Removing intermediate container 155aa27963bd
 ---> f550cce74138
Step 16/18 : RUN GOOS=linux   go build -o /usr/local/bin/test2json-linux       cmd/test2json &&     GOOS=darwin  go build -o /usr/local/bin/test2json-darwin      cmd/test2json &&     GOOS=windows go build -o /usr/local/bin/test2json-windows.exe cmd/test2json
 ---> Running in 2ad382126795
Removing intermediate container 2ad382126795
 ---> eba0d94e6426
Step 17/18 : RUN go get -d gopkg.in/mjibson/esc.v0 &&     cd /go/src/github.com/mjibson/esc &&     go build -v -o /usr/bin/esc . &&     rm -rf /go/src/* /go/pkg/* /go/bin/*
 ---> Running in 0b011f35071c
golang.org/x/tools/internal/semver
github.com/pkg/errors
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/go/internal/gcimporter
golang.org/x/tools/go/internal/packagesdriver
golang.org/x/tools/internal/fastwalk
golang.org/x/tools/internal/gopathwalk
golang.org/x/tools/internal/module
golang.org/x/tools/go/gcexportdata
golang.org/x/tools/go/packages
golang.org/x/tools/internal/imports
golang.org/x/tools/imports
github.com/mjibson/esc/embed
github.com/mjibson/esc
Removing intermediate container 0b011f35071c
 ---> 4583ecf3410e
Step 18/18 : COPY . .
 ---> 28d692a44913
[Warning] One or more build-args [ALPINE_VERSION COMMIT EXPERIMENTAL TAG] were not consumed
Successfully built 28d692a44913
Successfully tagged docker-app-dev:jenkins-app-PR-683-1
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-683-1-coverage-experimental --network="host" -t docker-app-dev:jenkins-app-PR-683-1 make COMMIT=f87a3be3 TAG=jenkins-app-PR-683-1-coverage-experimental EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- coverage
Removing intermediate container 7920c8bdcb8c
 ---> ccb364173a2a
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in 42eb0b2feb90
Removing intermediate container 42eb0b2feb90
 ---> 26c8fe7f934a
Step 9/18 : FROM build AS dev
 ---> 26c8fe7f934a
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in 49f6485e15f0
Removing intermediate container 49f6485e15f0
 ---> abadeda9e797
Step 11/18 : ARG DEP_VERSION=v0.5.4
 ---> Running in 1a78eda85c9a
Removing intermediate container 1a78eda85c9a
 ---> a11de60edaef
Step 12/18 : RUN curl -o /usr/bin/dep -L https://github.com/golang/dep/releases/download/${DEP_VERSION}/dep-linux-amd64 &&     chmod +x /usr/bin/dep
 ---> Running in 683a387cd515
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   6436      0 --:--:-- --:--:-- --:--:--  6436

100 10.5M  100 10.5M    0     0  43.3M      0 --:--:-- --:--:-- --:--:-- 43.3M
Removing intermediate container 683a387cd515
 ---> a9a4b5e3e13f
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in 3a0ebc776174
Removing intermediate container 3a0ebc776174
 ---> d37803b49c2d
Step 14/18 : ARG GOPROXY
 ---> Running in e7534e6cff8a
Removing intermediate container e7534e6cff8a
 ---> fced79b4eebc
Step 15/18 : RUN mkdir $GOPATH/src/gotest.tools &&     git clone -q https://github.com/gotestyourself/gotestsum $GOPATH/src/gotest.tools/gotestsum &&     cd $GOPATH/src/gotest.tools/gotestsum &&     git -C $GOPATH/src/gotest.tools/gotestsum checkout -q $GOTESTSUM_VERSION &&     GO111MODULE=on GOOS=linux   go build -o /usr/local/bin/gotestsum-linux       gotest.tools/gotestsum &&     GO111MODULE=on GOOS=darwin  go build -o /usr/local/bin/gotestsum-darwin      gotest.tools/gotestsum &&     GO111MODULE=on GOOS=windows go build -o /usr/local/bin/gotestsum-windows.exe gotest.tools/gotestsum &&     ln -s gotestsum-linux /usr/local/bin/gotestsum
 ---> Running in 2b71a4a2b4e2
go: finding github.com/mattn/go-colorable v0.0.9
go: finding github.com/google/go-cmp v0.2.0
go: finding github.com/pkg/errors v0.8.0
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/sirupsen/logrus v1.0.5
go: finding github.com/onsi/ginkgo v1.8.0
go: finding github.com/fatih/color v1.6.0
go: finding github.com/onsi/gomega v1.4.3
go: finding gotest.tools v2.1.0+incompatible
go: finding gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2
go: finding github.com/spf13/pflag v1.0.1
go: finding github.com/hpcloud/tail v1.0.0
go: finding golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding golang.org/x/text v0.3.0
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding github.com/golang/protobuf v1.2.0
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding gopkg.in/airbrake/gobrake.v2 v2.0.9
go: finding github.com/onsi/ginkgo v1.6.0
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/fsnotify/fsnotify v1.4.7
Running unit tests (coverage)...
CGO_ENABLED=0 gotestsum --junitfile _build/test-results/experimental-unit-coverage.xml -- -tags="experimental" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-10-11T10:40:04Z" -cover -test.coverprofile=_build/cov/unit.out github.com/docker/app github.com/docker/app/cmd/cnab-run github.com/docker/app/cmd/docker-app github.com/docker/app/internal github.com/docker/app/internal/commands github.com/docker/app/internal/commands/build github.com/docker/app/internal/commands/image github.com/docker/app/internal/compose github.com/docker/app/internal/formatter github.com/docker/app/internal/formatter/driver github.com/docker/app/internal/formatter/json github.com/docker/app/internal/formatter/yaml github.com/docker/app/internal/inspect github.com/docker/app/internal/log github.com/docker/app/internal/packager github.com/docker/app/internal/slices github.com/docker/app/internal/store github.com/docker/app/internal/yaml github.com/docker/app/loader github.com/docker/app/render github.com/docker/app/specification github.com/docker/app/types github.com/docker/app/types/metadata github.com/docker/app/types/parameters
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding github.com/stretchr/objx v0.1.0
go: finding github.com/davecgh/go-spew v1.1.0
∅  .
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
go: downloading gotest.tools v2.1.0+incompatible
go: extracting gotest.tools v2.1.0+incompatible
go: downloading github.com/pkg/errors v0.8.0
go: downloading github.com/spf13/pflag v1.0.1
go: downloading github.com/jonboulle/clockwork v0.1.0
go: downloading github.com/fatih/color v1.6.0
go: downloading github.com/sirupsen/logrus v1.0.5
go: downloading golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: extracting github.com/pkg/errors v0.8.0
go: extracting github.com/jonboulle/clockwork v0.1.0
go: extracting golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting github.com/sirupsen/logrus v1.0.5
go: downloading golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: downloading golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting github.com/spf13/pflag v1.0.1
go: extracting github.com/fatih/color v1.6.0
go: downloading github.com/mattn/go-isatty v0.0.3
go: downloading github.com/mattn/go-colorable v0.0.9
go: extracting github.com/mattn/go-isatty v0.0.3
go: extracting github.com/mattn/go-colorable v0.0.9
go: extracting golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
Removing intermediate container 2b71a4a2b4e2
 ---> def833095308
Step 16/18 : RUN GOOS=linux   go build -o /usr/local/bin/test2json-linux       cmd/test2json &&     GOOS=darwin  go build -o /usr/local/bin/test2json-darwin      cmd/test2json &&     GOOS=windows go build -o /usr/local/bin/test2json-windows.exe cmd/test2json
 ---> Running in 72704c4a0aad
Removing intermediate container 72704c4a0aad
 ---> c562f0939084
Step 17/18 : RUN go get -d gopkg.in/mjibson/esc.v0 &&     cd /go/src/github.com/mjibson/esc &&     go build -v -o /usr/bin/esc . &&     rm -rf /go/src/* /go/pkg/* /go/bin/*
 ---> Running in 82a3b25df39f
golang.org/x/tools/internal/semver
github.com/pkg/errors
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/go/internal/gcimporter
golang.org/x/tools/go/internal/packagesdriver
golang.org/x/tools/internal/fastwalk
golang.org/x/tools/internal/gopathwalk
golang.org/x/tools/internal/module
golang.org/x/tools/go/gcexportdata
golang.org/x/tools/go/packages
golang.org/x/tools/internal/imports
golang.org/x/tools/imports
github.com/mjibson/esc/embed
github.com/mjibson/esc
Removing intermediate container 82a3b25df39f
 ---> 0a0454103044
Step 18/18 : COPY . .
 ---> fc281359beb7
[Warning] One or more build-args [ALPINE_VERSION COMMIT EXPERIMENTAL TAG] were not consumed
Successfully built fc281359beb7
Successfully tagged docker-app-dev:jenkins-app-PR-683-1
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-683-1-coverage --network="host" -t docker-app-dev:jenkins-app-PR-683-1 make COMMIT=f87a3be3 TAG=jenkins-app-PR-683-1-coverage EXPERIMENTAL=off TEST_RESULTS_PREFIX= coverage
Running unit tests (coverage)...
CGO_ENABLED=0 gotestsum --junitfile _build/test-results/unit-coverage.xml -- -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:40:34Z" -cover -test.coverprofile=_build/cov/unit.out github.com/docker/app github.com/docker/app/cmd/cnab-run github.com/docker/app/cmd/docker-app github.com/docker/app/internal github.com/docker/app/internal/commands github.com/docker/app/internal/commands/build github.com/docker/app/internal/commands/image github.com/docker/app/internal/compose github.com/docker/app/internal/formatter github.com/docker/app/internal/formatter/driver github.com/docker/app/internal/formatter/json github.com/docker/app/internal/formatter/yaml github.com/docker/app/internal/inspect github.com/docker/app/internal/log github.com/docker/app/internal/packager github.com/docker/app/internal/slices github.com/docker/app/internal/store github.com/docker/app/internal/yaml github.com/docker/app/loader github.com/docker/app/render github.com/docker/app/specification github.com/docker/app/types github.com/docker/app/types/metadata github.com/docker/app/types/parameters
∅  .
∅  cmd/cnab-run
∅  cmd/docker-app
✓  internal (10ms)
✓  internal/commands/build (15ms)
✓  internal/commands (256ms)
✓  internal/commands/image (17ms)
✓  internal/formatter (6ms)
✓  internal/compose (5ms)
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
✓  internal/inspect (82ms)
∅  internal/log
✓  internal/slices (2ms)
✓  internal/store (24ms)
✓  internal/packager (39ms)
✓  internal/yaml (8ms)
✓  loader (17ms)
✓  render (49ms)
✓  specification (8ms)
✓  types (23ms)
✓  types/metadata (6ms)
✓  types/parameters (6ms)

DONE 225 tests in 100.100s
CGO_ENABLED=0 go test -tags=""experimental" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-10-11T10:40:04Z" -coverpkg="./..." -c -o _build/docker-app.cov ./cmd/docker-app
Running e2e tests (coverage)...
DOCKERAPP_BINARY=../e2e/coverage-bin CGO_ENABLED=0 gotestsum --junitfile _build/test-results/experimental-e2e-coverage.xml -- -tags="experimental" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-10-11T10:40:04Z" -v ./e2e
∅  cmd/cnab-run
∅  cmd/docker-app
✓  internal (17ms)
✓  internal/commands/build (20ms)
✓  internal/commands (452ms)
✓  internal/commands/image (11ms)
✓  internal/formatter (3ms)
✓  internal/compose (5ms)
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
✓  internal/inspect (87ms)
∅  internal/log
✓  internal/slices (4ms)
✓  internal/store (20ms)
✓  internal/packager (34ms)
✓  internal/yaml (7ms)
✓  loader (9ms)
✓  render (46ms)
✓  specification (7ms)
✓  types (18ms)
✓  types/metadata (6ms)
✓  types/parameters (5ms)

DONE 225 tests in 101.509s
CGO_ENABLED=0 go test -tags=""" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:40:34Z" -coverpkg="./..." -c -o _build/docker-app.cov ./cmd/docker-app
Running e2e tests (coverage)...
DOCKERAPP_BINARY=../e2e/coverage-bin CGO_ENABLED=0 gotestsum --junitfile _build/test-results/e2e-coverage.xml -- -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=f87a3be3 -X github.com/docker/app/internal.Version=jenkins-app-PR-683-1-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-11T10:40:34Z" -v ./e2e
✖  e2e (4m12.64s)

=== Failed
=== FAIL: e2e TestDockerAppLifecycle/withBindMounts (20.26s)
    --- FAIL: TestDockerAppLifecycle/withBindMounts (20.26s)
        commands_test.go:422: assertion failed: expression is false: exp.MatchString(combined): expected "\"com.docker.app.version\": \"jenkins-app-PR-683-1-coverage-experimental\"" != actual "[\n    {\n        \"ID\": \"2rjf19bylnccdi0o9ortioxwx\",\n        \"Version\": {\n            \"Index\": 29\n        },\n        \"CreatedAt\": \"2019-10-11T10:43:16.439629166Z\",\n        \"UpdatedAt\": \"2019-10-11T10:43:16.441144964Z\",\n        \"Spec\": {\n            \"Name\": \"TestDockerAppLifecycle_withBindMounts_db\",\n            \"Labels\": {\n                \"com.docker.stack.image\": \"postgres:9.3\",\n                \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withBindMounts\"\n            },\n            \"TaskTemplate\": {\n                \"ContainerSpec\": {\n                    \"Image\": \"postgres:9.3@sha256:3cd40afb5803762170a1149ade6962fe24d405b3ccf2fe499ff1428635520a17\",\n                    \"Labels\": {\n                        \"com.docker.app.namespace\": \"TestDockerAppLifecycle_withBindMounts\",\n                        \"com.docker.app.version\": \"jenkins-app-PR-683-1\",\n                        \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withBindMounts\"\n                    },\n                    \"Privileges\": {\n                        \"CredentialSpec\": null,\n                        \"SELinuxContext\": null\n                    },\n                    \"StopGracePeriod\": 10000000000,\n                    \"DNSConfig\": {},\n                    \"Isolation\": \"default\"\n                },\n                \"Resources\": {},\n                \"RestartPolicy\": {\n                    \"Condition\": \"any\",\n                    \"Delay\": 5000000000,\n                    \"MaxAttempts\": 0\n                },\n                \"Placement\": {\n                    \"Platforms\": [\n                        {\n                            \"Architecture\": \"amd64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"arm64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"386\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"ppc64le\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"s390x\",\n                            \"OS\": \"linux\"\n                        }\n                    ]\n                },\n                \"Networks\": [\n                    {\n                        \"Target\": \"naas4pqqvjjhmpoympl5obylx\",\n                        \"Aliases\": [\n                            \"db\"\n                        ]\n                    }\n                ],\n                \"ForceUpdate\": 0,\n                \"Runtime\": \"container\"\n            },\n            \"Mode\": {\n                \"Replicated\": {\n                    \"Replicas\": 1\n                }\n            },\n            \"UpdateConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"RollbackConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"EndpointSpec\": {\n                \"Mode\": \"vip\"\n            }\n        },\n        \"Endpoint\": {\n            \"Spec\": {\n                \"Mode\": \"vip\"\n            },\n            \"VirtualIPs\": [\n                {\n                    \"NetworkID\": \"naas4pqqvjjhmpoympl5obylx\",\n                    \"Addr\": \"10.0.0.5/24\"\n                }\n            ]\n        }\n    }\n]\n"

=== FAIL: e2e TestDockerAppLifecycle/withoutBindMounts (16.53s)
    --- FAIL: TestDockerAppLifecycle/withoutBindMounts (16.53s)
        commands_test.go:422: assertion failed: expression is false: exp.MatchString(combined): expected "\"com.docker.app.version\": \"jenkins-app-PR-683-1-coverage-experimental\"" != actual "[\n    {\n        \"ID\": \"kb4e8bhdybpyyzz0r7zqf6ar3\",\n        \"Version\": {\n            \"Index\": 29\n        },\n        \"CreatedAt\": \"2019-10-11T10:43:32.475299904Z\",\n        \"UpdatedAt\": \"2019-10-11T10:43:32.476943923Z\",\n        \"Spec\": {\n            \"Name\": \"TestDockerAppLifecycle_withoutBindMounts_db\",\n            \"Labels\": {\n                \"com.docker.stack.image\": \"postgres:9.3\",\n                \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withoutBindMounts\"\n            },\n            \"TaskTemplate\": {\n                \"ContainerSpec\": {\n                    \"Image\": \"postgres:9.3@sha256:3cd40afb5803762170a1149ade6962fe24d405b3ccf2fe499ff1428635520a17\",\n                    \"Labels\": {\n                        \"com.docker.app.namespace\": \"TestDockerAppLifecycle_withoutBindMounts\",\n                        \"com.docker.app.version\": \"jenkins-app-PR-683-1\",\n                        \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withoutBindMounts\"\n                    },\n                    \"Privileges\": {\n                        \"CredentialSpec\": null,\n                        \"SELinuxContext\": null\n                    },\n                    \"StopGracePeriod\": 10000000000,\n                    \"DNSConfig\": {},\n                    \"Isolation\": \"default\"\n                },\n                \"Resources\": {},\n                \"RestartPolicy\": {\n                    \"Condition\": \"any\",\n                    \"Delay\": 5000000000,\n                    \"MaxAttempts\": 0\n                },\n                \"Placement\": {\n                    \"Platforms\": [\n                        {\n                            \"Architecture\": \"amd64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"arm64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"386\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"ppc64le\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"s390x\",\n                            \"OS\": \"linux\"\n                        }\n                    ]\n                },\n                \"Networks\": [\n                    {\n                        \"Target\": \"kmk27v9zladgut9zooi6hlrk9\",\n                        \"Aliases\": [\n                            \"db\"\n                        ]\n                    }\n                ],\n                \"ForceUpdate\": 0,\n                \"Runtime\": \"container\"\n            },\n            \"Mode\": {\n                \"Replicated\": {\n                    \"Replicas\": 1\n                }\n            },\n            \"UpdateConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"RollbackConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"EndpointSpec\": {\n                \"Mode\": \"vip\"\n            }\n        },\n        \"Endpoint\": {\n            \"Spec\": {\n                \"Mode\": \"vip\"\n            },\n            \"VirtualIPs\": [\n                {\n                    \"NetworkID\": \"kmk27v9zladgut9zooi6hlrk9\",\n                    \"Addr\": \"10.0.1.5/24\"\n                }\n            ]\n        }\n    }\n]\n"

=== FAIL: e2e TestDockerAppLifecycle (36.79s)


DONE 39 tests, 3 failures in 253.949s
make: *** [Makefile:102: coverage-test-e2e] Error 1
docker.Makefile:100: recipe for target 'coverage-run' failed
make: *** [coverage-run] Error 2
+ true
[Pipeline] sh
+ make EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- -f docker.Makefile TAG=jenkins-app-PR-683-1-coverage-experimental coverage-results
docker cp docker-app-cov-jenkins-app-PR-683-1-coverage-experimental:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-683-1-coverage-experimental:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-683-1-coverage-experimental
docker-app-cov-jenkins-app-PR-683-1-coverage-experimental
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/_build/test-results
[Pipeline] {
[Pipeline] sh
+ [ ! -e experimental-unit-coverage.xml ]
+ sed -i -E -e s,"github.com/docker/app","unit/experimental",g; s,"github.com/docker/app/([^"]*)","unit/experimental/\1",g experimental-unit-coverage.xml
[Pipeline] sh
+ [ ! -e experimental-e2e-coverage.xml ]
+ sed -i -E -e s,"github.com/docker/app/e2e","e2e/experimental",g experimental-e2e-coverage.xml
[Pipeline] archiveArtifacts
Archiving artifacts
Uploaded 2 artifact(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-683-1-coverage-experimental
Untagged: docker/cnab-app-base:jenkins-app-PR-683-1-coverage-experimental
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
✖  e2e (3m57.869s)

=== Failed
=== FAIL: e2e TestDockerAppLifecycle/withBindMounts (17.11s)
    --- FAIL: TestDockerAppLifecycle/withBindMounts (17.11s)
        commands_test.go:422: assertion failed: expression is false: exp.MatchString(combined): expected "\"com.docker.app.version\": \"jenkins-app-PR-683-1-coverage\"" != actual "[\n    {\n        \"ID\": \"v5vonj819ibr5yyu6sq8pe5ot\",\n        \"Version\": {\n            \"Index\": 28\n        },\n        \"CreatedAt\": \"2019-10-11T10:43:38.06707055Z\",\n        \"UpdatedAt\": \"2019-10-11T10:43:38.067959604Z\",\n        \"Spec\": {\n            \"Name\": \"TestDockerAppLifecycle_withBindMounts_db\",\n            \"Labels\": {\n                \"com.docker.stack.image\": \"postgres:9.3\",\n                \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withBindMounts\"\n            },\n            \"TaskTemplate\": {\n                \"ContainerSpec\": {\n                    \"Image\": \"postgres:9.3@sha256:3cd40afb5803762170a1149ade6962fe24d405b3ccf2fe499ff1428635520a17\",\n                    \"Labels\": {\n                        \"com.docker.app.namespace\": \"TestDockerAppLifecycle_withBindMounts\",\n                        \"com.docker.app.version\": \"jenkins-app-PR-683-1\",\n                        \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withBindMounts\"\n                    },\n                    \"Privileges\": {\n                        \"CredentialSpec\": null,\n                        \"SELinuxContext\": null\n                    },\n                    \"StopGracePeriod\": 10000000000,\n                    \"DNSConfig\": {},\n                    \"Isolation\": \"default\"\n                },\n                \"Resources\": {},\n                \"RestartPolicy\": {\n                    \"Condition\": \"any\",\n                    \"Delay\": 5000000000,\n                    \"MaxAttempts\": 0\n                },\n                \"Placement\": {\n                    \"Platforms\": [\n                        {\n                            \"Architecture\": \"amd64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"arm64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"386\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"ppc64le\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"s390x\",\n                            \"OS\": \"linux\"\n                        }\n                    ]\n                },\n                \"Networks\": [\n                    {\n                        \"Target\": \"pjt71kvgnr38suvkth81qucdx\",\n                        \"Aliases\": [\n                            \"db\"\n                        ]\n                    }\n                ],\n                \"ForceUpdate\": 0,\n                \"Runtime\": \"container\"\n            },\n            \"Mode\": {\n                \"Replicated\": {\n                    \"Replicas\": 1\n                }\n            },\n            \"UpdateConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"RollbackConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"EndpointSpec\": {\n                \"Mode\": \"vip\"\n            }\n        },\n        \"Endpoint\": {\n            \"Spec\": {\n                \"Mode\": \"vip\"\n            },\n            \"VirtualIPs\": [\n                {\n                    \"NetworkID\": \"pjt71kvgnr38suvkth81qucdx\",\n                    \"Addr\": \"10.0.1.5/24\"\n                }\n            ]\n        }\n    }\n]\n"

=== FAIL: e2e TestDockerAppLifecycle/withoutBindMounts (10.98s)
    --- FAIL: TestDockerAppLifecycle/withoutBindMounts (10.98s)
        commands_test.go:422: assertion failed: expression is false: exp.MatchString(combined): expected "\"com.docker.app.version\": \"jenkins-app-PR-683-1-coverage\"" != actual "[\n    {\n        \"ID\": \"q5rl5yypyv9ixp3u2ye41tr05\",\n        \"Version\": {\n            \"Index\": 22\n        },\n        \"CreatedAt\": \"2019-10-11T10:43:50.082785224Z\",\n        \"UpdatedAt\": \"2019-10-11T10:43:50.083605878Z\",\n        \"Spec\": {\n            \"Name\": \"TestDockerAppLifecycle_withoutBindMounts_db\",\n            \"Labels\": {\n                \"com.docker.stack.image\": \"postgres:9.3\",\n                \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withoutBindMounts\"\n            },\n            \"TaskTemplate\": {\n                \"ContainerSpec\": {\n                    \"Image\": \"postgres:9.3@sha256:3cd40afb5803762170a1149ade6962fe24d405b3ccf2fe499ff1428635520a17\",\n                    \"Labels\": {\n                        \"com.docker.app.namespace\": \"TestDockerAppLifecycle_withoutBindMounts\",\n                        \"com.docker.app.version\": \"jenkins-app-PR-683-1\",\n                        \"com.docker.stack.namespace\": \"TestDockerAppLifecycle_withoutBindMounts\"\n                    },\n                    \"Privileges\": {\n                        \"CredentialSpec\": null,\n                        \"SELinuxContext\": null\n                    },\n                    \"StopGracePeriod\": 10000000000,\n                    \"DNSConfig\": {},\n                    \"Isolation\": \"default\"\n                },\n                \"Resources\": {},\n                \"RestartPolicy\": {\n                    \"Condition\": \"any\",\n                    \"Delay\": 5000000000,\n                    \"MaxAttempts\": 0\n                },\n                \"Placement\": {\n                    \"Platforms\": [\n                        {\n                            \"Architecture\": \"amd64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"arm64\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"386\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"ppc64le\",\n                            \"OS\": \"linux\"\n                        },\n                        {\n                            \"Architecture\": \"s390x\",\n                            \"OS\": \"linux\"\n                        }\n                    ]\n                },\n                \"Networks\": [\n                    {\n                        \"Target\": \"im2fflb2lkilelwl4z9581zm8\",\n                        \"Aliases\": [\n                            \"db\"\n                        ]\n                    }\n                ],\n                \"ForceUpdate\": 0,\n                \"Runtime\": \"container\"\n            },\n            \"Mode\": {\n                \"Replicated\": {\n                    \"Replicas\": 1\n                }\n            },\n            \"UpdateConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"RollbackConfig\": {\n                \"Parallelism\": 1,\n                \"FailureAction\": \"pause\",\n                \"Monitor\": 5000000000,\n                \"MaxFailureRatio\": 0,\n                \"Order\": \"stop-first\"\n            },\n            \"EndpointSpec\": {\n                \"Mode\": \"vip\"\n            }\n        },\n        \"Endpoint\": {\n            \"Spec\": {\n                \"Mode\": \"vip\"\n            },\n            \"VirtualIPs\": [\n                {\n                    \"NetworkID\": \"im2fflb2lkilelwl4z9581zm8\",\n                    \"Addr\": \"10.0.1.2/24\"\n                }\n            ]\n        }\n    }\n]\n"

=== FAIL: e2e TestDockerAppLifecycle (28.09s)


DONE 39 tests, 3 failures in 239.295s
make: *** [Makefile:102: coverage-test-e2e] Error 1
docker.Makefile:100: recipe for target 'coverage-run' failed
make: *** [coverage-run] Error 2
+ true
[Pipeline] sh
+ make -f docker.Makefile TAG=jenkins-app-PR-683-1-coverage coverage-results
docker cp docker-app-cov-jenkins-app-PR-683-1-coverage:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-683-1-coverage:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-683-1-coverage
docker-app-cov-jenkins-app-PR-683-1-coverage
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] archiveArtifacts
Archiving artifacts
‘_build/ci-cov/all.out’ doesn’t match anything: ‘_build’ exists but not ‘_build/ci-cov/all.out’
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-683/src/github.com/docker/app/_build/test-results
[Pipeline] {
[Pipeline] sh
+ [ ! -e unit-coverage.xml ]
+ sed -i -E -e s,"github.com/docker/app","unit/basic",g; s,"github.com/docker/app/([^"]*)","unit/basic/\1",g unit-coverage.xml
[Pipeline] sh
+ [ ! -e e2e-coverage.xml ]
+ sed -i -E -e s,"github.com/docker/app/e2e","e2e/basic",g e2e-coverage.xml
[Pipeline] archiveArtifacts
Archiving artifacts
Uploaded 2 artifact(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-683/1/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-683-1-coverage
Untagged: docker/cnab-app-base:jenkins-app-PR-683-1-coverage
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
Failed in branch Coverage
[Pipeline] // parallel
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // timeout
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] End of Pipeline

GitHub has been notified of this commit’s build result

ERROR: No artifacts found that match the file pattern "_build/ci-cov/all.out". Configuration error?
Finished: FAILURE