Skip to content
Success

Console Output

Skipping 20 KB.. Full Log
[Pipeline] sh
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/632/head:refs/remotes/origin/PR-632
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 30c24f93b5213f521335f91daed39757e7523bf8
+ make -f docker.Makefile save-invocation-image
docker build -f Dockerfile.invocation-image --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=invocation -t docker/cnab-app-base:jenkins-app-PR-632-6 .
+ make -f docker.Makefile lint
Linting...
docker build -t docker-app-lint:30c24f93b5 -f Dockerfile.lint .
docker cp docker-app-cli-jenkins-app-PR-632-6:/go/src/github.com/docker/cli/build/docker-darwin-amd64 bin/docker-darwin
docker cp docker-app-cli-jenkins-app-PR-632-6:/go/src/github.com/docker/cli/build/docker-windows-amd64 bin/docker-windows.exe
Sending build context to Docker daemon  72.85MB

Step 1/14 : ARG ALPINE_VERSION=3.10.1
Step 2/14 : FROM golang:1.13.0 AS build
 ---> c4d6fdf2260a
Step 3/14 : RUN apt-get update -qq && apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> bb060b876d5d
Step 4/14 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> 2e2d94ef6e71
Step 5/14 : COPY . .
docker rm docker-app-cli-jenkins-app-PR-632-6
Sending build context to Docker daemon  72.85MB

Step 1/8 : ARG ALPINE_VERSION=3.10
Step 2/8 : ARG GO_VERSION=1.12.9
Step 3/8 : FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION}
 ---> e0d646523991
Step 4/8 : RUN apk add --no-cache     curl     git     make     coreutils
 ---> Using cache
 ---> d0af94321f5d
