Skip to content
Success

Console Output

Skipping 93 KB.. Full Log
Step 6/26 : ARG GOPROXY
 ---> Using cache
 ---> 6ac57196a635
Step 7/26 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> 1ddfc43358c8
Step 8/26 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> 5578f0b71a6e
Step 9/26 : FROM build AS dev
 ---> 5578f0b71a6e
Step 10/26 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> 43f2812dcdbc
Step 11/26 : ARG DEP_VERSION=v0.5.1
 ---> Using cache
 ---> 6511abaac27c
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
 ---> 2bae5de5ae0a
Step 13/26 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> 004af0aee976
Step 14/26 : ARG GOPROXY
 ---> Using cache
 ---> b152aa96a4a7
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
 ---> ffc318ac71bc
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
 ---> acec3bafe0b1
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
 ---> 06395330658b
Step 18/26 : COPY . .
 ---> Using cache
 ---> d4a826201e87
Step 19/26 : FROM dev AS cross
 ---> d4a826201e87
Step 20/26 : ARG EXPERIMENTAL="off"
 ---> Using cache
 ---> 2b0654c30b95
Step 21/26 : ARG TAG="unknown"
 ---> Using cache
 ---> 16950f431948
Step 22/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} cross
 ---> Using cache
 ---> ab7fe6b5524f
Step 23/26 : FROM cross AS e2e-cross
 ---> ab7fe6b5524f
Step 24/26 : ARG EXPERIMENTAL="off"
 ---> Running in 2cfc1a931e54
Removing intermediate container 2cfc1a931e54
 ---> fafe97298d51
Step 25/26 : ARG TAG="unknown"
 ---> Running in 2d8f8628b5a8
Removing intermediate container 2d8f8628b5a8
 ---> c6255c47d98e
Step 26/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} e2e-cross
 ---> Running in 3defff6607ab
(94/95) Wrote github.com/docker/docker@master
GOOS=linux CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:19:09Z" -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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:19:09Z" -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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:19:09Z" -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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:19:09Z" -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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:19:09Z" -c -o bin/docker-app-e2e-windows.exe ./e2e/
Removing intermediate container 3defff6607ab
 ---> 1d53215f3058