Step 5/8 : RUN GO111MODULE=on go get     github.com/golangci/golangci-lint/cmd/golangci-lint@v1.16.0     && rm -rf /go/src/* /go/pkg/*
 ---> Using cache
 ---> 6e017ac6263f
Step 6/8 : WORKDIR /go/src/github.com/docker/app
 ---> Using cache
 ---> 76d5734934c6
Step 7/8 : ENV CGO_ENABLED=0
 ---> Using cache
 ---> 1372d68b6a2b
Step 8/8 : COPY . .
docker-app-cli-jenkins-app-PR-632-6
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=cross -t docker-app-cross:30c24f93b5  .
Sending build context to Docker daemon  72.86MB

Step 1/22 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/22 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Using cache
 ---> c7348c87a583
Step 3/22 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> 6f8629705cee
Step 4/22 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> 98676e126e1f
Step 5/22 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> 274e1872f83a
Step 6/22 : ARG GOPROXY
 ---> Using cache
 ---> e5668511fc8e
Step 7/22 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> fbee7b6c79c5
Step 8/22 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> 87ad516467e1
Step 9/22 : FROM build AS dev
 ---> 87ad516467e1
Step 10/22 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> 306864ec9abd
Step 11/22 : ARG DEP_VERSION=v0.5.1
 ---> Using cache
 ---> 037d9ced3263
Step 12/22 : 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
 ---> 03935ff73c48
Step 13/22 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> 82c416bfbd14
Step 14/22 : ARG GOPROXY
 ---> Using cache
 ---> 166d8550c54d
Step 15/22 : 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
 ---> dc4ede7d540d
Step 16/22 : 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
 ---> 4915c3f8c88a
Step 17/22 : 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
 ---> 760f49678d3b
Step 18/22 : COPY . .
 ---> 6a4a7b82ade9
Step 6/14 : ARG EXPERIMENTAL="off"
 ---> Running in 3a81f6c68781
Removing intermediate container 3a81f6c68781
 ---> d18cb208a0e1
Step 7/14 : ARG TAG="unknown"
 ---> Running in 9a1b2317b0b0
Removing intermediate container 9a1b2317b0b0
 ---> bad05b9a1402
Step 8/14 : RUN make EXPERIMENTAL=${EXPERIMENTAL} IMAGE_TAG=${IMAGE_TAG} TAG=${TAG} bin/cnab-run
 ---> Running in 8a7f3ca8ca56
 ---> ff954f95256e
Successfully built ff954f95256e
Successfully tagged docker-app-lint:30c24f93b5
docker run --rm docker-app-lint:30c24f93b5 make lint
 ---> 9efb3ff0a3d7
Step 19/22 : FROM dev AS cross
 ---> 9efb3ff0a3d7
Step 20/22 : ARG EXPERIMENTAL="off"
 ---> Running in 311a6b461ca0
Removing intermediate container 311a6b461ca0
 ---> 67b80cd7e2c3
Step 21/22 : ARG TAG="unknown"
 ---> Running in 00b757ac9dea
Linting...
Removing intermediate container 00b757ac9dea
 ---> e4602e1a6075
Step 22/22 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} cross
 ---> Running in c7831625f1e6
CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:08:16Z" -o bin/cnab-run ./cmd/cnab-run
GOOS=linux CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:08:17Z" -o bin/docker-app-linux ./cmd/docker-app
[Pipeline] sh
+ make -f docker.Makefile check-vendor
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=dev -t docker-app-dev:30c24f93b5 .
Sending build context to Docker daemon  72.85MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Using cache
 ---> 753c52630bda
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> 848193693d9e
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> 75389215233e
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> 2d3df6b8fc81
Step 6/18 : ARG GOPROXY
 ---> Using cache
 ---> 71984fb8063c
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> 4e698274d682
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> e27ad3591846
Step 9/18 : FROM build AS dev
 ---> e27ad3591846
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> 7caf0d8eef1b
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Using cache
 ---> 19a618de4a56
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
 ---> Using cache
 ---> 56b89489c0ca
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> c7437a104f73
Step 14/18 : ARG GOPROXY
 ---> Using cache
 ---> f6df6068e039
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
 ---> Using cache
 ---> a69cb4a3b2f0
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
 ---> Using cache
 ---> 026d2cf76849
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/*
 ---> Using cache
 ---> 6860b4946156
Step 18/18 : COPY . .
 ---> 10f31cf3415f
[Warning] One or more build-args [ALPINE_VERSION COMMIT EXPERIMENTAL TAG] were not consumed
Successfully built 10f31cf3415f
Successfully tagged docker-app-dev:30c24f93b5
Check Vendoring...
docker run --rm docker-app-dev:30c24f93b5 sh -c "make vendor && hack/check-git-diff vendor"
rm -rf vendor 1>&1
dep ensure -v 
(1/95) Wrote github.com/Masterminds/semver@v1.4.2
(2/95) Wrote github.com/davecgh/go-spew@v1.1.1
(3/95) Wrote github.com/coreos/go-systemd@v20
(4/95) Wrote github.com/containerd/typeurl@master
(5/95) Wrote vbom.ml/util@master
(6/95) Wrote github.com/containerd/fifo@master
(7/95) Wrote github.com/containerd/continuity@master
(8/95) Wrote github.com/Microsoft/hcsshim@v0.8.6
(9/95) Wrote github.com/containerd/ttrpc@master
(10/95) Wrote github.com/agl/ed25519@master
(11/95) Wrote github.com/beorn7/perks@master
(12/95) Wrote github.com/docker/cnab-to-oci@v0.1.0-beta2
(13/95) Wrote github.com/containerd/cgroups@master
(14/95) Wrote github.com/Microsoft/go-winio@v0.4.12
(15/95) Wrote github.com/deislabs/cnab-go@v0.3.2-beta1
(16/95) Wrote github.com/docker/docker-credential-helpers@v0.6.1
(17/95) Wrote github.com/docker/go@v1.5.1-1
(18/95) Wrote github.com/docker/go-metrics@d466d4f6fd960e01820085bd7e1a24426ee7ef18
(19/95) Wrote github.com/docker/go-events@master
(20/95) Wrote github.com/docker/go-connections@v0.4.0
(21/95) Wrote github.com/docker/go-units@v0.3.3
(22/95) Wrote github.com/godbus/dbus@v5.0.1
(23/95) Wrote github.com/gogo/googleapis@v1.2.0
(24/95) Wrote github.com/google/go-cmp@v0.2.0
(25/95) Wrote github.com/google/gofuzz@v1.0.0
(26/95) Wrote github.com/google/shlex@master
(27/95) Wrote github.com/gorilla/mux@v1.7.1
(28/95) Wrote github.com/hashicorp/go-version@v1.1.0
(29/95) Wrote github.com/hashicorp/golang-lru@v0.5.1
(30/95) Wrote github.com/imdario/mergo@master
(31/95) Wrote github.com/globalsign/mgo@master
(32/95) Wrote github.com/inconshreveable/mousetrap@v1.0
GOOS=darwin CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:08:17Z" -o bin/docker-app-darwin ./cmd/docker-app
(33/95) Wrote github.com/konsorten/go-windows-terminal-sequences@v1.0.2
(34/95) Wrote github.com/docker/compose-on-kubernetes@v0.4.21
(35/95) Wrote github.com/mattn/go-shellwords@v1.0.5
(36/95) Wrote github.com/json-iterator/go@v1.1.6
(37/95) Wrote github.com/googleapis/gnostic@v0.2.0
(38/95) Wrote github.com/docker/distribution@0d3efadf0154c2b8a4e7b6621fff9809655cc580
(39/95) Wrote github.com/matttproud/golang_protobuf_extensions@v1.0.1
(40/95) Wrote github.com/miekg/pkcs11@master
(41/95) Wrote github.com/mitchellh/mapstructure@v1.1.2
(42/95) Wrote github.com/modern-go/concurrent@1.0.3
(43/95) Wrote github.com/modern-go/reflect2@1.0.1
(44/95) Wrote github.com/morikuni/aec@master
(45/95) Wrote github.com/oklog/ulid@v1.3.1
(46/95) Wrote github.com/opencontainers/go-digest@v1.0.0-rc1
(47/95) Wrote github.com/pkg/errors@v0.8.1
(48/95) Wrote github.com/opencontainers/image-spec@v1.0.1
(49/95) Wrote github.com/golang/protobuf@v1.3.1
(50/95) Wrote github.com/opencontainers/runtime-spec@29686dbc5559d93fb1ef402eeda3e35c38d75af4
(51/95) Wrote github.com/prometheus/client_model@master
(52/95) Wrote github.com/prometheus/client_golang@v0.8.0
(53/95) Wrote github.com/qri-io/jsonpointer@v0.1.0
(54/95) Wrote github.com/prometheus/procfs@master
(55/95) Wrote github.com/prometheus/common@v0.2.0
(56/95) Wrote github.com/qri-io/jsonschema@v0.1.1
(57/95) Wrote github.com/sirupsen/logrus@v1.4.1
(58/95) Wrote github.com/spf13/pflag@master
(59/95) Wrote github.com/syndtr/gocapability@master
(60/95) Wrote github.com/spf13/cobra@v0.0.5
(61/95) Wrote github.com/wadey/gocovmerge@master
(62/95) Wrote github.com/xeipuuv/gojsonpointer@master
(63/95) Wrote github.com/xeipuuv/gojsonreference@master
(64/95) Wrote github.com/opencontainers/runc@v1.0.0-rc7
(65/95) Wrote github.com/xeipuuv/gojsonschema@93e72a773fade158921402d6a24c819b48aba29d
(66/95) Wrote golang.org/x/sync@master
(67/95) Wrote github.com/containerd/containerd@master
(68/95) Wrote golang.org/x/oauth2@master
(69/95) Wrote golang.org/x/crypto@master
(70/95) Wrote github.com/docker/swarmkit@18e7e58ea1a5ec016625a636d0d52500eea123bc
(71/95) Wrote github.com/docker/cli@19.03
(72/95) Wrote golang.org/x/time@master
Removing intermediate container 8a7f3ca8ca56
 ---> a12653fdae5c
Step 9/14 : FROM alpine:${ALPINE_VERSION} as invocation
 ---> b7b28af77ffe
Step 10/14 : RUN apk add --no-cache ca-certificates && adduser -S cnab
 ---> Running in 8bb9f1a6d75f
fetch http://dl-cdn.alpinelinux.org/alpine/v3.10/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.10/community/x86_64/APKINDEX.tar.gz
(1/1) Installing ca-certificates (20190108-r0)
Executing busybox-1.30.1-r2.trigger
Executing ca-certificates-20190108-r0.trigger
OK: 6 MiB in 15 packages
Removing intermediate container 8bb9f1a6d75f
 ---> 2ccec9d6685e
Step 11/14 : USER cnab
 ---> Running in fb7aa3eb9450
Removing intermediate container fb7aa3eb9450
 ---> 774d9516990d
Step 12/14 : COPY --from=build /go/src/github.com/docker/app/bin/cnab-run /cnab/app/run
 ---> d2b1bdd490f5
Step 13/14 : WORKDIR /cnab/app
 ---> Running in b58b54ab089d
Removing intermediate container b58b54ab089d
 ---> cf8949ba0cb1
Step 14/14 : CMD /cnab/app/run
 ---> Running in c86d5cb05f85
Removing intermediate container c86d5cb05f85
 ---> 7ee127263f5b
[Warning] One or more build-args [COMMIT GOPROXY] were not consumed
Successfully built 7ee127263f5b
Successfully tagged docker/cnab-app-base:jenkins-app-PR-632-6
docker save docker/cnab-app-base:jenkins-app-PR-632-6 -o _build/invocation-image.tar
[Pipeline] sh
+ make -f docker.Makefile INVOCATION_IMAGE_TAG=jenkins-app-PR-632-6-coverage OUTPUT=coverage-invocation-image.tar save-invocation-image-tag
docker tag docker/cnab-app-base:jenkins-app-PR-632-6 docker/cnab-app-base:jenkins-app-PR-632-6-coverage
docker save docker/cnab-app-base:jenkins-app-PR-632-6-coverage -o _build/coverage-invocation-image.tar
[Pipeline] sh
+ make -f docker.Makefile INVOCATION_IMAGE_TAG=jenkins-app-PR-632-6-coverage-experimental OUTPUT=coverage-experimental-invocation-image.tar save-invocation-image-tag
docker tag docker/cnab-app-base:jenkins-app-PR-632-6 docker/cnab-app-base:jenkins-app-PR-632-6-coverage-experimental
docker save docker/cnab-app-base:jenkins-app-PR-632-6-coverage-experimental -o _build/coverage-experimental-invocation-image.tar
(73/95) Wrote google.golang.org/appengine@v1.5.0
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] stash
(74/95) Wrote gopkg.in/inf.v0@v0.9.1
(75/95) Wrote golang.org/x/net@master
(76/95) Wrote gopkg.in/yaml.v2 (from https://github.com/simonferquel/yaml)@c86e64ed9581b7588e736f0c3e6ecc02cc22996e
(77/95) Wrote gotest.tools@v2.3.0
Stashed 1 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/invocation-image.tgz
[Pipeline] stash
(78/95) Wrote k8s.io/klog@v0.2.0
(79/95) Wrote sigs.k8s.io/yaml@v1.1.0
(80/95) Wrote github.com/coreos/etcd@v3.3.12
(81/95) Wrote k8s.io/utils@master
(82/95) Wrote k8s.io/apimachinery@kubernetes-1.14.1
Stashed 1 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/coverage-invocation-image.tgz
[Pipeline] stash
(83/95) Wrote github.com/Azure/go-ansiterm@master
(84/95) Wrote google.golang.org/grpc@v1.19.1
(85/95) Wrote golang.org/x/sys@master
Stashed 1 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/coverage-experimental-invocation-image.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app
[Pipeline] {
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-632-6
Untagged: docker/cnab-app-base:jenkins-app-PR-632-6
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-632-6-coverage
Untagged: docker/cnab-app-base:jenkins-app-PR-632-6-coverage
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-632-6-coverage-experimental
Untagged: docker/cnab-app-base:jenkins-app-PR-632-6-coverage-experimental
Deleted: sha256:7ee127263f5ba597f6dc944a4d49fc192324d1e69c0840f3f7fddeeb2d24e420
Deleted: sha256:cf8949ba0cb1c46e13e02e472f35756119a86625affafcb77d67176bc46c153c
Deleted: sha256:d2b1bdd490f5ce5ccb4bde125f5e2a99b93ff4ccef9420ca4ab42bb6636ca929
Deleted: sha256:07bc9bd087e0a023dfba6aa5c6c9a13ebc9edbcd1bbc35e9fe983fc7754aa60b
Deleted: sha256:774d9516990d6d189d74776712654288609a5f0f2c4a1f770800c6e92853414f
Deleted: sha256:2ccec9d6685e7484a27568ebc2b4081e9e1dcdb39ddf84baf482028a7e30e3c1
Deleted: sha256:f9ec6690356ddead0862cffca705f97c3c22e0153448455042c31f3be400b1cd
[Pipeline] }
[Pipeline] // dir
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
(86/95) Wrote github.com/theupdateframework/notary@v0.6.1
(87/95) Wrote golang.org/x/text@v0.3.0
(88/95) Wrote golang.org/x/tools@master
(89/95) Wrote k8s.io/client-go@kubernetes-1.14.1
(90/95) Wrote google.golang.org/genproto@master
(91/95) Wrote cloud.google.com/go@v0.37.4
(92/95) Wrote github.com/gogo/protobuf@v1.2.1
GOOS=windows CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:08:17Z" -o bin/docker-app-windows.exe ./cmd/docker-app
(93/95) Wrote k8s.io/api@kubernetes-1.14.1
(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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:08:17Z" -o bin/docker-app-standalone-linux ./cmd/docker-app-standalone
GOOS=darwin CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:08:17Z" -o bin/docker-app-standalone-darwin ./cmd/docker-app-standalone
GOOS=windows CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:08:17Z" -o bin/docker-app-standalone-windows.exe ./cmd/docker-app-standalone
Removing intermediate container c7831625f1e6
 ---> 7e29748eba73
[Warning] One or more build-args [ALPINE_VERSION COMMIT] were not consumed
Successfully built 7e29748eba73
Successfully tagged docker-app-cross:30c24f93b5
docker create --name docker-app-cross-jenkins-app-PR-632-6 docker-app-cross:30c24f93b5 noop
8acc4c782684e6ae2d42844580e7d535ce7691a98cf557114fbf39f17d8b447d
docker cp docker-app-cross-jenkins-app-PR-632-6:/go/src/github.com/docker/app/bin/docker-app-linux bin/docker-app-linux
docker cp docker-app-cross-jenkins-app-PR-632-6:/go/src/github.com/docker/app/bin/docker-app-darwin bin/docker-app-darwin
docker cp docker-app-cross-jenkins-app-PR-632-6:/go/src/github.com/docker/app/bin/docker-app-windows.exe bin/docker-app-windows.exe
docker cp docker-app-cross-jenkins-app-PR-632-6:/go/src/github.com/docker/app/bin/docker-app-standalone-linux bin/docker-app-standalone-linux
docker cp docker-app-cross-jenkins-app-PR-632-6:/go/src/github.com/docker/app/bin/docker-app-standalone-darwin bin/docker-app-standalone-darwin
docker cp docker-app-cross-jenkins-app-PR-632-6:/go/src/github.com/docker/app/bin/docker-app-standalone-windows.exe bin/docker-app-standalone-windows.exe
docker rm docker-app-cross-jenkins-app-PR-632-6
docker-app-cross-jenkins-app-PR-632-6
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=e2e-cross -t docker-app-e2e-cross:30c24f93b5  .
Sending build context to Docker daemon  72.86MB

Step 1/26 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/26 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Using cache
 ---> c7348c87a583
Step 3/26 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> 6f8629705cee
Step 4/26 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> 98676e126e1f
Step 5/26 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> 274e1872f83a
Step 6/26 : ARG GOPROXY
 ---> Using cache
 ---> e5668511fc8e
Step 7/26 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> fbee7b6c79c5
Step 8/26 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> 87ad516467e1
Step 9/26 : FROM build AS dev
 ---> 87ad516467e1
Step 10/26 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> 306864ec9abd
Step 11/26 : ARG DEP_VERSION=v0.5.1
 ---> Using cache
 ---> 037d9ced3263
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
 ---> 03935ff73c48
Step 13/26 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> 82c416bfbd14
Step 14/26 : ARG GOPROXY
 ---> Using cache
 ---> 166d8550c54d
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
 ---> dc4ede7d540d
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
 ---> 4915c3f8c88a
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
 ---> 760f49678d3b
Step 18/26 : COPY . .
 ---> Using cache
 ---> 9efb3ff0a3d7
Step 19/26 : FROM dev AS cross
 ---> 9efb3ff0a3d7
Step 20/26 : ARG EXPERIMENTAL="off"
 ---> Using cache
 ---> 67b80cd7e2c3
Step 21/26 : ARG TAG="unknown"
 ---> Using cache
 ---> e4602e1a6075
Step 22/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} cross
 ---> Using cache
 ---> 7e29748eba73
Step 23/26 : FROM cross AS e2e-cross
 ---> 7e29748eba73
Step 24/26 : ARG EXPERIMENTAL="off"
 ---> Running in f3f650dab70c
Removing intermediate container f3f650dab70c
 ---> c4308c609397
Step 25/26 : ARG TAG="unknown"
 ---> Running in dcb00b785081
Removing intermediate container dcb00b785081
 ---> 32ec436d8742
Step 26/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} e2e-cross
 ---> Running in d41d532b249f
GOOS=linux CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:11:06Z" -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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:11:06Z" -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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:11:06Z" -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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:11:06Z" -c -o bin/docker-app-e2e-darwin ./e2e/
(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] }
GOOS=windows CGO_ENABLED=0 go test -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:11:06Z" -c -o bin/docker-app-e2e-windows.exe ./e2e/
Removing intermediate container d41d532b249f
 ---> 9626f93418ea
[Warning] One or more build-args [ALPINE_VERSION COMMIT] were not consumed
Successfully built 9626f93418ea
Successfully tagged docker-app-e2e-cross:30c24f93b5
docker create --name docker-app-e2e-cross-jenkins-app-PR-632-6 docker-app-e2e-cross:30c24f93b5 noop
4cb9c0ef98b69a224422506b89cb6ce51eb9a290bf0d5fb85a0fc00e87591db2
docker cp docker-app-e2e-cross-jenkins-app-PR-632-6:/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-632-6:/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-632-6:/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-632-6:/usr/local/bin/gotestsum-linux bin/gotestsum-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-632-6:/usr/local/bin/gotestsum-darwin bin/gotestsum-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-632-6:/usr/local/bin/gotestsum-windows.exe bin/gotestsum-windows.exe
docker cp docker-app-e2e-cross-jenkins-app-PR-632-6:/usr/local/bin/test2json-linux bin/test2json-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-632-6:/usr/local/bin/test2json-darwin bin/test2json-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-632-6:/usr/local/bin/test2json-windows.exe bin/test2json-windows.exe
docker rm docker-app-e2e-cross-jenkins-app-PR-632-6
docker-app-e2e-cross-jenkins-app-PR-632-6
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-632/src/github.com/docker/app/bin
[Pipeline] {
[Pipeline] stash
Stashed 24 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/binaries.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app/e2e
[Pipeline] {
[Pipeline] stash
Stashed 60 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/e2e.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/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-632/6/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ make -f docker.Makefile clean_images
make: Nothing to be done for 'clean_images'.
[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-0ae1fde0f3fedb259) in /home/ubuntu/workspace/app_PR-632
[Pipeline] {
Running on ubuntu-1804-overlay2 (i-0a55b00da8039580a) in /home/ubuntu/workspace/app_PR-632
[Pipeline] {
Running on ubuntu-1804-overlay2 (i-0c2b609b92b260dda) in /home/ubuntu/workspace/app_PR-632
[Pipeline] {
[Pipeline] withEnv
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app
[Pipeline] {
using credential docker-jenkins-github-credentials
[Pipeline] checkout
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
[Pipeline] checkout
using credential docker-jenkins-github-credentials
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Fetching changes from the remote Git repository
Fetching without tags
Checking out Revision 30c24f93b5213f521335f91daed39757e7523bf8 (PR-632)
Commit message: "Don't rely on BUILD_TAG to tag docker images"
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-632/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/632/head:refs/remotes/origin/PR-632
 > git rev-parse --is-inside-work-tree # 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
 > 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/632/head:refs/remotes/origin/PR-632
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 30c24f93b5213f521335f91daed39757e7523bf8
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-632/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/632/head:refs/remotes/origin/PR-632
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
Fetching without tags
Checking out Revision 30c24f93b5213f521335f91daed39757e7523bf8 (PR-632)
Fetching without tags
Checking out Revision 30c24f93b5213f521335f91daed39757e7523bf8 (PR-632)
Commit message: "Don't rely on BUILD_TAG to tag docker images"
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/632/head:refs/remotes/origin/PR-632 # 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/632/head:refs/remotes/origin/PR-632
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 30c24f93b5213f521335f91daed39757e7523bf8
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/632/head:refs/remotes/origin/PR-632 # 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/632/head:refs/remotes/origin/PR-632
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 30c24f93b5213f521335f91daed39757e7523bf8
Commit message: "Don't rely on BUILD_TAG to tag docker images"
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/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-632/6/stashes/invocation-image.tgz
[Pipeline] sh
+ docker load -i invocation-image.tar
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
Loaded image: docker/cnab-app-base:jenkins-app-PR-632-6
[Pipeline] }
[Pipeline] // dir
[Pipeline] unstash
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/coverage-experimental-invocation-image.tgz
[Pipeline] sh
+ docker load -i coverage-experimental-invocation-image.tar
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/coverage-invocation-image.tgz
[Pipeline] sh
Loaded image: docker/cnab-app-base:jenkins-app-PR-632-6-coverage-experimental
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ docker load -i coverage-invocation-image.tar
+ make EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- -f docker.Makefile TAG=jenkins-app-PR-632-6-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:30c24f93b5 .
Loaded image: docker/cnab-app-base:jenkins-app-PR-632-6-coverage
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ make -f docker.Makefile TAG=jenkins-app-PR-632-6-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:30c24f93b5 .
Sending build context to Docker daemon  72.85MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Using cache
 ---> 82c75d7aec5e
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> fa32583592cb
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> a5648749d8b7
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> f2cb20d1742d
Step 6/18 : ARG GOPROXY
 ---> Using cache
 ---> e1f5f4baed84
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> 16800e80c8ea
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> 995b18a03c8b
Step 9/18 : FROM build AS dev
 ---> 995b18a03c8b
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> 91b52c6035a7
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Using cache
 ---> ff9da6242494
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
 ---> Using cache
 ---> c1ac0e54b601
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> 5581655979af
Step 14/18 : ARG GOPROXY
 ---> Using cache
 ---> fb62e4f0cc71
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
 ---> Using cache
 ---> c6313f9f2664
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
 ---> Using cache
 ---> 3522b2bbfdea
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/*
 ---> Using cache
 ---> fb1a879fe3b1
Step 18/18 : COPY . .
Sending build context to Docker daemon  72.85MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Using cache
 ---> 5b44aa04f043
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> e9308808ba89
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> fb145a3e36af
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> bb52dd6ea80e
Step 6/18 : ARG GOPROXY
 ---> Using cache
 ---> cfd1d280cede
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> 4e0fad6b3c47
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> ce4f02786ce7
Step 9/18 : FROM build AS dev
 ---> ce4f02786ce7
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> 8adec1c16b57
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Using cache
 ---> 03d0ba177209
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
 ---> Using cache
 ---> cec02368f79b
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> 8af1acef894c
Step 14/18 : ARG GOPROXY
 ---> Using cache
 ---> f1c82737e712
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
 ---> Using cache
 ---> a05c2131873b
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
 ---> Using cache
 ---> 8942423d0c22
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/*
 ---> Using cache
 ---> f0c97b339f1f
Step 18/18 : COPY . .
 ---> 88873ae90b90
[Warning] One or more build-args [TAG ALPINE_VERSION COMMIT EXPERIMENTAL] were not consumed
Successfully built 88873ae90b90
Successfully tagged docker-app-dev:30c24f93b5
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-632-6-coverage-experimental --network="host" -t docker-app-dev:30c24f93b5 make COMMIT=30c24f93 TAG=jenkins-app-PR-632-6-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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-09-24T08:12:53Z" -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/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
∅  .
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/stashes/binaries.tgz
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/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-632/6/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/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-632/6/stashes/e2e.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
 ---> 5db66c134a3c
[Warning] One or more build-args [ALPINE_VERSION COMMIT EXPERIMENTAL TAG] were not consumed
Successfully built 5db66c134a3c
Successfully tagged docker-app-dev:30c24f93b5
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-632-6-coverage --network="host" -t docker-app-dev:30c24f93b5 make COMMIT=30c24f93 TAG=jenkins-app-PR-632-6-coverage EXPERIMENTAL=off TEST_RESULTS_PREFIX= coverage
+ ./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
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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:12:55Z" -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/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
∅  .
PASS e2e/linux.TestCallCustomStatusAction/validCustomDockerStatusAction (6.62s)
PASS e2e/linux.TestCallCustomStatusAction/validCustomStandardStatusAction (4.51s)
PASS e2e/linux.TestCallCustomStatusAction/missingCustomStatusAction (3.10s)
PASS e2e/linux.TestCallCustomStatusAction (14.23s)
PASS e2e/linux.TestCnabParameters (3.04s)
PASS e2e/linux.TestRender/envvariables/stdout (1.78s)
PASS e2e/linux.TestRender/envvariables/file (1.55s)
PASS e2e/linux.TestRender/envvariables (3.34s)
PASS e2e/linux.TestRender (3.34s)
PASS e2e/linux.TestRenderFormatters (3.46s)
PASS e2e/linux.TestInit (0.13s)
PASS e2e/linux.TestDetectApp (5.10s)
PASS e2e/linux.TestBundle/simple-bundle (0.75s)
PASS e2e/linux.TestBundle/bundle-with-tag (0.35s)
PASS e2e/linux.TestBundle (7.56s)
∅  cmd/cnab-run
∅  cmd/docker-app
∅  cmd/docker-app-standalone
✓  internal (2ms)
✓  internal/compose (12ms)
✓  internal/formatter (3ms)
✓  internal/inspect (48ms)
∅  cmd/cnab-run
∅  cmd/docker-app
∅  cmd/docker-app-standalone
✓  internal (5ms)
✓  internal/compose (5ms)
✓  internal/formatter (16ms)
✓  internal/commands (654ms)
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
∅  internal/log
✓  internal/inspect (76ms)
✓  internal/packager (30ms)
✓  internal/slices (13ms)
✓  internal/store (15ms)
✓  internal/commands (584ms)
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
∅  internal/log
✓  internal/yaml (1.575s)
✓  internal/slices (6ms)
✓  internal/packager (32ms)
✓  loader (10ms)
✓  render (55ms)
✓  specification (19ms)
✓  internal/store (21ms)
✓  internal/yaml (1.807s)
✓  types (19ms)
✓  types/metadata (17ms)
✓  loader (11ms)
✓  types/parameters (4ms)

DONE 199 tests in 92.067s
CGO_ENABLED=0 go test -tags=""experimental" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-09-24T08:12:53Z" -coverpkg="./..." -c -o _build/docker-app.cov ./cmd/docker-app
✓  render (52ms)
✓  specification (16ms)
✓  types/metadata (5ms)
✓  types (13ms)
✓  types/parameters (4ms)

DONE 199 tests in 92.275s
CGO_ENABLED=0 go test -tags=""" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:12:55Z" -coverpkg="./..." -c -o _build/docker-app.cov ./cmd/docker-app
PASS e2e/linux.TestDockerAppLifecycle/withBindMounts (29.58s)
PASS e2e/linux.TestDockerAppLifecycle/withoutBindMounts (25.36s)
PASS e2e/linux.TestDockerAppLifecycle (54.93s)
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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-09-24T08:12:53Z" -v ./e2e
PASS e2e/linux.TestCredentials/missing (0.10s)
PASS e2e/linux.TestCredentials/full (1.51s)
PASS e2e/linux.TestCredentials/mixed-credstore (1.51s)
PASS e2e/linux.TestCredentials/mixed-local-cred (1.46s)
PASS e2e/linux.TestCredentials/overload (0.06s)
PASS e2e/linux.TestCredentials (4.65s)
PASS e2e/linux.TestRenderWithEnvFile (1.79s)
PASS e2e/linux.TestExamplesAreValid (0.12s)
PASS e2e/linux.TestInvokePluginFromCLI (0.24s)
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=30c24f93 -X github.com/docker/app/internal.Version=jenkins-app-PR-632-6-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-24T08:12:55Z" -v ./e2e
PASS e2e/linux.TestPushArchs/default (3.40s)
PASS e2e/linux.TestPushArchs/all-platforms (1.16s)
PASS e2e/linux.TestPushArchs (16.20s)
PASS e2e/linux.TestPushInstall (17.05s)
PASS e2e/linux.TestPushPullInstall (17.23s)
PASS e2e/linux.TestPushInstallBundle/push-bundle (5.25s)
PASS e2e/linux.TestPushInstallBundle/push-ref (1.37s)
PASS e2e/linux.TestPushInstallBundle/push-bundleref (4.46s)
PASS e2e/linux.TestPushInstallBundle (23.87s)
PASS e2e/linux

DONE 36 tests in 172.977s
time="2019-09-24T08:15:48Z" level=warning msg="failed to lookup go version for junit xml" error="exec: \"go\": executable file not found in $PATH"
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] archiveArtifacts
Archiving artifacts
Uploaded 1 artifact(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-632/6/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-632-6
Untagged: docker/cnab-app-base:jenkins-app-PR-632-6
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
✓  e2e (2m46.541s)

DONE 36 tests in 168.195s
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.0%
github.com/docker/app/internal/commands/cnab.go:295:		requiredClaimBindMount			100.0%
github.com/docker/app/internal/commands/cnab.go:304:		requiredBindMount			77.8%
github.com/docker/app/internal/commands/cnab.go:336:		socketPath				100.0%
github.com/docker/app/internal/commands/cnab.go:344:		isDockerHostLocal			100.0%
github.com/docker/app/internal/commands/cnab.go:348:		prepareCustomAction			72.2%
github.com/docker/app/internal/commands/cnab.go:383:		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/init.go:18:		initCmd					90.0%
github.com/docker/app/internal/commands/inspect.go:18:		inspectCmd				100.0%
github.com/docker/app/internal/commands/inspect.go:35:		runInspect				71.4%
github.com/docker/app/internal/commands/install.go:46:		installCmd				100.0%
github.com/docker/app/internal/commands/install.go:71:		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:31:		runPull					71.4%
github.com/docker/app/internal/commands/push.go:51:		pushCmd					100.0%
github.com/docker/app/internal/commands/push.go:73:		runPush					71.4%
github.com/docker/app/internal/commands/push.go:99:		resolveReferenceAndBundle		66.7%
github.com/docker/app/internal/commands/push.go:115:		pushInvocationImage			71.4%
github.com/docker/app/internal/commands/push.go:138:		pushBundle				80.0%
github.com/docker/app/internal/commands/push.go:164:		withAppAnnotations			80.0%
github.com/docker/app/internal/commands/push.go:173:		platformFilter				100.0%
github.com/docker/app/internal/commands/push.go:180:		retagInvocationImage			80.0%
github.com/docker/app/internal/commands/push.go:195:		shouldRetagInvocationImage		85.7%
github.com/docker/app/internal/commands/push.go:241:		onEvent					0.0%
github.com/docker/app/internal/commands/push.go:261:		imageIndex				0.0%
github.com/docker/app/internal/commands/push.go:276:		onProgress				0.0%
github.com/docker/app/internal/commands/push.go:280:		print					0.0%
github.com/docker/app/internal/commands/push.go:295:		printDescriptorProgress			0.0%
github.com/docker/app/internal/commands/push.go:331:		hasError				0.0%
github.com/docker/app/internal/commands/push.go:347:		onEvent					80.0%
github.com/docker/app/internal/commands/push.go:360:		checkFlags				66.7%
github.com/docker/app/internal/commands/remove.go:19:		uninstallCmd				100.0%
github.com/docker/app/internal/commands/remove.go:38:		runUninstall				52.9%
github.com/docker/app/internal/commands/render.go:23:		renderCmd				100.0%
github.com/docker/app/internal/commands/render.go:43:		runRender				80.0%
github.com/docker/app/internal/commands/root.go:23:		NewRootCmd				56.2%
github.com/docker/app/internal/commands/root.go:60:		addCommands				100.0%
github.com/docker/app/internal/commands/root.go:77:		firstOrEmpty				100.0%
github.com/docker/app/internal/commands/root.go:84:		muteDockerCli				100.0%
github.com/docker/app/internal/commands/root.go:93:		prepareStores				69.2%
github.com/docker/app/internal/commands/root.go:113:		prepareBundleStore			71.4%
github.com/docker/app/internal/commands/root.go:130:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:142:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:149:		SetDefaultTargetContext			100.0%
github.com/docker/app/internal/commands/root.go:153:		CredentialSetOpts			100.0%
github.com/docker/app/internal/commands/root.go:166:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:174:		addFlags				100.0%
github.com/docker/app/internal/commands/status.go:29:		statusCmd				100.0%
github.com/docker/app/internal/commands/status.go:48:		runStatus				75.0%
github.com/docker/app/internal/commands/status.go:97:		displayInstallationStatus		97.0%
github.com/docker/app/internal/commands/status.go:144:		sortParameters				100.0%
github.com/docker/app/internal/commands/status.go:153:		printHeader				100.0%
github.com/docker/app/internal/commands/status.go:158:		printValue				100.0%
github.com/docker/app/internal/commands/status.go:162:		resolveStatusAction			100.0%
github.com/docker/app/internal/commands/upgrade.go:21:		upgradeCmd				100.0%
github.com/docker/app/internal/commands/upgrade.go:41:		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					60.0%
github.com/docker/app/internal/packager/init.go:64:		initFromScratch				0.0%
github.com/docker/app/internal/packager/init.go:79:		checkComposeFileVersion			100.0%
github.com/docker/app/internal/packager/init.go:87:		initFromComposeFile			86.0%
github.com/docker/app/internal/packager/init.go:152:		removeDefaultValuesFromCompose		100.0%
github.com/docker/app/internal/packager/init.go:166:		composeFileFromScratch			0.0%
github.com/docker/app/internal/packager/init.go:186:		writeMetadataFile			75.0%
github.com/docker/app/internal/packager/init.go:201:		parseMaintainersData			100.0%
github.com/docker/app/internal/packager/init.go:214:		newMetadata				57.1%
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:34:		Store					71.4%
github.com/docker/app/internal/store/bundle.go:46:		Read					80.0%
github.com/docker/app/internal/store/bundle.go:66:		LookupOrPullBundle			75.0%
github.com/docker/app/internal/store/bundle.go:86:		storePath				100.0%
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:41:			Render					80.0%
github.com/docker/app/render/render.go:66:			substituteParams			100.0%
github.com/docker/app/render/render.go:97:			render					84.6%
github.com/docker/app/render/render.go:121:			processEnabled				91.7%
github.com/docker/app/render/render.go:141:			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.5%
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-632-6-coverage-experimental coverage-results
docker cp docker-app-cov-jenkins-app-PR-632-6-coverage-experimental:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-632-6-coverage-experimental:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-632-6-coverage-experimental
docker-app-cov-jenkins-app-PR-632-6-coverage-experimental
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/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-632/6/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-632-6-coverage-experimental
Untagged: docker/cnab-app-base:jenkins-app-PR-632-6-coverage-experimental
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
✓  e2e (2m52.615s)

DONE 36 tests in 174.224s
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.0%
github.com/docker/app/internal/commands/cnab.go:295:		requiredClaimBindMount			100.0%
github.com/docker/app/internal/commands/cnab.go:304:		requiredBindMount			77.8%
github.com/docker/app/internal/commands/cnab.go:336:		socketPath				100.0%
github.com/docker/app/internal/commands/cnab.go:344:		isDockerHostLocal			100.0%
github.com/docker/app/internal/commands/cnab.go:348:		prepareCustomAction			72.2%
github.com/docker/app/internal/commands/cnab.go:383:		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/init.go:18:		initCmd					90.0%
github.com/docker/app/internal/commands/inspect.go:18:		inspectCmd				100.0%
github.com/docker/app/internal/commands/inspect.go:35:		runInspect				71.4%
github.com/docker/app/internal/commands/install.go:46:		installCmd				100.0%
github.com/docker/app/internal/commands/install.go:71:		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:31:		runPull					71.4%
github.com/docker/app/internal/commands/push.go:51:		pushCmd					100.0%
github.com/docker/app/internal/commands/push.go:73:		runPush					71.4%
github.com/docker/app/internal/commands/push.go:99:		resolveReferenceAndBundle		66.7%
github.com/docker/app/internal/commands/push.go:115:		pushInvocationImage			71.4%
github.com/docker/app/internal/commands/push.go:138:		pushBundle				80.0%
github.com/docker/app/internal/commands/push.go:164:		withAppAnnotations			80.0%
github.com/docker/app/internal/commands/push.go:173:		platformFilter				100.0%
github.com/docker/app/internal/commands/push.go:180:		retagInvocationImage			80.0%
github.com/docker/app/internal/commands/push.go:195:		shouldRetagInvocationImage		85.7%
github.com/docker/app/internal/commands/push.go:241:		onEvent					0.0%
github.com/docker/app/internal/commands/push.go:261:		imageIndex				0.0%
github.com/docker/app/internal/commands/push.go:276:		onProgress				0.0%
github.com/docker/app/internal/commands/push.go:280:		print					0.0%
github.com/docker/app/internal/commands/push.go:295:		printDescriptorProgress			0.0%
github.com/docker/app/internal/commands/push.go:331:		hasError				0.0%
github.com/docker/app/internal/commands/push.go:347:		onEvent					80.0%
github.com/docker/app/internal/commands/push.go:360:		checkFlags				66.7%
github.com/docker/app/internal/commands/remove.go:19:		uninstallCmd				100.0%
github.com/docker/app/internal/commands/remove.go:38:		runUninstall				52.9%
github.com/docker/app/internal/commands/render.go:23:		renderCmd				100.0%
github.com/docker/app/internal/commands/render.go:43:		runRender				80.0%
github.com/docker/app/internal/commands/root.go:23:		NewRootCmd				56.2%
github.com/docker/app/internal/commands/root.go:60:		addCommands				100.0%
github.com/docker/app/internal/commands/root.go:77:		firstOrEmpty				100.0%
github.com/docker/app/internal/commands/root.go:84:		muteDockerCli				100.0%
github.com/docker/app/internal/commands/root.go:93:		prepareStores				69.2%
github.com/docker/app/internal/commands/root.go:113:		prepareBundleStore			71.4%
github.com/docker/app/internal/commands/root.go:130:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:142:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:149:		SetDefaultTargetContext			100.0%
github.com/docker/app/internal/commands/root.go:153:		CredentialSetOpts			100.0%
github.com/docker/app/internal/commands/root.go:166:		addFlags				100.0%
github.com/docker/app/internal/commands/root.go:174:		addFlags				100.0%
github.com/docker/app/internal/commands/status.go:29:		statusCmd				100.0%
github.com/docker/app/internal/commands/status.go:48:		runStatus				75.0%
github.com/docker/app/internal/commands/status.go:97:		displayInstallationStatus		97.0%
github.com/docker/app/internal/commands/status.go:144:		sortParameters				100.0%
github.com/docker/app/internal/commands/status.go:153:		printHeader				100.0%
github.com/docker/app/internal/commands/status.go:158:		printValue				100.0%
github.com/docker/app/internal/commands/status.go:162:		resolveStatusAction			100.0%
github.com/docker/app/internal/commands/upgrade.go:21:		upgradeCmd				100.0%
github.com/docker/app/internal/commands/upgrade.go:41:		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					60.0%
github.com/docker/app/internal/packager/init.go:64:		initFromScratch				0.0%
github.com/docker/app/internal/packager/init.go:79:		checkComposeFileVersion			100.0%
github.com/docker/app/internal/packager/init.go:87:		initFromComposeFile			86.0%
github.com/docker/app/internal/packager/init.go:152:		removeDefaultValuesFromCompose		100.0%
github.com/docker/app/internal/packager/init.go:166:		composeFileFromScratch			0.0%
github.com/docker/app/internal/packager/init.go:186:		writeMetadataFile			75.0%
github.com/docker/app/internal/packager/init.go:201:		parseMaintainersData			100.0%
github.com/docker/app/internal/packager/init.go:214:		newMetadata				57.1%
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:34:		Store					71.4%
github.com/docker/app/internal/store/bundle.go:46:		Read					80.0%
github.com/docker/app/internal/store/bundle.go:66:		LookupOrPullBundle			75.0%
github.com/docker/app/internal/store/bundle.go:86:		storePath				100.0%
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:41:			Render					80.0%
github.com/docker/app/render/render.go:66:			substituteParams			100.0%
github.com/docker/app/render/render.go:97:			render					84.6%
github.com/docker/app/render/render.go:121:			processEnabled				91.7%
github.com/docker/app/render/render.go:141:			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.4%
go tool cover -html _build/cov/all.out -o _build/cov/coverage.html
[Pipeline] sh
+ make -f docker.Makefile TAG=jenkins-app-PR-632-6-coverage coverage-results
docker cp docker-app-cov-jenkins-app-PR-632-6-coverage:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-632-6-coverage:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-632-6-coverage
docker-app-cov-jenkins-app-PR-632-6-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-632/6/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-632/6/artifacts/
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-632/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-632/6/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-632-6-coverage
Untagged: docker/cnab-app-base:jenkins-app-PR-632-6-coverage
[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