[Warning] One or more build-args [ALPINE_VERSION COMMIT] were not consumed
Successfully built 1d53215f3058
Successfully tagged docker-app-e2e-cross:jenkins-app-PR-651-9
docker create --name docker-app-e2e-cross-jenkins-app-PR-651-9 docker-app-e2e-cross:jenkins-app-PR-651-9 noop
c4f471a7e345155869a057fcdf95a328fb7315b033f8e9e765c0b752eef13717
docker cp docker-app-e2e-cross-jenkins-app-PR-651-9:/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-651-9:/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-651-9:/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-651-9:/usr/local/bin/gotestsum-linux bin/gotestsum-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-651-9:/usr/local/bin/gotestsum-darwin bin/gotestsum-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-651-9:/usr/local/bin/gotestsum-windows.exe bin/gotestsum-windows.exe
docker cp docker-app-e2e-cross-jenkins-app-PR-651-9:/usr/local/bin/test2json-linux bin/test2json-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-651-9:/usr/local/bin/test2json-darwin bin/test2json-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-651-9:/usr/local/bin/test2json-windows.exe bin/test2json-windows.exe
docker rm docker-app-e2e-cross-jenkins-app-PR-651-9
docker-app-e2e-cross-jenkins-app-PR-651-9
tar --transform='flags=r;s|docker-app-linux|docker-app-plugin-linux|' -czf bin/docker-app-linux.tar.gz -C bin docker-app-linux docker-app-standalone-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 docker-app-standalone-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 docker-app-standalone-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-651/src/github.com/docker/app/bin
[Pipeline] {
[Pipeline] stash
(95/95) 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] }
Stashed 24 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-651/9/stashes/binaries.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/src/github.com/docker/app/e2e
[Pipeline] {
[Pipeline] stash
Stashed 61 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-651/9/stashes/e2e.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/9/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ xargs docker image rm -f
+ docker image ls --format={{.Repository}}:{{.Tag}} *jenkins-app-PR-651-9*
Untagged: docker-app-e2e-cross:jenkins-app-PR-651-9
Deleted: sha256:1d53215f305889c018a18bdbdc72bb9c53c1ed721ed67cd31deab18bcb21172a
Deleted: sha256:ebe1caada1c68a60eebedbb2841e2da2ae3745de002aae66d6ca09b55e8f8c02
Deleted: sha256:c6255c47d98e04acc3b93c9f0331cbc511fd01590aaae9529f6eb8e3747e1c37
Deleted: sha256:fafe97298d518fec67a7f80c8538b60ef251332818eb571d1ec25beeefecbc53
Untagged: docker-app-cross:jenkins-app-PR-651-9
Deleted: sha256:ab7fe6b5524f5d8e51a256599cbb5a7b9b8be70f303cf813b82e612834abeb53
Deleted: sha256:aa4f491c6b746e569ea462a7c773392204a185da530db20875fbcf1a61c9c316
Deleted: sha256:16950f4319481f7f7d7bc41a2f511d6538f5b15682607ebed748ef76d24ef90f
Deleted: sha256:2b0654c30b9530cce3ed6a9e06a3dba4a91024ba25a8b11e29cb49256dc48d4a
Deleted: sha256:d4a826201e87b53501004c9223277072a2c897a7405f38c12f8e2fd6d572e886
Deleted: sha256:34e31e5538f790c08d662b0d3eda9651f1a02793199014c647ecc959f76593fb
Deleted: sha256:06395330658bda07ca5a80ea5ad37596bece3fb3203ccae4a935c66e7cea744c
Deleted: sha256:a13fcf51e459a9ef02fe34a16e3ba26cd7cee4276fc33e5befd0a6c6ea33a7d9
Deleted: sha256:acec3bafe0b1c2e8e0e54ee5a6f7f86facba56315e1f44cfcebd0b38ff653fc2
Deleted: sha256:33b4c60025acb1e5c77c75fed59caeda71681126b34d83de94bde49dfa1f784e
Deleted: sha256:ffc318ac71bc58eab7dba2c87e883c3e7371a7fe042ce9e821aa202e3b40c0ab
Deleted: sha256:9e1608c857911be0b385d7c80dce1807615595b2fd9094decbdbb569ef3d9438
Deleted: sha256:b152aa96a4a7f516fa3854b3a277246ef7ab117fbe0fe8c1b70af1ff8548c85e
Deleted: sha256:004af0aee97684e8a3bece1b330919e06a1b920cc8d086f35f3fbe34fc036c2f
Deleted: sha256:2bae5de5ae0a93579b225dd919a2175e4feb4eee3818b493b308105027a8907e
Deleted: sha256:94a2b7cbc30090ce450b6abdd1112b8097cbfa36ee23ac5c1fdbdda7377fd4d8
Deleted: sha256:6511abaac27c6334912a28806f0ad023fd665815bd23df4f0e8c599413a3e1db
Deleted: sha256:43f2812dcdbcbdc8cf9a4307553d658e7a9a85bcf956fe66d2fc6cd5cf320e03
Untagged: docker-app-cli:jenkins-app-PR-651-9
Deleted: sha256:5578f0b71a6e5b11eb9ad207f3c6bc471ad03728e13de7ff4dff70fdfe5b7942
Deleted: sha256:fa15d25c263113a34437e0b3bc9c397cb98187a06f334ef6c5b9331ed43ef79b
Deleted: sha256:1ddfc43358c81c9376d799ba0dc57111bb338dc8fb572cefd231e7c275aac146
Deleted: sha256:860e58faa41a71dcde9469444b5a4e49a90e4d501b08ef0cf65ccc91fa826b48
Deleted: sha256:6ac57196a635a8b29518a92a25562a3690e1ae5937dc64dc93de00b283f65d9b
Deleted: sha256:16ab8ad8e0fc84ab08b6aac5248c38980f03a98f87dcaf5617be0895c98ff289
Deleted: sha256:91427e56c7b7e1f661ee9b138ccf0c2ffc4b911fe0aa67db2fb50c8c8095520b
Deleted: sha256:f6839a18029d3238d9f638980c81ef98702f028ecfe92107861c76216b1306d4
Deleted: sha256:fd74bf07423f926beb52504261c0596384e7413fb626ee80854f64caf75ea833
Deleted: sha256:2537dca1c0a62489bc2fd6458a0ba1a65928936480136d9e0a778b81c0381536
Deleted: sha256:fd808231896700735a48974a7b3e955e00b09916592872371aad9f1fc6d0eca1
Deleted: sha256:20421aed2ed9b65ff5beaff06016c7945e56e4cb0c89e1cac6c432a77bdbf146
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // dir
Post stage
[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
Running on ubuntu-1804-overlay2 (i-0af39bd58a7ddd7ce) in /home/ubuntu/workspace/app_PR-651
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/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/651/head:refs/remotes/origin/PR-651
Fetching without tags
Checking out Revision 994bc0d46bfc426dc5db3409ddd91f201272fe4d (PR-651)
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/651/head:refs/remotes/origin/PR-651 # 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/651/head:refs/remotes/origin/PR-651
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 994bc0d46bfc426dc5db3409ddd91f201272fe4d
Commit message: "Fix typo in error messages"
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/9/stashes/coverage-invocation-image.tgz
[Pipeline] sh
+ docker load -i coverage-invocation-image.tar
Loaded image: docker/cnab-app-base:jenkins-app-PR-651-9-coverage
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ make -f docker.Makefile TAG=jenkins-app-PR-651-9-coverage coverage-run
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=dev -t docker-app-dev:jenkins-app-PR-651-9 .
Sending build context to Docker daemon  72.93MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Running in 068ee9e4289a
Removing intermediate container 068ee9e4289a
 ---> 4f7488b8f918
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Running in 80976a9e83e9
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 (368 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 80976a9e83e9
 ---> 1505fdc08717
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Running in 2e7fec85fc98
Removing intermediate container 2e7fec85fc98
 ---> 65d4a79709d6
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Running in 457745ecac5d
Cloning into '.'...
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-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-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’; ‘ppc64le-ubuntu-34’ 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-15’ 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-095542eb30f340969)’ 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-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-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’; ‘ppc64le-ubuntu-34’ 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-15’ 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-095542eb30f340969)’ is offline
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 457745ecac5d
 ---> 10a9c3d4d1e5
Step 6/18 : ARG GOPROXY
 ---> Running in 1be2aec43e65
Removing intermediate container 1be2aec43e65
 ---> 219fec44a52b
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Running in b8c560a421df
./scripts/build/osx
Building build/docker-darwin-amd64
Running on ubuntu-1804-overlay2 (i-095542eb30f340969) in /home/ubuntu/workspace/app_PR-651
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/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/651/head:refs/remotes/origin/PR-651
Fetching without tags
Checking out Revision 994bc0d46bfc426dc5db3409ddd91f201272fe4d (PR-651)
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/651/head:refs/remotes/origin/PR-651 # 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/651/head:refs/remotes/origin/PR-651
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 994bc0d46bfc426dc5db3409ddd91f201272fe4d
Commit message: "Fix typo in error messages"
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/9/stashes/coverage-experimental-invocation-image.tgz
[Pipeline] sh
+ docker load -i coverage-experimental-invocation-image.tar
Loaded image: docker/cnab-app-base:jenkins-app-PR-651-9-coverage-experimental
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ make EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- -f docker.Makefile TAG=jenkins-app-PR-651-9-coverage-experimental coverage-run
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=dev -t docker-app-dev:jenkins-app-PR-651-9 .
Sending build context to Docker daemon  72.93MB

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
bbab4ec87ac4: Verifying Checksum
bbab4ec87ac4: Download complete
2ea1f7804402: Verifying Checksum
2ea1f7804402: Download complete
4ae16bd47783: Verifying Checksum
4ae16bd47783: Download complete
Running on ubuntu-1804-overlay2 (i-022e4cd7c1b72877d) in /home/ubuntu/workspace/app_PR-651
[Pipeline] {
[Pipeline] withEnv
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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
96465440c208: Verifying Checksum
96465440c208: Download complete
96d705baf026: Verifying Checksum
96d705baf026: Download complete
16a3d8aca6cd: Verifying Checksum
16a3d8aca6cd: Download complete
39007eb46008: Verifying Checksum
39007eb46008: Download complete
c0058a8c71f2: Verifying Checksum
c0058a8c71f2: Download complete
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-651/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/651/head:refs/remotes/origin/PR-651
Fetching without tags
Checking out Revision 994bc0d46bfc426dc5db3409ddd91f201272fe4d (PR-651)
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/651/head:refs/remotes/origin/PR-651 # 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/651/head:refs/remotes/origin/PR-651
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 994bc0d46bfc426dc5db3409ddd91f201272fe4d
Commit message: "Fix typo in error messages"
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
e0ec5610455a: Verifying Checksum
e0ec5610455a: Download complete
4e549f0f5e64: Verifying Checksum
4e549f0f5e64: Download complete
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-651/9/stashes/invocation-image.tgz
[Pipeline] sh
+ docker load -i invocation-image.tar
Loaded image: docker/cnab-app-base:jenkins-app-PR-651-9
[Pipeline] }
[Pipeline] // dir
[Pipeline] unstash
2f8d98df0991: Verifying Checksum
2f8d98df0991: Download complete
4ae16bd47783: Pull complete
bbab4ec87ac4: Pull complete
2ea1f7804402: Pull complete
96465440c208: 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-651/9/stashes/binaries.tgz
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/src/github.com/docker/app/examples
[Pipeline] {
[Pipeline] unstash
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-651/9/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/9/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
e0ec5610455a: Pull complete
96d705baf026: Pull complete
39007eb46008: Pull complete
PASS e2e/linux.TestCallCustomStatusAction/validCustomDockerStatusAction (5.35s)
PASS e2e/linux.TestCallCustomStatusAction/validCustomStandardStatusAction (3.40s)
PASS e2e/linux.TestCallCustomStatusAction/missingCustomStatusAction (3.37s)
PASS e2e/linux.TestCallCustomStatusAction (12.12s)
PASS e2e/linux.TestCnabParameters (3.31s)
PASS e2e/linux.TestExitErrorCode (0.06s)
PASS e2e/linux.TestRender/envvariables/stdout (1.77s)
PASS e2e/linux.TestRender/envvariables/file (1.53s)
PASS e2e/linux.TestRender/envvariables (3.30s)
PASS e2e/linux.TestRender (3.30s)
4e549f0f5e64: Pull complete
c0058a8c71f2: Pull complete
PASS e2e/linux.TestRenderFormatters (3.28s)
PASS e2e/linux.TestInit (0.13s)
PASS e2e/linux.TestDetectApp (4.88s)
PASS e2e/linux.TestBundle/simple-bundle (0.75s)
PASS e2e/linux.TestBundle/bundle-with-tag (0.34s)
PASS e2e/linux.TestBundle (12.12s)
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 d0ff4fac45b8
Removing intermediate container d0ff4fac45b8
 ---> 59033a5afae7
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Running in 17c65bf6abe1
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]
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
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 17c65bf6abe1
 ---> 01a869ee3ee3
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Running in b7e7cdff8743
Removing intermediate container b7e7cdff8743
 ---> 264b7e2cb89f
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Running in 531294e5b46c
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 531294e5b46c
 ---> 1ecbd0238565
Step 6/18 : ARG GOPROXY
 ---> Running in 9ca049dcc8fc
Removing intermediate container 9ca049dcc8fc
 ---> b4f85f0269c8
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Running in 3657914e4ff6
./scripts/build/osx
Building build/docker-darwin-amd64
PASS e2e/linux.TestDockerAppLifecycle/withBindMounts (22.54s)
PASS e2e/linux.TestDockerAppLifecycle/withoutBindMounts (22.68s)
PASS e2e/linux.TestDockerAppLifecycle (45.21s)
PASS e2e/linux.TestCredentials/missing (0.07s)
PASS e2e/linux.TestCredentials/full (1.96s)
PASS e2e/linux.TestCredentials/mixed-credstore (1.46s)
PASS e2e/linux.TestCredentials/mixed-local-cred (1.43s)
PASS e2e/linux.TestCredentials/overload (0.06s)
PASS e2e/linux.TestCredentials (4.98s)
PASS e2e/linux.TestRenderWithEnvFile (1.73s)
PASS e2e/linux.TestExamplesAreValid (0.13s)
PASS e2e/linux.TestImageList (16.44s)
PASS e2e/linux.TestImageRm (14.97s)
PASS e2e/linux.TestInvokePluginFromCLI (0.29s)
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.21s)
PASS e2e/linux.TestPushArchs/all-platforms (1.20s)
PASS e2e/linux.TestPushArchs (16.18s)
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
PASS e2e/linux.TestPushInsecureRegistry (17.96s)
PASS e2e/linux.TestPushInstall (16.95s)
PASS e2e/linux.TestPushPullInstall (16.88s)
Removing intermediate container b8c560a421df
 ---> 8b6f22e91c72
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in 3a353807e904
Removing intermediate container 3a353807e904
 ---> ef5832b2cf9e
Step 9/18 : FROM build AS dev
 ---> ef5832b2cf9e
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in 424b2bc6ed22
Removing intermediate container 424b2bc6ed22
 ---> 87e040389a98
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Running in ecf13992f07a
Removing intermediate container ecf13992f07a
 ---> 73659408369e
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 0fbaa8cb710c
  % 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   6576      0 --:--:-- --:--:-- --:--:--  6648

100 10.5M  100 10.5M    0     0  45.2M      0 --:--:-- --:--:-- --:--:-- 45.2M
Removing intermediate container 0fbaa8cb710c
 ---> d3a610d1f0f9
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in 7b075dd7c1ee
Removing intermediate container 7b075dd7c1ee
 ---> ce45a7299e20
Step 14/18 : ARG GOPROXY
 ---> Running in 398184df35f7
Removing intermediate container 398184df35f7
 ---> 221378e1fb80
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 b932e819f3ae
go: finding github.com/onsi/ginkgo v1.8.0
go: finding github.com/sirupsen/logrus v1.0.5
go: finding github.com/google/go-cmp v0.2.0
go: finding github.com/mattn/go-colorable v0.0.9
go: finding github.com/spf13/pflag v1.0.1
go: finding github.com/pkg/errors v0.8.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/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding gotest.tools v2.1.0+incompatible
go: finding golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding github.com/onsi/gomega v1.4.3
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/fatih/color v1.6.0
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding github.com/stretchr/testify v1.3.0
go: finding golang.org/x/text v0.3.0
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding github.com/golang/protobuf v1.2.0
go: finding github.com/hpcloud/tail v1.0.0
go: finding github.com/davecgh/go-spew v1.1.0
go: finding github.com/stretchr/objx v0.1.0
go: finding github.com/onsi/ginkgo v1.6.0
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
go: finding github.com/pmezard/go-difflib v1.0.0
go: downloading gotest.tools v2.1.0+incompatible
go: extracting gotest.tools v2.1.0+incompatible
go: downloading github.com/sirupsen/logrus v1.0.5
go: downloading github.com/pkg/errors v0.8.0
go: downloading github.com/fatih/color v1.6.0
go: downloading github.com/spf13/pflag v1.0.1
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 golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting github.com/spf13/pflag v1.0.1
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/fatih/color v1.6.0
go: downloading github.com/mattn/go-colorable v0.0.9
go: downloading github.com/mattn/go-isatty v0.0.3
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/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
Removing intermediate container b932e819f3ae
 ---> e56b1ae6ae6a
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 3b72b9d89f20
PASS e2e/linux.TestPushInstallBundle/push-bundle (4.93s)
PASS e2e/linux.TestPushInstallBundle/push-ref (1.30s)
PASS e2e/linux.TestPushInstallBundle/push-bundleref (1.69s)
PASS e2e/linux.TestPushInstallBundle (21.14s)
PASS e2e/linux

DONE 40 tests in 212.123s
time="2019-10-02T10:25:30Z" 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
Removing intermediate container 3b72b9d89f20
 ---> 10c69fa32850
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 2b498571041a
Uploaded 1 artifact(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-651/9/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-651-9
Untagged: docker/cnab-app-base:jenkins-app-PR-651-9
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
WARNING: binary creates a Linux executable. Use cross for macOS or Windows.
./scripts/build/binary
Building statically linked build/docker-linux-amd64
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 2b498571041a
 ---> 504ee31f3ba3
Step 18/18 : COPY . .
 ---> 4de0fcffe312
[Warning] One or more build-args [ALPINE_VERSION COMMIT EXPERIMENTAL TAG] were not consumed
Successfully built 4de0fcffe312
Successfully tagged docker-app-dev:jenkins-app-PR-651-9
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-651-9-coverage --network="host" -t docker-app-dev:jenkins-app-PR-651-9 make COMMIT=994bc0d4 TAG=jenkins-app-PR-651-9-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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:25:45Z" -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/cmd/docker-app-standalone github.com/docker/app/internal github.com/docker/app/internal/commands 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
∅  .
Removing intermediate container 3657914e4ff6
 ---> 000ec021c486
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in a7e3429566cb
Removing intermediate container a7e3429566cb
 ---> 2b3700852195
Step 9/18 : FROM build AS dev
 ---> 2b3700852195
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in a5339eac7402
Removing intermediate container a5339eac7402
 ---> 01d7530994a8
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Running in df0f23e3a75c
Removing intermediate container df0f23e3a75c
 ---> c921dd933e17
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 c37c76afa9b5
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   7756      0 --:--:-- --:--:-- --:--:--  7658

100 10.5M  100 10.5M    0     0  47.9M      0 --:--:-- --:--:-- --:--:-- 47.9M
Removing intermediate container c37c76afa9b5
 ---> 70afd066b2e8
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in fcf52b10c9c5
Removing intermediate container fcf52b10c9c5
 ---> b0d63a08e035
Step 14/18 : ARG GOPROXY
 ---> Running in 0126d42295f4
Removing intermediate container 0126d42295f4
 ---> 9a74cc6c8405
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 cd44d9a971ff
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/pkg/errors v0.8.0
go: finding github.com/google/go-cmp v0.2.0
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding github.com/spf13/pflag v1.0.1
go: finding github.com/fatih/color v1.6.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/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/mattn/go-colorable v0.0.9
go: finding github.com/onsi/ginkgo v1.8.0
go: finding github.com/onsi/gomega v1.4.3
go: finding github.com/sirupsen/logrus v1.0.5
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding gotest.tools v2.1.0+incompatible
go: finding github.com/davecgh/go-spew v1.1.0
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/stretchr/objx v0.1.0
go: finding golang.org/x/text v0.3.0
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding github.com/hpcloud/tail v1.0.0
go: finding github.com/onsi/ginkgo v1.6.0
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding github.com/golang/protobuf v1.2.0
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 golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
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: 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/pkg/errors v0.8.0
go: extracting github.com/jonboulle/clockwork v0.1.0
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
∅  cmd/cnab-run
∅  cmd/docker-app
∅  cmd/docker-app-standalone
✓  internal (3ms)
✓  internal/compose (18ms)
✓  internal/formatter (7ms)
✓  internal/inspect (48ms)
✓  internal/commands (547ms)
∅  internal/commands/image
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
∅  internal/log
✓  internal/slices (2ms)
✓  internal/packager (48ms)
Removing intermediate container cd44d9a971ff
 ---> a0a6850add54
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 19a1389dbe0a
✓  internal/store (26ms)
✓  internal/yaml (1.637s)
Removing intermediate container 19a1389dbe0a
 ---> 92cd384d574e
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 5ed262559a0b
✓  loader (13ms)
✓  render (43ms)
✓  specification (9ms)
✓  types/metadata (5ms)
✓  types (17ms)
✓  types/parameters (4ms)

DONE 210 tests in 93.800s
CGO_ENABLED=0 go test -tags=""" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:25:45Z" -coverpkg="./..." -c -o _build/docker-app.cov ./cmd/docker-app
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 5ed262559a0b
 ---> 58b0c791f189
Step 18/18 : COPY . .
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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-10-02T10:25:45Z" -v ./e2e
 ---> 50e2f9ab03e3
[Warning] One or more build-args [ALPINE_VERSION COMMIT EXPERIMENTAL TAG] were not consumed
Successfully built 50e2f9ab03e3
Successfully tagged docker-app-dev:jenkins-app-PR-651-9
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-651-9-coverage-experimental --network="host" -t docker-app-dev:jenkins-app-PR-651-9 make COMMIT=994bc0d4 TAG=jenkins-app-PR-651-9-coverage-experimental EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- coverage
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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-10-02T10:27:28Z" -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/cmd/docker-app-standalone github.com/docker/app/internal github.com/docker/app/internal/commands 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
∅  cmd/docker-app-standalone
✓  internal (2ms)
✓  internal/compose (8ms)
✓  internal/formatter (5ms)
✓  internal/inspect (78ms)
✓  internal/commands (451ms)
∅  internal/commands/image
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
∅  internal/log
✓  internal/slices (2ms)
✓  internal/packager (28ms)
✓  internal/store (31ms)
✓  loader (10ms)
✓  internal/yaml (1.763s)
✓  specification (7ms)
✓  render (38ms)
✓  types (23ms)
✓  types/metadata (10ms)
✓  types/parameters (4ms)

DONE 210 tests in 92.966s
CGO_ENABLED=0 go test -tags=""experimental" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-10-02T10:27:28Z" -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=994bc0d4 -X github.com/docker/app/internal.Version=jenkins-app-PR-651-9-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-10-02T10:27:28Z" -v ./e2e
✓  e2e (3m21.511s)

DONE 40 tests in 203.129s
go install ./vendor/github.com/wadey/gocovmerge/
gocovmerge _build/cov/*.out > _build/cov/all.out
go tool cover -func _build/cov/all.out
github.com/docker/app/cmd/docker-app/main.go:12:		main					80.0%
github.com/docker/app/internal/commands/bundle.go:32:		bundleCmd				100.0%
github.com/docker/app/internal/commands/bundle.go:49:		runBundle				61.9%
github.com/docker/app/internal/commands/bundle.go:82:		makeBundle				80.0%
github.com/docker/app/internal/commands/bundle.go:91:		makeBundleFromApp			66.7%
github.com/docker/app/internal/commands/bundle.go:126:		makeInvocationImageName			100.0%
github.com/docker/app/internal/commands/bundle.go:133:		makeCNABImageName			100.0%
github.com/docker/app/internal/commands/bundle.go:141:		persistInBundleStore			77.8%
github.com/docker/app/internal/commands/bundle.go:156:		getNamedTagged				77.8%
github.com/docker/app/internal/commands/cnab.go:44:		addNamedCredentialSets			75.0%
github.com/docker/app/internal/commands/cnab.go:75:		parseCommandlineCredential		100.0%
github.com/docker/app/internal/commands/cnab.go:85:		addCredentials				75.0%
github.com/docker/app/internal/commands/cnab.go:102:		addDockerCredentials			87.5%
github.com/docker/app/internal/commands/cnab.go:117:		addRegistryCredentials			85.0%
github.com/docker/app/internal/commands/cnab.go:149:		prepareCredentialSet			77.8%
github.com/docker/app/internal/commands/cnab.go:166:		getTargetContext			85.7%
github.com/docker/app/internal/commands/cnab.go:181:		prepareDriver				100.0%
github.com/docker/app/internal/commands/cnab.go:214:		getAppNameKind				91.7%
github.com/docker/app/internal/commands/cnab.go:236:		extractAndLoadAppBasedBundle		83.3%
github.com/docker/app/internal/commands/cnab.go:246:		loadBundleFromFile			80.0%
github.com/docker/app/internal/commands/cnab.go:258:		resolveBundle				65.2%
github.com/docker/app/internal/commands/cnab.go:299:		requiredClaimBindMount			100.0%
github.com/docker/app/internal/commands/cnab.go:308:		requiredBindMount			77.8%
github.com/docker/app/internal/commands/cnab.go:340:		socketPath				100.0%
github.com/docker/app/internal/commands/cnab.go:348:		isDockerHostLocal			100.0%
github.com/docker/app/internal/commands/cnab.go:352:		prepareCustomAction			72.2%
github.com/docker/app/internal/commands/cnab.go:387:		isInstallationFailed			100.0%
github.com/docker/app/internal/commands/dockerdesktop.go:21:	defaultDockerDesktopHostProvider	66.7%
github.com/docker/app/internal/commands/dockerdesktop.go:37:	rewrite					100.0%
github.com/docker/app/internal/commands/dockerdesktop.go:53:	rewrite					91.7%
github.com/docker/app/internal/commands/dockerdesktop.go:78:	makeLinuxkitIPProvider			0.0%
github.com/docker/app/internal/commands/dockerdesktop.go:108:	rewriteContextIfDockerDesktop		66.7%
github.com/docker/app/internal/commands/dockerdesktop.go:135:	List					0.0%
github.com/docker/app/internal/commands/dockerdesktop.go:147:	GetMetadata				80.0%
github.com/docker/app/internal/commands/image/command.go:9:	Cmd					100.0%
github.com/docker/app/internal/commands/image/list.go:17:	listCmd					77.8%
github.com/docker/app/internal/commands/image/list.go:40:	runList					71.4%
github.com/docker/app/internal/commands/image/list.go:54:	getPackages				90.0%
github.com/docker/app/internal/commands/image/list.go:77:	printImages				100.0%
github.com/docker/app/internal/commands/image/list.go:88:	printHeaders				100.0%
github.com/docker/app/internal/commands/image/list.go:96:	printValues				100.0%
github.com/docker/app/internal/commands/image/rm.go:15:		rmCmd					71.4%
github.com/docker/app/internal/commands/image/rm.go:45:		runRm					75.0%
github.com/docker/app/internal/commands/init.go:16:		initCmd					87.5%
github.com/docker/app/internal/commands/inspect.go:17:		inspectCmd				100.0%
github.com/docker/app/internal/commands/inspect.go:33:		runInspect				71.4%
github.com/docker/app/internal/commands/install.go:45:		installCmd				100.0%
github.com/docker/app/internal/commands/install.go:69:		runInstall				72.1%
github.com/docker/app/internal/commands/list.go:42:		listCmd					100.0%
github.com/docker/app/internal/commands/list.go:59:		runList					88.9%
github.com/docker/app/internal/commands/list.go:75:		printHeaders				100.0%
github.com/docker/app/internal/commands/list.go:83:		printValues				100.0%
github.com/docker/app/internal/commands/list.go:91:		getInstallations			77.8%
github.com/docker/app/internal/commands/parameters.go:25:	withFileParameters			85.7%
github.com/docker/app/internal/commands/parameters.go:38:	withCommandLineParameters		100.0%
github.com/docker/app/internal/commands/parameters.go:48:	withSendRegistryAuth			85.7%
github.com/docker/app/internal/commands/parameters.go:61:	withOrchestratorParameters		100.0%
github.com/docker/app/internal/commands/parameters.go:73:	withErrorWriter				100.0%
github.com/docker/app/internal/commands/parameters.go:80:	mergeBundleParameters			92.3%
github.com/docker/app/internal/commands/parameters.go:104:	matchAndMergeParametersDefinition	92.0%
github.com/docker/app/internal/commands/pull.go:16:		pullCmd					100.0%
github.com/docker/app/internal/commands/pull.go:29:		runPull					70.6%
github.com/docker/app/internal/commands/push.go:50:		pushCmd					100.0%
github.com/docker/app/internal/commands/push.go:71:		runPush					71.4%
github.com/docker/app/internal/commands/push.go:97:		resolveReferenceAndBundle		66.7%
github.com/docker/app/internal/commands/push.go:113:		pushInvocationImage			71.4%
github.com/docker/app/internal/commands/push.go:136:		pushBundle				77.8%
github.com/docker/app/internal/commands/push.go:166:		withAppAnnotations			80.0%
github.com/docker/app/internal/commands/push.go:175:		platformFilter				100.0%
github.com/docker/app/internal/commands/push.go:182:		retagInvocationImage			80.0%
github.com/docker/app/internal/commands/push.go:197:		shouldRetagInvocationImage		85.7%
github.com/docker/app/internal/commands/push.go:243:		onEvent					0.0%
github.com/docker/app/internal/commands/push.go:263:		imageIndex				0.0%
github.com/docker/app/internal/commands/push.go:278:		onProgress				0.0%
github.com/docker/app/internal/commands/push.go:282:		print					0.0%
github.com/docker/app/internal/commands/push.go:297:		printDescriptorProgress			0.0%
github.com/docker/app/internal/commands/push.go:333:		hasError				0.0%
github.com/docker/app/internal/commands/push.go:349:		onEvent					80.0%
github.com/docker/app/internal/commands/push.go:362:		checkFlags				66.7%
github.com/docker/app/internal/commands/remove.go:19:		removeCmd				100.0%
github.com/docker/app/internal/commands/remove.go:38:		runRemove				52.9%
github.com/docker/app/internal/commands/render.go:22:		renderCmd				100.0%
github.com/docker/app/internal/commands/render.go:41:		runRender				80.0%
github.com/docker/app/internal/commands/root.go:25:		NewRootCmd				45.0%
github.com/docker/app/internal/commands/root.go:67:		addCommands				100.0%
github.com/docker/app/internal/commands/root.go:84:		firstOrEmpty				100.0%
github.com/docker/app/internal/commands/root.go:91:		muteDockerCli				100.0%
github.com/docker/app/internal/commands/root.go:100:		prepareStores				69.2%
github.com/docker/app/internal/commands/root.go:120:		prepareBundleStore			71.4%
github.com/docker/app/internal/commands/root.go:137:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:149:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:156:		SetDefaultTargetContext			100.0%
github.com/docker/app/internal/commands/root.go:160:		CredentialSetOpts			100.0%
github.com/docker/app/internal/commands/root.go:173:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:179:		insecureRegistriesFromEngine		88.9%
github.com/docker/app/internal/commands/upgrade.go:20:		upgradeCmd				100.0%
github.com/docker/app/internal/commands/upgrade.go:39:		runUpgrade				62.9%
github.com/docker/app/internal/commands/validate.go:19:		validateCmd				85.7%
github.com/docker/app/internal/compose/compose.go:29:		Load					90.9%
github.com/docker/app/internal/compose/compose.go:49:		validateImagesInConfigFiles		84.2%
github.com/docker/app/internal/compose/compose.go:85:		ExtractVariables			75.0%
github.com/docker/app/internal/formatter/formatter.go:20:	Register				100.0%
github.com/docker/app/internal/formatter/formatter.go:34:	Format					100.0%
github.com/docker/app/internal/formatter/formatter.go:49:	Drivers					100.0%
github.com/docker/app/internal/formatter/json/driver.go:11:	init					100.0%
github.com/docker/app/internal/formatter/json/driver.go:19:	Format					0.0%
github.com/docker/app/internal/formatter/yaml/driver.go:10:	init					100.0%
github.com/docker/app/internal/formatter/yaml/driver.go:18:	Format					0.0%
github.com/docker/app/internal/inspect/inspect.go:19:		Inspect					95.2%
github.com/docker/app/internal/inspect/inspect.go:100:		printMetadata				100.0%
github.com/docker/app/internal/inspect/inspect.go:113:		printSection				100.0%
github.com/docker/app/internal/inspect/inspect.go:129:		printHeaders				100.0%
github.com/docker/app/internal/inspect/inspect.go:138:		getReplicas				100.0%
github.com/docker/app/internal/inspect/inspect.go:145:		extractParameters			88.9%
github.com/docker/app/internal/inspect/inspect.go:159:		mergeAndFlattenParameters		71.4%
github.com/docker/app/internal/inspect/ports.go:16:		newPort					100.0%
github.com/docker/app/internal/inspect/ports.go:20:		add					100.0%
github.com/docker/app/internal/inspect/ports.go:36:		String					100.0%
github.com/docker/app/internal/inspect/ports.go:47:		getPorts				100.0%
github.com/docker/app/internal/log/log.go:10:			WithLogContext				100.0%
github.com/docker/app/internal/names.go:78:			AppNameFromDir				100.0%
github.com/docker/app/internal/names.go:84:			DirNameFromAppName			100.0%
github.com/docker/app/internal/names.go:93:			ValidateAppName				100.0%
github.com/docker/app/internal/packager/cnab.go:20:		ToCNAB					94.1%
github.com/docker/app/internal/packager/cnab.go:175:		extractBundleImages			85.7%
github.com/docker/app/internal/packager/extract.go:17:		findApp					76.5%
github.com/docker/app/internal/packager/extract.go:48:		Extract					61.9%
github.com/docker/app/internal/packager/init.go:30:		Init					64.7%
github.com/docker/app/internal/packager/init.go:59:		initFromScratch				0.0%
github.com/docker/app/internal/packager/init.go:74:		checkComposeFileVersion			100.0%
github.com/docker/app/internal/packager/init.go:82:		initFromComposeFile			86.0%
github.com/docker/app/internal/packager/init.go:147:		removeDefaultValuesFromCompose		100.0%
github.com/docker/app/internal/packager/init.go:161:		composeFileFromScratch			0.0%
github.com/docker/app/internal/packager/init.go:181:		writeMetadataFile			75.0%
github.com/docker/app/internal/packager/init.go:194:		newMetadata				100.0%
github.com/docker/app/internal/packager/packing.go:24:		tarAdd					75.0%
github.com/docker/app/internal/packager/packing.go:32:		tarAddBytes				83.3%
github.com/docker/app/internal/packager/packing.go:48:		PackInvocationImageContext		63.6%
github.com/docker/app/internal/packager/packing.go:83:		BaseInvocationImage			80.0%
github.com/docker/app/internal/packager/packing.go:93:		dockerFile				100.0%
github.com/docker/app/internal/packager/parameter.go:18:	ExtractCNABParameterMapping		100.0%
github.com/docker/app/internal/packager/parameter.go:33:	getKeys					100.0%
github.com/docker/app/internal/packager/parameter.go:49:	ExtractCNABParametersValues		100.0%
github.com/docker/app/internal/slices/slices.go:4:		ContainsString				100.0%
github.com/docker/app/internal/store/app.go:35:			NewApplicationStore			83.3%
github.com/docker/app/internal/store/app.go:54:			InstallationStore			75.0%
github.com/docker/app/internal/store/app.go:63:			CredentialStore				75.0%
github.com/docker/app/internal/store/app.go:72:			BundleStore				75.0%
github.com/docker/app/internal/store/app.go:80:			makeDigestedDirectory			100.0%
github.com/docker/app/internal/store/bundle.go:38:		Store					71.4%
github.com/docker/app/internal/store/bundle.go:50:		Read					80.0%
github.com/docker/app/internal/store/bundle.go:67:		List					82.4%
github.com/docker/app/internal/store/bundle.go:102:		Remove					83.3%
github.com/docker/app/internal/store/bundle.go:119:		LookupOrPullBundle			75.0%
github.com/docker/app/internal/store/bundle.go:139:		storePath				100.0%
github.com/docker/app/internal/store/bundle.go:167:		pathToReference				91.7%
github.com/docker/app/internal/store/bundle.go:194:		reconstructNamedReference		72.7%
github.com/docker/app/internal/store/credential.go:24:		Read					100.0%
github.com/docker/app/internal/store/credential.go:29:		Store					71.4%
github.com/docker/app/internal/store/installation.go:26:	NewInstallation				75.0%
github.com/docker/app/internal/store/installation.go:43:	List					100.0%
github.com/docker/app/internal/store/installation.go:47:	Store					75.0%
github.com/docker/app/internal/store/installation.go:55:	Read					77.8%
github.com/docker/app/internal/store/installation.go:71:	Delete					100.0%
github.com/docker/app/internal/version.go:20:			FullVersion				75.0%
github.com/docker/app/internal/version.go:36:			reformatDate				75.0%
github.com/docker/app/internal/yaml/yaml.go:18:			Unmarshal				80.0%
github.com/docker/app/internal/yaml/yaml.go:32:			Marshal					100.0%
github.com/docker/app/internal/yaml/yaml.go:39:			NewDecoder				100.0%
github.com/docker/app/loader/loader.go:16:			LoadFromDirectory			100.0%
github.com/docker/app/loader/loader.go:26:			LoadFromTar				100.0%
github.com/docker/app/loader/loader.go:37:			LoadFromTarReader			45.5%
github.com/docker/app/render/render.go:43:			Render					80.0%
github.com/docker/app/render/render.go:68:			substituteParams			100.0%
github.com/docker/app/render/render.go:104:			render					84.6%
github.com/docker/app/render/render.go:128:			processEnabled				91.7%
github.com/docker/app/render/render.go:148:			isEnabled				75.0%
github.com/docker/app/specification/bindata.go:44:		Open					0.0%
github.com/docker/app/specification/bindata.go:52:		prepare					82.4%
github.com/docker/app/specification/bindata.go:77:		Open					0.0%
github.com/docker/app/specification/bindata.go:85:		Open					0.0%
github.com/docker/app/specification/bindata.go:89:		File					0.0%
github.com/docker/app/specification/bindata.go:100:		Close					0.0%
github.com/docker/app/specification/bindata.go:104:		Readdir					0.0%
github.com/docker/app/specification/bindata.go:125:		Stat					0.0%
github.com/docker/app/specification/bindata.go:129:		Name					0.0%
github.com/docker/app/specification/bindata.go:133:		Size					0.0%
github.com/docker/app/specification/bindata.go:137:		Mode					0.0%
github.com/docker/app/specification/bindata.go:141:		ModTime					0.0%
github.com/docker/app/specification/bindata.go:145:		IsDir					0.0%
github.com/docker/app/specification/bindata.go:149:		Sys					0.0%
github.com/docker/app/specification/bindata.go:155:		_escFS					0.0%
github.com/docker/app/specification/bindata.go:164:		_escDir					0.0%
github.com/docker/app/specification/bindata.go:173:		_escFSByte				45.5%
github.com/docker/app/specification/bindata.go:191:		_escFSMustByte				0.0%
github.com/docker/app/specification/bindata.go:200:		_escFSString				0.0%
github.com/docker/app/specification/bindata.go:206:		_escFSMustString			0.0%
github.com/docker/app/specification/schema.go:15:		Validate				93.3%
github.com/docker/app/types/init.go:17:				NewInitialComposeFile			100.0%
github.com/docker/app/types/metadata/load.go:14:		Load					83.3%
github.com/docker/app/types/metadata/load.go:25:		validateRawMetadata			83.3%
github.com/docker/app/types/metadata/metadata.go:19:		String					100.0%
github.com/docker/app/types/metadata/metadata.go:28:		String					100.0%
github.com/docker/app/types/metadata/metadata.go:45:		FromBundle				100.0%
github.com/docker/app/types/parameters/load.go:14:		Load					95.0%
github.com/docker/app/types/parameters/load.go:48:		LoadMultiple				77.8%
github.com/docker/app/types/parameters/load.go:64:		LoadFile				75.0%
github.com/docker/app/types/parameters/load.go:73:		LoadFiles				77.8%
github.com/docker/app/types/parameters/load.go:89:		convertToStringKeysRecursive		96.0%
github.com/docker/app/types/parameters/load.go:126:		formatInvalidKeyError			100.0%
github.com/docker/app/types/parameters/merge.go:9:		Merge					100.0%
github.com/docker/app/types/parameters/opts.go:9:		WithPrefix				100.0%
github.com/docker/app/types/parameters/parameters.go:18:	Flatten					100.0%
github.com/docker/app/types/parameters/parameters.go:22:	flatten					100.0%
github.com/docker/app/types/parameters/parameters.go:50:	FromFlatten				88.9%
github.com/docker/app/types/parameters/parameters.go:65:	isSupposedSlice				100.0%
github.com/docker/app/types/parameters/parameters.go:73:	assignKey				92.3%
github.com/docker/app/types/types.go:30:			ShouldRunInsideDirectory		0.0%
github.com/docker/app/types/types.go:57:			Path					100.0%
github.com/docker/app/types/types.go:62:			Size					100.0%
github.com/docker/app/types/types.go:67:			Composes				100.0%
github.com/docker/app/types/types.go:72:			ParametersRaw				100.0%
github.com/docker/app/types/types.go:77:			Parameters				100.0%
github.com/docker/app/types/types.go:82:			MetadataRaw				100.0%
github.com/docker/app/types/types.go:87:			Metadata				100.0%
github.com/docker/app/types/types.go:92:			Attachments				100.0%
github.com/docker/app/types/types.go:96:			HasCRLF					0.0%
github.com/docker/app/types/types.go:101:			Extract					0.0%
github.com/docker/app/types/types.go:114:			noop					0.0%
github.com/docker/app/types/types.go:117:			NewApp					100.0%
github.com/docker/app/types/types.go:139:			NewAppFromDefaultFiles			100.0%
github.com/docker/app/types/types.go:150:			WithName				100.0%
github.com/docker/app/types/types.go:158:			WithPath				100.0%
github.com/docker/app/types/types.go:166:			WithCleanup				100.0%
github.com/docker/app/types/types.go:174:			WithSource				100.0%
github.com/docker/app/types/types.go:181:			WithCRLF				0.0%
github.com/docker/app/types/types.go:189:			WithParametersFiles			100.0%
github.com/docker/app/types/types.go:194:			WithAttachments				84.6%
github.com/docker/app/types/types.go:226:			WithParameters				100.0%
github.com/docker/app/types/types.go:230:			parametersLoader			100.0%
github.com/docker/app/types/types.go:248:			MetadataFile				100.0%
github.com/docker/app/types/types.go:253:			Metadata				100.0%
github.com/docker/app/types/types.go:257:			metadataLoader				100.0%
github.com/docker/app/types/types.go:275:			WithComposeFiles			100.0%
github.com/docker/app/types/types.go:280:			WithComposes				100.0%
github.com/docker/app/types/types.go:284:			composeLoader				100.0%
github.com/docker/app/types/types.go:295:			readReaders				77.8%
github.com/docker/app/types/types.go:309:			readFiles				100.0%
github.com/docker/app/types/types.go:323:			newErrGroup				100.0%
total:								(statements)				77.1%
go tool cover -html _build/cov/all.out -o _build/cov/coverage.html
[Pipeline] sh
+ make -f docker.Makefile TAG=jenkins-app-PR-651-9-coverage coverage-results
docker cp docker-app-cov-jenkins-app-PR-651-9-coverage:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-651-9-coverage:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-651-9-coverage
docker-app-cov-jenkins-app-PR-651-9-coverage
[Pipeline] }
[Pipeline] // ansiColor
[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-651/9/artifacts/
[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-651/9/artifacts/
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/9/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-651-9-coverage
Untagged: docker/cnab-app-base:jenkins-app-PR-651-9-coverage
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
✓  e2e (3m20.403s)

DONE 40 tests in 202.027s
go install ./vendor/github.com/wadey/gocovmerge/
gocovmerge _build/cov/*.out > _build/cov/all.out
go tool cover -func _build/cov/all.out
github.com/docker/app/cmd/docker-app/main.go:12:		main					80.0%
github.com/docker/app/internal/commands/bundle.go:32:		bundleCmd				100.0%
github.com/docker/app/internal/commands/bundle.go:49:		runBundle				61.9%
github.com/docker/app/internal/commands/bundle.go:82:		makeBundle				80.0%
github.com/docker/app/internal/commands/bundle.go:91:		makeBundleFromApp			66.7%
github.com/docker/app/internal/commands/bundle.go:126:		makeInvocationImageName			100.0%
github.com/docker/app/internal/commands/bundle.go:133:		makeCNABImageName			100.0%
github.com/docker/app/internal/commands/bundle.go:141:		persistInBundleStore			77.8%
github.com/docker/app/internal/commands/bundle.go:156:		getNamedTagged				77.8%
github.com/docker/app/internal/commands/cnab.go:44:		addNamedCredentialSets			75.0%
github.com/docker/app/internal/commands/cnab.go:75:		parseCommandlineCredential		100.0%
github.com/docker/app/internal/commands/cnab.go:85:		addCredentials				75.0%
github.com/docker/app/internal/commands/cnab.go:102:		addDockerCredentials			87.5%
github.com/docker/app/internal/commands/cnab.go:117:		addRegistryCredentials			85.0%
github.com/docker/app/internal/commands/cnab.go:149:		prepareCredentialSet			77.8%
github.com/docker/app/internal/commands/cnab.go:166:		getTargetContext			85.7%
github.com/docker/app/internal/commands/cnab.go:181:		prepareDriver				100.0%
github.com/docker/app/internal/commands/cnab.go:214:		getAppNameKind				91.7%
github.com/docker/app/internal/commands/cnab.go:236:		extractAndLoadAppBasedBundle		83.3%
github.com/docker/app/internal/commands/cnab.go:246:		loadBundleFromFile			80.0%
github.com/docker/app/internal/commands/cnab.go:258:		resolveBundle				65.2%
github.com/docker/app/internal/commands/cnab.go:299:		requiredClaimBindMount			100.0%
github.com/docker/app/internal/commands/cnab.go:308:		requiredBindMount			77.8%
github.com/docker/app/internal/commands/cnab.go:340:		socketPath				100.0%
github.com/docker/app/internal/commands/cnab.go:348:		isDockerHostLocal			100.0%
github.com/docker/app/internal/commands/cnab.go:352:		prepareCustomAction			72.2%
github.com/docker/app/internal/commands/cnab.go:387:		isInstallationFailed			100.0%
github.com/docker/app/internal/commands/dockerdesktop.go:21:	defaultDockerDesktopHostProvider	66.7%
github.com/docker/app/internal/commands/dockerdesktop.go:37:	rewrite					100.0%
github.com/docker/app/internal/commands/dockerdesktop.go:53:	rewrite					91.7%
github.com/docker/app/internal/commands/dockerdesktop.go:78:	makeLinuxkitIPProvider			0.0%
github.com/docker/app/internal/commands/dockerdesktop.go:108:	rewriteContextIfDockerDesktop		66.7%
github.com/docker/app/internal/commands/dockerdesktop.go:135:	List					0.0%
github.com/docker/app/internal/commands/dockerdesktop.go:147:	GetMetadata				80.0%
github.com/docker/app/internal/commands/image/command.go:9:	Cmd					100.0%
github.com/docker/app/internal/commands/image/list.go:17:	listCmd					77.8%
github.com/docker/app/internal/commands/image/list.go:40:	runList					71.4%
github.com/docker/app/internal/commands/image/list.go:54:	getPackages				90.0%
github.com/docker/app/internal/commands/image/list.go:77:	printImages				100.0%
github.com/docker/app/internal/commands/image/list.go:88:	printHeaders				100.0%
github.com/docker/app/internal/commands/image/list.go:96:	printValues				100.0%
github.com/docker/app/internal/commands/image/rm.go:15:		rmCmd					71.4%
github.com/docker/app/internal/commands/image/rm.go:45:		runRm					75.0%
github.com/docker/app/internal/commands/init.go:16:		initCmd					87.5%
github.com/docker/app/internal/commands/inspect.go:17:		inspectCmd				100.0%
github.com/docker/app/internal/commands/inspect.go:33:		runInspect				71.4%
github.com/docker/app/internal/commands/install.go:45:		installCmd				100.0%
github.com/docker/app/internal/commands/install.go:69:		runInstall				72.1%
github.com/docker/app/internal/commands/list.go:42:		listCmd					100.0%
github.com/docker/app/internal/commands/list.go:59:		runList					88.9%
github.com/docker/app/internal/commands/list.go:75:		printHeaders				100.0%
github.com/docker/app/internal/commands/list.go:83:		printValues				100.0%
github.com/docker/app/internal/commands/list.go:91:		getInstallations			77.8%
github.com/docker/app/internal/commands/parameters.go:25:	withFileParameters			85.7%
github.com/docker/app/internal/commands/parameters.go:38:	withCommandLineParameters		100.0%
github.com/docker/app/internal/commands/parameters.go:48:	withSendRegistryAuth			85.7%
github.com/docker/app/internal/commands/parameters.go:61:	withOrchestratorParameters		100.0%
github.com/docker/app/internal/commands/parameters.go:73:	withErrorWriter				100.0%
github.com/docker/app/internal/commands/parameters.go:80:	mergeBundleParameters			92.3%
github.com/docker/app/internal/commands/parameters.go:104:	matchAndMergeParametersDefinition	92.0%
github.com/docker/app/internal/commands/pull.go:16:		pullCmd					100.0%
github.com/docker/app/internal/commands/pull.go:29:		runPull					70.6%
github.com/docker/app/internal/commands/push.go:50:		pushCmd					100.0%
github.com/docker/app/internal/commands/push.go:71:		runPush					71.4%
github.com/docker/app/internal/commands/push.go:97:		resolveReferenceAndBundle		66.7%
github.com/docker/app/internal/commands/push.go:113:		pushInvocationImage			71.4%
github.com/docker/app/internal/commands/push.go:136:		pushBundle				77.8%
github.com/docker/app/internal/commands/push.go:166:		withAppAnnotations			80.0%
github.com/docker/app/internal/commands/push.go:175:		platformFilter				100.0%
github.com/docker/app/internal/commands/push.go:182:		retagInvocationImage			80.0%
github.com/docker/app/internal/commands/push.go:197:		shouldRetagInvocationImage		85.7%
github.com/docker/app/internal/commands/push.go:243:		onEvent					0.0%
github.com/docker/app/internal/commands/push.go:263:		imageIndex				0.0%
github.com/docker/app/internal/commands/push.go:278:		onProgress				0.0%
github.com/docker/app/internal/commands/push.go:282:		print					0.0%
github.com/docker/app/internal/commands/push.go:297:		printDescriptorProgress			0.0%
github.com/docker/app/internal/commands/push.go:333:		hasError				0.0%
github.com/docker/app/internal/commands/push.go:349:		onEvent					80.0%
github.com/docker/app/internal/commands/push.go:362:		checkFlags				66.7%
github.com/docker/app/internal/commands/remove.go:19:		removeCmd				100.0%
github.com/docker/app/internal/commands/remove.go:38:		runRemove				52.9%
github.com/docker/app/internal/commands/render.go:22:		renderCmd				100.0%
github.com/docker/app/internal/commands/render.go:41:		runRender				80.0%
github.com/docker/app/internal/commands/root.go:25:		NewRootCmd				45.0%
github.com/docker/app/internal/commands/root.go:67:		addCommands				100.0%
github.com/docker/app/internal/commands/root.go:84:		firstOrEmpty				100.0%
github.com/docker/app/internal/commands/root.go:91:		muteDockerCli				100.0%
github.com/docker/app/internal/commands/root.go:100:		prepareStores				69.2%
github.com/docker/app/internal/commands/root.go:120:		prepareBundleStore			71.4%
github.com/docker/app/internal/commands/root.go:137:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:149:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:156:		SetDefaultTargetContext			100.0%
github.com/docker/app/internal/commands/root.go:160:		CredentialSetOpts			100.0%
github.com/docker/app/internal/commands/root.go:173:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:179:		insecureRegistriesFromEngine		88.9%
github.com/docker/app/internal/commands/upgrade.go:20:		upgradeCmd				100.0%
github.com/docker/app/internal/commands/upgrade.go:39:		runUpgrade				62.9%
github.com/docker/app/internal/commands/validate.go:19:		validateCmd				85.7%
github.com/docker/app/internal/compose/compose.go:29:		Load					90.9%
github.com/docker/app/internal/compose/compose.go:49:		validateImagesInConfigFiles		84.2%
github.com/docker/app/internal/compose/compose.go:85:		ExtractVariables			75.0%
github.com/docker/app/internal/formatter/formatter.go:20:	Register				100.0%
github.com/docker/app/internal/formatter/formatter.go:34:	Format					100.0%
github.com/docker/app/internal/formatter/formatter.go:49:	Drivers					100.0%
github.com/docker/app/internal/formatter/json/driver.go:11:	init					100.0%
github.com/docker/app/internal/formatter/json/driver.go:19:	Format					0.0%
github.com/docker/app/internal/formatter/yaml/driver.go:10:	init					100.0%
github.com/docker/app/internal/formatter/yaml/driver.go:18:	Format					0.0%
github.com/docker/app/internal/inspect/inspect.go:19:		Inspect					95.2%
github.com/docker/app/internal/inspect/inspect.go:100:		printMetadata				100.0%
github.com/docker/app/internal/inspect/inspect.go:113:		printSection				100.0%
github.com/docker/app/internal/inspect/inspect.go:129:		printHeaders				100.0%
github.com/docker/app/internal/inspect/inspect.go:138:		getReplicas				100.0%
github.com/docker/app/internal/inspect/inspect.go:145:		extractParameters			88.9%
github.com/docker/app/internal/inspect/inspect.go:159:		mergeAndFlattenParameters		71.4%
github.com/docker/app/internal/inspect/ports.go:16:		newPort					100.0%
github.com/docker/app/internal/inspect/ports.go:20:		add					100.0%
github.com/docker/app/internal/inspect/ports.go:36:		String					100.0%
github.com/docker/app/internal/inspect/ports.go:47:		getPorts				100.0%
github.com/docker/app/internal/log/log.go:10:			WithLogContext				100.0%
github.com/docker/app/internal/names.go:78:			AppNameFromDir				100.0%
github.com/docker/app/internal/names.go:84:			DirNameFromAppName			100.0%
github.com/docker/app/internal/names.go:93:			ValidateAppName				100.0%
github.com/docker/app/internal/packager/cnab.go:20:		ToCNAB					94.1%
github.com/docker/app/internal/packager/cnab.go:175:		extractBundleImages			85.7%
github.com/docker/app/internal/packager/extract.go:17:		findApp					76.5%
github.com/docker/app/internal/packager/extract.go:48:		Extract					61.9%
github.com/docker/app/internal/packager/init.go:30:		Init					64.7%
github.com/docker/app/internal/packager/init.go:59:		initFromScratch				0.0%
github.com/docker/app/internal/packager/init.go:74:		checkComposeFileVersion			100.0%
github.com/docker/app/internal/packager/init.go:82:		initFromComposeFile			86.0%
github.com/docker/app/internal/packager/init.go:147:		removeDefaultValuesFromCompose		100.0%
github.com/docker/app/internal/packager/init.go:161:		composeFileFromScratch			0.0%
github.com/docker/app/internal/packager/init.go:181:		writeMetadataFile			75.0%
github.com/docker/app/internal/packager/init.go:194:		newMetadata				100.0%
github.com/docker/app/internal/packager/packing.go:24:		tarAdd					75.0%
github.com/docker/app/internal/packager/packing.go:32:		tarAddBytes				83.3%
github.com/docker/app/internal/packager/packing.go:48:		PackInvocationImageContext		63.6%
github.com/docker/app/internal/packager/packing.go:83:		BaseInvocationImage			80.0%
github.com/docker/app/internal/packager/packing.go:93:		dockerFile				100.0%
github.com/docker/app/internal/packager/parameter.go:18:	ExtractCNABParameterMapping		100.0%
github.com/docker/app/internal/packager/parameter.go:33:	getKeys					100.0%
github.com/docker/app/internal/packager/parameter.go:49:	ExtractCNABParametersValues		100.0%
github.com/docker/app/internal/slices/slices.go:4:		ContainsString				100.0%
github.com/docker/app/internal/store/app.go:35:			NewApplicationStore			83.3%
github.com/docker/app/internal/store/app.go:54:			InstallationStore			75.0%
github.com/docker/app/internal/store/app.go:63:			CredentialStore				75.0%
github.com/docker/app/internal/store/app.go:72:			BundleStore				75.0%
github.com/docker/app/internal/store/app.go:80:			makeDigestedDirectory			100.0%
github.com/docker/app/internal/store/bundle.go:38:		Store					71.4%
github.com/docker/app/internal/store/bundle.go:50:		Read					80.0%
github.com/docker/app/internal/store/bundle.go:67:		List					82.4%
github.com/docker/app/internal/store/bundle.go:102:		Remove					83.3%
github.com/docker/app/internal/store/bundle.go:119:		LookupOrPullBundle			75.0%
github.com/docker/app/internal/store/bundle.go:139:		storePath				100.0%
github.com/docker/app/internal/store/bundle.go:167:		pathToReference				91.7%
github.com/docker/app/internal/store/bundle.go:194:		reconstructNamedReference		72.7%
github.com/docker/app/internal/store/credential.go:24:		Read					100.0%
github.com/docker/app/internal/store/credential.go:29:		Store					71.4%
github.com/docker/app/internal/store/installation.go:26:	NewInstallation				75.0%
github.com/docker/app/internal/store/installation.go:43:	List					100.0%
github.com/docker/app/internal/store/installation.go:47:	Store					75.0%
github.com/docker/app/internal/store/installation.go:55:	Read					77.8%
github.com/docker/app/internal/store/installation.go:71:	Delete					100.0%
github.com/docker/app/internal/version.go:20:			FullVersion				100.0%
github.com/docker/app/internal/version.go:36:			reformatDate				75.0%
github.com/docker/app/internal/yaml/yaml.go:18:			Unmarshal				80.0%
github.com/docker/app/internal/yaml/yaml.go:32:			Marshal					100.0%
github.com/docker/app/internal/yaml/yaml.go:39:			NewDecoder				100.0%
github.com/docker/app/loader/loader.go:16:			LoadFromDirectory			100.0%
github.com/docker/app/loader/loader.go:26:			LoadFromTar				100.0%
github.com/docker/app/loader/loader.go:37:			LoadFromTarReader			45.5%
github.com/docker/app/render/render.go:43:			Render					80.0%
github.com/docker/app/render/render.go:68:			substituteParams			100.0%
github.com/docker/app/render/render.go:104:			render					84.6%
github.com/docker/app/render/render.go:128:			processEnabled				91.7%
github.com/docker/app/render/render.go:148:			isEnabled				75.0%
github.com/docker/app/specification/bindata.go:44:		Open					0.0%
github.com/docker/app/specification/bindata.go:52:		prepare					82.4%
github.com/docker/app/specification/bindata.go:77:		Open					0.0%
github.com/docker/app/specification/bindata.go:85:		Open					0.0%
github.com/docker/app/specification/bindata.go:89:		File					0.0%
github.com/docker/app/specification/bindata.go:100:		Close					0.0%
github.com/docker/app/specification/bindata.go:104:		Readdir					0.0%
github.com/docker/app/specification/bindata.go:125:		Stat					0.0%
github.com/docker/app/specification/bindata.go:129:		Name					0.0%
github.com/docker/app/specification/bindata.go:133:		Size					0.0%
github.com/docker/app/specification/bindata.go:137:		Mode					0.0%
github.com/docker/app/specification/bindata.go:141:		ModTime					0.0%
github.com/docker/app/specification/bindata.go:145:		IsDir					0.0%
github.com/docker/app/specification/bindata.go:149:		Sys					0.0%
github.com/docker/app/specification/bindata.go:155:		_escFS					0.0%
github.com/docker/app/specification/bindata.go:164:		_escDir					0.0%
github.com/docker/app/specification/bindata.go:173:		_escFSByte				45.5%
github.com/docker/app/specification/bindata.go:191:		_escFSMustByte				0.0%
github.com/docker/app/specification/bindata.go:200:		_escFSString				0.0%
github.com/docker/app/specification/bindata.go:206:		_escFSMustString			0.0%
github.com/docker/app/specification/schema.go:15:		Validate				93.3%
github.com/docker/app/types/init.go:17:				NewInitialComposeFile			100.0%
github.com/docker/app/types/metadata/load.go:14:		Load					83.3%
github.com/docker/app/types/metadata/load.go:25:		validateRawMetadata			83.3%
github.com/docker/app/types/metadata/metadata.go:19:		String					100.0%
github.com/docker/app/types/metadata/metadata.go:28:		String					100.0%
github.com/docker/app/types/metadata/metadata.go:45:		FromBundle				100.0%
github.com/docker/app/types/parameters/load.go:14:		Load					95.0%
github.com/docker/app/types/parameters/load.go:48:		LoadMultiple				77.8%
github.com/docker/app/types/parameters/load.go:64:		LoadFile				75.0%
github.com/docker/app/types/parameters/load.go:73:		LoadFiles				77.8%
github.com/docker/app/types/parameters/load.go:89:		convertToStringKeysRecursive		96.0%
github.com/docker/app/types/parameters/load.go:126:		formatInvalidKeyError			100.0%
github.com/docker/app/types/parameters/merge.go:9:		Merge					100.0%
github.com/docker/app/types/parameters/opts.go:9:		WithPrefix				100.0%
github.com/docker/app/types/parameters/parameters.go:18:	Flatten					100.0%
github.com/docker/app/types/parameters/parameters.go:22:	flatten					100.0%
github.com/docker/app/types/parameters/parameters.go:50:	FromFlatten				88.9%
github.com/docker/app/types/parameters/parameters.go:65:	isSupposedSlice				100.0%
github.com/docker/app/types/parameters/parameters.go:73:	assignKey				92.3%
github.com/docker/app/types/types.go:30:			ShouldRunInsideDirectory		0.0%
github.com/docker/app/types/types.go:57:			Path					100.0%
github.com/docker/app/types/types.go:62:			Size					100.0%
github.com/docker/app/types/types.go:67:			Composes				100.0%
github.com/docker/app/types/types.go:72:			ParametersRaw				100.0%
github.com/docker/app/types/types.go:77:			Parameters				100.0%
github.com/docker/app/types/types.go:82:			MetadataRaw				100.0%
github.com/docker/app/types/types.go:87:			Metadata				100.0%
github.com/docker/app/types/types.go:92:			Attachments				100.0%
github.com/docker/app/types/types.go:96:			HasCRLF					0.0%
github.com/docker/app/types/types.go:101:			Extract					0.0%
github.com/docker/app/types/types.go:114:			noop					0.0%
github.com/docker/app/types/types.go:117:			NewApp					100.0%
github.com/docker/app/types/types.go:139:			NewAppFromDefaultFiles			100.0%
github.com/docker/app/types/types.go:150:			WithName				100.0%
github.com/docker/app/types/types.go:158:			WithPath				100.0%
github.com/docker/app/types/types.go:166:			WithCleanup				100.0%
github.com/docker/app/types/types.go:174:			WithSource				100.0%
github.com/docker/app/types/types.go:181:			WithCRLF				0.0%
github.com/docker/app/types/types.go:189:			WithParametersFiles			100.0%
github.com/docker/app/types/types.go:194:			WithAttachments				84.6%
github.com/docker/app/types/types.go:226:			WithParameters				100.0%
github.com/docker/app/types/types.go:230:			parametersLoader			100.0%
github.com/docker/app/types/types.go:248:			MetadataFile				100.0%
github.com/docker/app/types/types.go:253:			Metadata				100.0%
github.com/docker/app/types/types.go:257:			metadataLoader				100.0%
github.com/docker/app/types/types.go:275:			WithComposeFiles			100.0%
github.com/docker/app/types/types.go:280:			WithComposes				100.0%
github.com/docker/app/types/types.go:284:			composeLoader				100.0%
github.com/docker/app/types/types.go:295:			readReaders				77.8%
github.com/docker/app/types/types.go:309:			readFiles				100.0%
github.com/docker/app/types/types.go:323:			newErrGroup				100.0%
total:								(statements)				77.2%
go tool cover -html _build/cov/all.out -o _build/cov/coverage.html
[Pipeline] sh
+ make EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- -f docker.Makefile TAG=jenkins-app-PR-651-9-coverage-experimental coverage-results
docker cp docker-app-cov-jenkins-app-PR-651-9-coverage-experimental:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-651-9-coverage-experimental:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-651-9-coverage-experimental
docker-app-cov-jenkins-app-PR-651-9-coverage-experimental
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-651/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-651/9/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-651-9-coverage-experimental
Untagged: docker/cnab-app-base:jenkins-app-PR-651-9-coverage-experimental
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[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

Finished: SUCCESS