Skip to content
Failed

Console Output

Skipping 65 KB.. Full Log
+ docker rmi docker/cnab-app-base:jenkins-app-PR-625-1-coverage-experimental
Untagged: docker/cnab-app-base:jenkins-app-PR-625-1-coverage-experimental
Deleted: sha256:b1e64c3d2cf01346e79fe83cc49a97d06856ef5191a0aa723ce96878998062c6
Deleted: sha256:146a6017bbe525954387621015aab406f3d9316ed66df51358009970b8df9e07
Deleted: sha256:25c489ba866ae93d90d1ac2e8d598c107a3cee360624eddd0b1d1bcdfbe97930
Deleted: sha256:db6b4e85d518df194bf458065f17ff75184dee931f248d9396febfe9789a46c7
Deleted: sha256:8adf9562b34ea9a0b40a251086d8af220e26da06a9948fb4e46c16f8c8bb767d
Deleted: sha256:7bf7a01e749b39696d54821e140a55d1ade5f5ed309beeb439496c4e58abc5c9
Deleted: sha256:9806c82fb1938e4651e059758dd5b0672614ce269a4fb63a03ebbf35280de4cf
[Pipeline] }
[Pipeline] // dir
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
WARNING: binary creates a Linux executable. Use cross for macOS or Windows.
./scripts/build/binary
Building statically linked build/docker-linux-amd64
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
WARNING: binary creates a Linux executable. Use cross for macOS or Windows.
./scripts/build/binary
Building statically linked build/docker-linux-amd64
Removing intermediate container cb41930d5a63
 ---> dff5ca672075
Step 8/8 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in f29a9cb7f8a8
Removing intermediate container f29a9cb7f8a8
 ---> 9fd28095c7d6
[Warning] One or more build-args [TAG ALPINE_VERSION COMMIT EXPERIMENTAL] were not consumed
Successfully built 9fd28095c7d6
Successfully tagged docker-app-cli:jenkins-app-PR-625-1
docker create --name docker-app-cli-jenkins-app-PR-625-1 docker-app-cli:jenkins-app-PR-625-1 noop
58bbfc38af378d176a47913c26c5e5c01372522fde6ec7912017e397c7bddf22
docker cp docker-app-cli-jenkins-app-PR-625-1:/go/src/github.com/docker/cli/build/docker-linux-amd64 bin/docker-linux
docker cp docker-app-cli-jenkins-app-PR-625-1:/go/src/github.com/docker/cli/build/docker-darwin-amd64 bin/docker-darwin
docker cp docker-app-cli-jenkins-app-PR-625-1:/go/src/github.com/docker/cli/build/docker-windows-amd64 bin/docker-windows.exe
docker rm docker-app-cli-jenkins-app-PR-625-1
docker-app-cli-jenkins-app-PR-625-1
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=cross -t docker-app-cross:jenkins-app-PR-625-1  .
Sending build context to Docker daemon  79.45MB

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
 ---> 6e6292f73b47
Step 3/22 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> 291c3389a1f4
Step 4/22 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> 6beab8f9c97a
Step 5/22 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> 4f26002b698e
Step 6/22 : ARG GOPROXY
 ---> Using cache
 ---> 6e71aa2c3555
Step 7/22 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> dff5ca672075
Step 8/22 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> 9fd28095c7d6
Step 9/22 : FROM build AS dev
 ---> 9fd28095c7d6
Step 10/22 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in 2e0eefcdbd4a
Removing intermediate container 2e0eefcdbd4a
 ---> c1a9e78cab56
Step 11/22 : ARG DEP_VERSION=v0.5.1
 ---> Running in 79eee9c83a2c
Removing intermediate container 79eee9c83a2c
 ---> 7c0b89c63f66
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
 ---> Running in 4d1c1eaf549b
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   5307      0 --:--:-- --:--:-- --:--:--  5307

100 10.5M  100 10.5M    0     0  45.4M      0 --:--:-- --:--:-- --:--:-- 45.4M
Removing intermediate container 4d1c1eaf549b
 ---> c495ca4fe187
Step 13/22 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in 44660472a46e
Removing intermediate container 44660472a46e
 ---> 82abef1b21fc
Step 14/22 : ARG GOPROXY
 ---> Running in acfbed4a360b
Removing intermediate container acfbed4a360b
 ---> 3aef819780ee
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
 ---> Running in 8465238dbb43
go: finding github.com/sirupsen/logrus v1.0.5
go: finding github.com/pkg/errors v0.8.0
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/onsi/gomega v1.4.3
go: finding github.com/google/go-cmp v0.2.0
go: finding gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2
go: finding gopkg.in/airbrake/gobrake.v2 v2.0.9
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding gotest.tools v2.1.0+incompatible
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/onsi/ginkgo v1.8.0
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding github.com/mattn/go-colorable v0.0.9
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding github.com/hpcloud/tail v1.0.0
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding github.com/davecgh/go-spew v1.1.0
go: finding github.com/golang/protobuf v1.2.0
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/fatih/color v1.6.0
go: finding github.com/onsi/ginkgo v1.6.0
go: finding golang.org/x/text v0.3.0
go: finding github.com/stretchr/objx v0.1.0
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding github.com/spf13/pflag v1.0.1
go: finding golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
go: downloading gotest.tools v2.1.0+incompatible
go: extracting gotest.tools v2.1.0+incompatible
go: downloading github.com/sirupsen/logrus v1.0.5
go: downloading github.com/pkg/errors v0.8.0
go: downloading github.com/fatih/color v1.6.0
go: downloading github.com/jonboulle/clockwork v0.1.0
go: downloading golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: extracting github.com/pkg/errors v0.8.0
go: downloading github.com/spf13/pflag v1.0.1
go: extracting golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: extracting github.com/jonboulle/clockwork v0.1.0
go: downloading golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting github.com/sirupsen/logrus v1.0.5
go: downloading golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: downloading golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting github.com/spf13/pflag v1.0.1
go: extracting github.com/fatih/color v1.6.0
go: downloading github.com/mattn/go-colorable v0.0.9
go: downloading github.com/mattn/go-isatty v0.0.3
go: extracting github.com/mattn/go-isatty v0.0.3
go: extracting github.com/mattn/go-colorable v0.0.9
go: extracting golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: extracting golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
Removing intermediate container 8465238dbb43
 ---> 999c2b6213f5
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
 ---> Running in edf62785fc0a
Removing intermediate container edf62785fc0a
 ---> 91f1da40000d
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/*
 ---> Running in 6215c2674443
golang.org/x/tools/internal/semver
github.com/pkg/errors
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/go/internal/gcimporter
golang.org/x/tools/go/internal/packagesdriver
golang.org/x/tools/internal/fastwalk
golang.org/x/tools/internal/gopathwalk
golang.org/x/tools/internal/module
golang.org/x/tools/go/gcexportdata
golang.org/x/tools/go/packages
golang.org/x/tools/internal/imports
golang.org/x/tools/imports
github.com/mjibson/esc/embed
github.com/mjibson/esc
Removing intermediate container 6215c2674443
 ---> 2ffb0a84c1dc
Step 18/22 : COPY . .
 ---> 6bb40819e69e
Step 19/22 : FROM dev AS cross
 ---> 6bb40819e69e
Step 20/22 : ARG EXPERIMENTAL="off"
 ---> Running in 2b5da8bc28f6
Removing intermediate container 2b5da8bc28f6
 ---> eba47bb08386
Step 21/22 : ARG TAG="unknown"
 ---> Running in e53119d0b695
Removing intermediate container e53119d0b695
 ---> c9dfc658af4f
Step 22/22 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} cross
 ---> Running in 72685e759644
GOOS=linux CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:54:58Z" -o bin/docker-app-linux ./cmd/docker-app
Removing intermediate container 563d59e0e551
 ---> 155f23ffeda4
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in 7a38f5ef75eb
Removing intermediate container 7a38f5ef75eb
 ---> 4883a68eb437
Step 9/18 : FROM build AS dev
 ---> 4883a68eb437
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in 85f8ec8fd339
Removing intermediate container 85f8ec8fd339
 ---> 8cf4175256c6
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Running in 7d2a829ffe87
Removing intermediate container 7d2a829ffe87
 ---> 8118357ebfd8
Step 12/18 : RUN curl -o /usr/bin/dep -L https://github.com/golang/dep/releases/download/${DEP_VERSION}/dep-linux-amd64 &&     chmod +x /usr/bin/dep
 ---> Running in 07ab0d2f5816
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   6368      0 --:--:-- --:--:-- --:--:--  6368

100 10.5M  100 10.5M    0     0  49.4M      0 --:--:-- --:--:-- --:--:-- 49.4M
Removing intermediate container 07ab0d2f5816
 ---> 181d9f54ffad
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in 5a392db87b5b
Removing intermediate container 5a392db87b5b
 ---> a24672b57d8c
Step 14/18 : ARG GOPROXY
 ---> Running in 669b4a9840ef
Removing intermediate container 669b4a9840ef
 ---> b5c9b05a69cc
Step 15/18 : RUN mkdir $GOPATH/src/gotest.tools &&     git clone -q https://github.com/gotestyourself/gotestsum $GOPATH/src/gotest.tools/gotestsum &&     cd $GOPATH/src/gotest.tools/gotestsum &&     git -C $GOPATH/src/gotest.tools/gotestsum checkout -q $GOTESTSUM_VERSION &&     GO111MODULE=on GOOS=linux   go build -o /usr/local/bin/gotestsum-linux       gotest.tools/gotestsum &&     GO111MODULE=on GOOS=darwin  go build -o /usr/local/bin/gotestsum-darwin      gotest.tools/gotestsum &&     GO111MODULE=on GOOS=windows go build -o /usr/local/bin/gotestsum-windows.exe gotest.tools/gotestsum &&     ln -s gotestsum-linux /usr/local/bin/gotestsum
 ---> Running in e12020564f0f
go: finding github.com/onsi/ginkgo v1.8.0
go: finding github.com/spf13/pflag v1.0.1
go: finding github.com/fatih/color v1.6.0
go: finding github.com/sirupsen/logrus v1.0.5
go: finding github.com/google/go-cmp v0.2.0
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding github.com/pkg/errors v0.8.0
go: finding github.com/onsi/gomega v1.4.3
go: finding github.com/mattn/go-colorable v0.0.9
go: finding gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/hpcloud/tail v1.0.0
go: finding github.com/golang/protobuf v1.2.0
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding gopkg.in/airbrake/gobrake.v2 v2.0.9
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding golang.org/x/text v0.3.0
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding github.com/stretchr/testify v1.3.0
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding github.com/onsi/ginkgo v1.6.0
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding github.com/davecgh/go-spew v1.1.0
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/stretchr/objx v0.1.0
go: finding golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
go: finding gotest.tools v2.1.0+incompatible
go: downloading gotest.tools v2.1.0+incompatible
go: extracting gotest.tools v2.1.0+incompatible
go: downloading github.com/fatih/color v1.6.0
go: downloading github.com/sirupsen/logrus v1.0.5
go: downloading github.com/spf13/pflag v1.0.1
go: downloading golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading github.com/jonboulle/clockwork v0.1.0
go: downloading github.com/pkg/errors v0.8.0
go: extracting github.com/pkg/errors v0.8.0
go: extracting github.com/sirupsen/logrus v1.0.5
go: downloading golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: downloading golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting github.com/spf13/pflag v1.0.1
go: extracting golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting github.com/jonboulle/clockwork v0.1.0
go: extracting github.com/fatih/color v1.6.0
go: downloading github.com/mattn/go-isatty v0.0.3
go: downloading github.com/mattn/go-colorable v0.0.9
go: extracting github.com/mattn/go-isatty v0.0.3
go: extracting github.com/mattn/go-colorable v0.0.9
GOOS=darwin CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:54:58Z" -o bin/docker-app-darwin ./cmd/docker-app
go: extracting golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
Removing intermediate container e12020564f0f
 ---> 6091dd4a28e4
Step 16/18 : RUN GOOS=linux   go build -o /usr/local/bin/test2json-linux       cmd/test2json &&     GOOS=darwin  go build -o /usr/local/bin/test2json-darwin      cmd/test2json &&     GOOS=windows go build -o /usr/local/bin/test2json-windows.exe cmd/test2json
 ---> Running in 8336dd10ac74
Removing intermediate container 8336dd10ac74
 ---> 6b11d673001f
Step 17/18 : RUN go get -d gopkg.in/mjibson/esc.v0 &&     cd /go/src/github.com/mjibson/esc &&     go build -v -o /usr/bin/esc . &&     rm -rf /go/src/* /go/pkg/* /go/bin/*
 ---> Running in b90872f402df
golang.org/x/tools/internal/semver
github.com/pkg/errors
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/go/internal/gcimporter
golang.org/x/tools/go/internal/packagesdriver
golang.org/x/tools/internal/fastwalk
golang.org/x/tools/internal/gopathwalk
golang.org/x/tools/internal/module
golang.org/x/tools/go/gcexportdata
golang.org/x/tools/go/packages
golang.org/x/tools/internal/imports
golang.org/x/tools/imports
github.com/mjibson/esc/embed
github.com/mjibson/esc
Removing intermediate container b90872f402df
 ---> 8bfcf64ff4e4
Step 18/18 : COPY . .
 ---> 23b2528ec2dc
[Warning] One or more build-args [COMMIT EXPERIMENTAL TAG ALPINE_VERSION] were not consumed
Successfully built 23b2528ec2dc
Successfully tagged docker-app-dev:jenkins-app-PR-625-1
Check Vendoring...
docker run --rm docker-app-dev:jenkins-app-PR-625-1 sh -c "make vendor && hack/check-git-diff vendor"
rm -rf vendor 1>&1
dep ensure -v 
(1/95) Wrote github.com/matttproud/golang_protobuf_extensions@v1.0.1
(2/95) Wrote github.com/oklog/ulid@v1.3.1
(3/95) Wrote github.com/prometheus/client_golang@v0.8.0
(4/95) Wrote github.com/pkg/errors@v0.8.1
(5/95) Wrote vbom.ml/util@master
(6/95) Wrote github.com/prometheus/common@v0.2.0
(7/95) Wrote github.com/opencontainers/go-digest@v1.0.0-rc1
(8/95) Wrote github.com/qri-io/jsonpointer@v0.1.0
(9/95) Wrote github.com/prometheus/client_model@master
(10/95) Wrote github.com/mitchellh/mapstructure@v1.1.2
(11/95) Wrote github.com/modern-go/concurrent@1.0.3
(12/95) Wrote github.com/modern-go/reflect2@1.0.1
(13/95) Wrote github.com/morikuni/aec@master
(14/95) Wrote github.com/opencontainers/image-spec@v1.0.1
(15/95) Wrote github.com/opencontainers/runtime-spec@29686dbc5559d93fb1ef402eeda3e35c38d75af4
(16/95) Wrote github.com/miekg/pkcs11@master
(17/95) Wrote github.com/prometheus/procfs@master
(18/95) Wrote github.com/qri-io/jsonschema@v0.1.1
(19/95) Wrote github.com/sirupsen/logrus@v1.4.1
(20/95) Wrote github.com/spf13/pflag@master
(21/95) Wrote github.com/syndtr/gocapability@master
(22/95) Wrote github.com/spf13/cobra@v0.0.5
(23/95) Wrote github.com/opencontainers/runc@v1.0.0-rc7
(24/95) Wrote github.com/wadey/gocovmerge@master
(25/95) Wrote github.com/xeipuuv/gojsonpointer@master
(26/95) Wrote github.com/xeipuuv/gojsonreference@master
(27/95) Wrote github.com/xeipuuv/gojsonschema@93e72a773fade158921402d6a24c819b48aba29d
(28/95) Wrote golang.org/x/crypto@master
(29/95) Wrote golang.org/x/sync@master
(30/95) Wrote golang.org/x/oauth2@master
(31/95) Wrote golang.org/x/net@master
(32/95) Wrote github.com/theupdateframework/notary@v0.6.1
(33/95) Wrote golang.org/x/time@master
(34/95) Wrote gopkg.in/inf.v0@v0.9.1
(35/95) Wrote google.golang.org/appengine@v1.5.0
(36/95) Wrote gotest.tools@v2.3.0
(37/95) Wrote gopkg.in/yaml.v2 (from https://github.com/simonferquel/yaml)@c86e64ed9581b7588e736f0c3e6ecc02cc22996e
(38/95) Wrote golang.org/x/sys@master
(39/95) Wrote k8s.io/klog@v0.2.0
(40/95) Wrote k8s.io/utils@master
(41/95) Wrote sigs.k8s.io/yaml@v1.1.0
(42/95) Wrote k8s.io/apimachinery@kubernetes-1.14.1
(43/95) Wrote github.com/Azure/go-ansiterm@master
(44/95) Wrote github.com/Microsoft/go-winio@v0.4.12
(45/95) Wrote google.golang.org/grpc@v1.19.1
(46/95) Wrote github.com/Masterminds/semver@v1.4.2
(47/95) Wrote golang.org/x/text@v0.3.0
(48/95) Wrote github.com/agl/ed25519@master
(49/95) Wrote github.com/beorn7/perks@master
(50/95) Wrote github.com/containerd/cgroups@master
(51/95) Wrote github.com/containerd/fifo@master
(52/95) Wrote github.com/containerd/typeurl@master
(53/95) Wrote github.com/containerd/ttrpc@master
(54/95) Wrote github.com/containerd/continuity@master
(55/95) Wrote github.com/coreos/go-systemd@v20
(56/95) Wrote github.com/davecgh/go-spew@v1.1.1
(57/95) Wrote golang.org/x/tools@master
(58/95) Wrote github.com/Microsoft/hcsshim@v0.8.6
(59/95) Wrote github.com/google/go-cmp@v0.2.0
(60/95) Wrote github.com/google/gofuzz@v1.0.0
(61/95) Wrote github.com/google/shlex@master
GOOS=windows CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:54:58Z" -o bin/docker-app-windows.exe ./cmd/docker-app
(62/95) Wrote github.com/gorilla/mux@v1.7.1
(63/95) Wrote github.com/deislabs/cnab-go@v0.3.2-beta1
(64/95) Wrote github.com/docker/cnab-to-oci@v0.1.0-beta2
(65/95) Wrote github.com/docker/docker-credential-helpers@v0.6.1
(66/95) Wrote github.com/googleapis/gnostic@v0.2.0
(67/95) Wrote github.com/docker/go@v1.5.1-1
(68/95) Wrote k8s.io/client-go@kubernetes-1.14.1
(69/95) Wrote github.com/docker/go-events@master
(70/95) Wrote github.com/hashicorp/go-version@v1.1.0
(71/95) Wrote github.com/docker/go-connections@v0.4.0
(72/95) Wrote github.com/hashicorp/golang-lru@v0.5.1
(73/95) Wrote google.golang.org/genproto@master
(74/95) Wrote github.com/inconshreveable/mousetrap@v1.0
(75/95) Wrote github.com/imdario/mergo@master
(76/95) Wrote github.com/konsorten/go-windows-terminal-sequences@v1.0.2
(77/95) Wrote github.com/mattn/go-shellwords@v1.0.5
(78/95) Wrote github.com/json-iterator/go@v1.1.6
(79/95) Wrote github.com/docker/go-metrics@d466d4f6fd960e01820085bd7e1a24426ee7ef18
(80/95) Wrote cloud.google.com/go@v0.37.4
(81/95) Wrote github.com/docker/go-units@v0.3.3
(82/95) Wrote github.com/gogo/googleapis@v1.2.0
(83/95) Wrote github.com/godbus/dbus@v5.0.1
(84/95) Wrote github.com/golang/protobuf@v1.3.1
(85/95) Wrote github.com/docker/compose-on-kubernetes@v0.4.21
(86/95) Wrote github.com/docker/distribution@0d3efadf0154c2b8a4e7b6621fff9809655cc580
(87/95) Wrote github.com/globalsign/mgo@master
(88/95) Wrote github.com/containerd/containerd@master
(89/95) Wrote github.com/docker/cli@19.03
(90/95) Wrote github.com/docker/swarmkit@18e7e58ea1a5ec016625a636d0d52500eea123bc
(91/95) Wrote github.com/coreos/etcd@v3.3.12
(92/95) Wrote k8s.io/api@kubernetes-1.14.1
GOOS=linux CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:54:58Z" -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=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:54:58Z" -o bin/docker-app-standalone-darwin ./cmd/docker-app-standalone
(93/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=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:54:58Z" -o bin/docker-app-standalone-windows.exe ./cmd/docker-app-standalone
(94/95) Wrote github.com/docker/docker@master
Removing intermediate container 72685e759644
 ---> a4fa51c51e2f
[Warning] One or more build-args [ALPINE_VERSION COMMIT] were not consumed
Successfully built a4fa51c51e2f
Successfully tagged docker-app-cross:jenkins-app-PR-625-1
docker create --name docker-app-cross-jenkins-app-PR-625-1 docker-app-cross:jenkins-app-PR-625-1 noop
3531d0a6bd01bcc47574b6fb522fee5363889c6c24ab99af5bc72938570e8b4b
docker cp docker-app-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-linux bin/docker-app-linux
docker cp docker-app-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-darwin bin/docker-app-darwin
docker cp docker-app-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-windows.exe bin/docker-app-windows.exe
docker cp docker-app-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-standalone-linux bin/docker-app-standalone-linux
docker cp docker-app-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-standalone-darwin bin/docker-app-standalone-darwin
docker cp docker-app-cross-jenkins-app-PR-625-1:/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-625-1
docker-app-cross-jenkins-app-PR-625-1
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:jenkins-app-PR-625-1  .
Sending build context to Docker daemon  79.45MB

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
 ---> 6e6292f73b47
Step 3/26 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Using cache
 ---> 291c3389a1f4
Step 4/26 : WORKDIR /go/src/github.com/docker/cli
 ---> Using cache
 ---> 6beab8f9c97a
Step 5/26 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Using cache
 ---> 4f26002b698e
Step 6/26 : ARG GOPROXY
 ---> Using cache
 ---> 6e71aa2c3555
Step 7/26 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Using cache
 ---> dff5ca672075
Step 8/26 : WORKDIR /go/src/github.com/docker/app/
 ---> Using cache
 ---> 9fd28095c7d6
Step 9/26 : FROM build AS dev
 ---> 9fd28095c7d6
Step 10/26 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Using cache
 ---> c1a9e78cab56
Step 11/26 : ARG DEP_VERSION=v0.5.1
 ---> Using cache
 ---> 7c0b89c63f66
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
 ---> c495ca4fe187
Step 13/26 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Using cache
 ---> 82abef1b21fc
Step 14/26 : ARG GOPROXY
 ---> Using cache
 ---> 3aef819780ee
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
 ---> 999c2b6213f5
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
 ---> 91f1da40000d
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
 ---> 2ffb0a84c1dc
Step 18/26 : COPY . .
 ---> Using cache
 ---> 6bb40819e69e
Step 19/26 : FROM dev AS cross
 ---> 6bb40819e69e
Step 20/26 : ARG EXPERIMENTAL="off"
 ---> Using cache
 ---> eba47bb08386
Step 21/26 : ARG TAG="unknown"
 ---> Using cache
 ---> c9dfc658af4f
Step 22/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} cross
 ---> Using cache
 ---> a4fa51c51e2f
Step 23/26 : FROM cross AS e2e-cross
 ---> a4fa51c51e2f
Step 24/26 : ARG EXPERIMENTAL="off"
 ---> Running in a79e494d6db3
Removing intermediate container a79e494d6db3
 ---> d1724902608e
Step 25/26 : ARG TAG="unknown"
 ---> Running in 8f293f14c8c6
Removing intermediate container 8f293f14c8c6
 ---> e275d66dfa6e
Step 26/26 : RUN make EXPERIMENTAL=${EXPERIMENTAL} TAG=${TAG} e2e-cross
 ---> Running in c544fa670b7e
GOOS=linux CGO_ENABLED=0 go build -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:57:43Z" -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=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:57:43Z" -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=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:57:43Z" -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=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:57:43Z" -c -o bin/docker-app-e2e-darwin ./e2e/
GOOS=windows CGO_ENABLED=0 go test -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1 -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T17:57:43Z" -c -o bin/docker-app-e2e-windows.exe ./e2e/
Removing intermediate container c544fa670b7e
 ---> b72c74f2f0d9
[Warning] One or more build-args [ALPINE_VERSION COMMIT] were not consumed
Successfully built b72c74f2f0d9
Successfully tagged docker-app-e2e-cross:jenkins-app-PR-625-1
docker create --name docker-app-e2e-cross-jenkins-app-PR-625-1 docker-app-e2e-cross:jenkins-app-PR-625-1 noop
df4e94b1fc87d552689f45bd0a9e8bcd079523a0a007e9645a3e899bdb318c89
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-e2e-linux bin/docker-app-e2e-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-e2e-darwin bin/docker-app-e2e-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/go/src/github.com/docker/app/bin/docker-app-e2e-windows.exe bin/docker-app-e2e-windows.exe
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/usr/local/bin/gotestsum-linux bin/gotestsum-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/usr/local/bin/gotestsum-darwin bin/gotestsum-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/usr/local/bin/gotestsum-windows.exe bin/gotestsum-windows.exe
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/usr/local/bin/test2json-linux bin/test2json-linux
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/usr/local/bin/test2json-darwin bin/test2json-darwin
docker cp docker-app-e2e-cross-jenkins-app-PR-625-1:/usr/local/bin/test2json-windows.exe bin/test2json-windows.exe
docker rm docker-app-e2e-cross-jenkins-app-PR-625-1
docker-app-e2e-cross-jenkins-app-PR-625-1
tar --transform='flags=r;s|docker-app-linux|docker-app-plugin-linux|' -czf bin/docker-app-linux.tar.gz -C bin docker-app-linux 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
(95/95) Wrote k8s.io/kubernetes@v1.14.1
vendor is correct
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
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
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-625/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-625/1/stashes/binaries.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app/e2e
[Pipeline] {
[Pipeline] stash
Stashed 61 file(s) to https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-625/1/stashes/e2e.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/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-625/1/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker image ls --format={{.Repository}}:{{.Tag}} *jenkins-app-PR-625-1*
+ xargs docker image rm -f
Untagged: docker-app-e2e-cross:jenkins-app-PR-625-1
Deleted: sha256:b72c74f2f0d9752d15f27c557ec6c8699b347a80a824a2b6e0900a981d823588
Deleted: sha256:aef12bda80117e61f80cbabfe9552de6997b0f3ac46b6e74992347b658ff8ad2
Deleted: sha256:e275d66dfa6ef4901817514e749b84764c8252f79fffbc1c84d2477d73ac623c
Deleted: sha256:d1724902608ef3a7237f623c0b8f2e9ef95eccc6dbb3189a2b7453a7e992c1c8
Untagged: docker-app-cross:jenkins-app-PR-625-1
Deleted: sha256:a4fa51c51e2f22a0a79bbd28ac78f5210cefce5098fc5fd8be3591a167c362f8
Deleted: sha256:688df783a1888f637bfc29847a85d5a47a5f0e30683eb9d3277cf890f0c4dd95
Deleted: sha256:c9dfc658af4f80b08f88c69052fa9376b9f7ec5dbef3fd4d435975f87021ce21
Deleted: sha256:eba47bb08386ed4c96919f12f80b16af3719a655bc705de5858293fb8f7936e3
Deleted: sha256:6bb40819e69e4c1b11ae8991ccfbc0f42bf3042e07a2850baed6df6128afe5fe
Deleted: sha256:b9266ac9c60fa7e3d2cdd2a8d5a6cf51735cf3eac254ecd304a3e94e12f870ac
Deleted: sha256:2ffb0a84c1dca1e452b28877990b4ac5278dc7352a398cc70acba2f737ae2374
Deleted: sha256:4f4089bd75839b4f7fd081fffb1a08d86b5140fbd60326621b8b886819298192
Deleted: sha256:91f1da40000d5760b8a80cc20d94838c04ebe94ab24314a71430da37781bb554
Deleted: sha256:946bd66fb51bd42f023b2064b20fcb69bdfb71be17d7eee54b06b2852467c4e7
Deleted: sha256:999c2b6213f539f7d16be10f1101f17207a7579f6fb2391738b3d16fd11971cb
Deleted: sha256:44a631266acf269c86358cf65aa7c8366f4b19ebf0ca13d1760077da51add9d7
Deleted: sha256:3aef819780ee5876a81becb4aad7ee45996d930fe0079fa035c571a098974fff
Deleted: sha256:82abef1b21fc258d8f0783cb449deaebef6f59b0ed38b9bdf323992cc0262785
Deleted: sha256:c495ca4fe187fbf2441a5db75cc52dfd82d5b0536e4ba069d595d2d1395462cf
Deleted: sha256:77558ee3ed7882a2a52aababf2a9ca5bcf6ba394cd8b57e6ae19702b78c8825e
Deleted: sha256:7c0b89c63f66f7bf3b8710dea12d6143939dd237bdd4e74b29e56109ada222b3
Deleted: sha256:c1a9e78cab56ccc422daf82856c1c6d505da60b5453e2a22649894f4ce50c150
Untagged: docker-app-cli:jenkins-app-PR-625-1
Deleted: sha256:9fd28095c7d61e6a0adba5af0af5058445b273116d3055fa7698df200e860b34
Deleted: sha256:9e8b01d54185fac11c6ada1c7aa6cbe0ebf88e97065a57f822e4247bc36fbd29
Deleted: sha256:dff5ca67207532568e05874b50509c1ae4a2ebb15fcebe4e3fe639012342a5b5
Deleted: sha256:92165d70fba8cd64c2d8db3c11d8e19ba8f8eb3ddfc048b931c1bcdf8c61ae1f
Deleted: sha256:6e71aa2c3555edf717c7349820546f4edb4cab3024fc448aceb778a142155cbe
Deleted: sha256:4f26002b698e84fc143fa9fa1516c15c59daf6a09afadbd5225ae6af7ba67453
Deleted: sha256:8834c933483e37ead7a2949d02497bea4f08be9716894b94e1bad5fe026ff4f4
Deleted: sha256:6beab8f9c97ae631291020a11650a7ff64c1c7da2335c2ae8e6c00214b1991ee
Deleted: sha256:a3174d0fcc186567d067e375d529aea952ce8783dc0195126b2a3f5260665efc
Deleted: sha256:291c3389a1f40e9ef3627b5b01070fbdef7912dd63318276ea8cdc5f3f67d04e
Deleted: sha256:7377267037f32200512d04252b997bdf56d44675c9857bd86377ab8ccae7210e
Deleted: sha256:6e6292f73b4745c9f6804be8b1c18c54943e7be242b9fad63dfe2cc932a7329b
[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: Gradle test)
[Pipeline] { (Branch: Test Linux)
[Pipeline] stage
[Pipeline] { (Coverage)
[Pipeline] stage
[Pipeline] { (Coverage (experimental))
[Pipeline] stage
[Pipeline] { (Gradle test)
[Pipeline] stage
[Pipeline] { (Test Linux)
[Pipeline] node
[Pipeline] node
[Pipeline] node
[Pipeline] node
Running on ubuntu-1804-overlay2 (i-071f0e1e3cbc3c7cb) in /home/ubuntu/workspace/app_PR-625
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-625/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/625/head:refs/remotes/origin/PR-625
Fetching without tags
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/625/head:refs/remotes/origin/PR-625 # 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/625/head:refs/remotes/origin/PR-625
Checking out Revision cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b (PR-625)
Commit message: "app-214 Enabled validate only for experimental mode"
fatal: bad object ead69454b4062f17d1f8389642089a002b037213
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-625/1/stashes/coverage-invocation-image.tgz
[Pipeline] sh
+ docker load -i coverage-invocation-image.tar
Loaded image: docker/cnab-app-base:jenkins-app-PR-625-1-coverage
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ make -f docker.Makefile TAG=jenkins-app-PR-625-1-coverage coverage-run
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=dev -t docker-app-dev:jenkins-app-PR-625-1 .
Sending build context to Docker daemon  79.45MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Running in 8704508235f6
Removing intermediate container 8704508235f6
 ---> 805b09a41040
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Running in b8c72fda29e7
Reading package lists...
Building dependency tree...
Reading state information...
coreutils is already the newest version (8.30-3).
coreutils set to manually installed.
util-linux is already the newest version (2.33.1-0.1).
util-linux set to manually installed.
The following NEW packages will be installed:
  uuid-runtime
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 95.2 kB of archives.
After this operation, 211 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian buster/main amd64 uuid-runtime amd64 2.33.1-0.1 [95.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 95.2 kB in 0s (369 kB/s)
Selecting previously unselected package uuid-runtime.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 25419 files and directories currently installed.)
Preparing to unpack .../uuid-runtime_2.33.1-0.1_amd64.deb ...
Unpacking uuid-runtime (2.33.1-0.1) ...
Setting up uuid-runtime (2.33.1-0.1) ...
Adding group `uuidd' (GID 102) ...
Done.
Warning: The home dir /run/uuidd you specified can't be accessed: No such file or directory
Adding system user `uuidd' (UID 101) ...
Adding new user `uuidd' (UID 101) with group `uuidd' ...
Not creating home directory `/run/uuidd'.
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Removing intermediate container b8c72fda29e7
 ---> 9987223e2977
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Running in 9c07b392fdd4
Removing intermediate container 9c07b392fdd4
 ---> d00299a491fd
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
 ---> Running in 0228ce4c095e
Cloning into '.'...
Still waiting to schedule task
Waiting for next available executor on ‘ubuntu-1804&&x86_64&&overlay2’
Still waiting to schedule task
Waiting for next available executor on ‘ubuntu-1804&&x86_64&&overlay2’
Still waiting to schedule task
Waiting for next available executor on ‘ubuntu-1804&&x86_64&&overlay2’
Note: checking out 'a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb'.

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

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

  git checkout -b <new-branch-name>

HEAD is now at a1b83ffd Merge pull request #1894 from thaJeztah/19.03_backport_reduce_vendoring_impact
Removing intermediate container 0228ce4c095e
 ---> b280a83b50b6
Step 6/18 : ARG GOPROXY
 ---> Running in c397dc7b9845
Removing intermediate container c397dc7b9845
 ---> 8dd3950f77b4
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Running in 4e362b03c617
./scripts/build/osx
Building build/docker-darwin-amd64
Running on ubuntu-1804-overlay2 (i-072260166a12a4bcb) in /home/ubuntu/workspace/app_PR-625
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
Running on ubuntu-1804-overlay2 (i-0e3a7414c3e0a26d8) in /home/ubuntu/workspace/app_PR-625
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-625/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/625/head:refs/remotes/origin/PR-625
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app # timeout=10
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/625/head:refs/remotes/origin/PR-625 # timeout=10
Fetching without tags
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/625/head:refs/remotes/origin/PR-625
Checking out Revision cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b (PR-625)
 > 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/625/head:refs/remotes/origin/PR-625
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b
Commit message: "app-214 Enabled validate only for experimental mode"
fatal: bad object ead69454b4062f17d1f8389642089a002b037213
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
Fetching without tags
Checking out Revision cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b (PR-625)
Running on ubuntu-1804-overlay2 (i-0705a4ec54c86efcc) in /home/ubuntu/workspace/app_PR-625
[Pipeline] {
[Pipeline] withEnv
[Pipeline] {
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app
[Pipeline] {
[Pipeline] checkout
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/625/head:refs/remotes/origin/PR-625 # 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/625/head:refs/remotes/origin/PR-625
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b
Commit message: "app-214 Enabled validate only for experimental mode"
fatal: bad object ead69454b4062f17d1f8389642089a002b037213
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app/bin
[Pipeline] {
[Pipeline] unstash
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-625/1/stashes/coverage-experimental-invocation-image.tgz
[Pipeline] sh
+ docker load -i coverage-experimental-invocation-image.tar
using credential docker-jenkins-github-credentials
Cloning the remote Git repository
Cloning with configured refspecs honoured and without tags
Cloning repository https://github.com/docker/app.git
 > git init /home/ubuntu/workspace/app_PR-625/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/625/head:refs/remotes/origin/PR-625
Fetching without tags
Checking out Revision cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b (PR-625)
 > git config remote.origin.url https://github.com/docker/app.git # timeout=10
 > git config --add remote.origin.fetch +refs/pull/625/head:refs/remotes/origin/PR-625 # 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/625/head:refs/remotes/origin/PR-625
 > git config core.sparsecheckout # timeout=10
 > git checkout -f cdb44f1a3d2f43800ef21fd41f4a31505ad7c75b
Commit message: "app-214 Enabled validate only for experimental mode"
fatal: bad object ead69454b4062f17d1f8389642089a002b037213
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/src/github.com/docker/app/_build
[Pipeline] {
[Pipeline] unstash
Loaded image: docker/cnab-app-base:jenkins-app-PR-625-1-coverage-experimental
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ make EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- -f docker.Makefile TAG=jenkins-app-PR-625-1-coverage-experimental coverage-run
docker build --build-arg=EXPERIMENTAL --build-arg=TAG --build-arg=COMMIT --build-arg=ALPINE_VERSION --build-arg=GOPROXY --target=dev -t docker-app-dev:jenkins-app-PR-625-1 .
Sending build context to Docker daemon  79.45MB

Step 1/18 : FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS build
sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705: Pulling from dockercore/golang-cross
4ae16bd47783: Pulling fs layer
bbab4ec87ac4: Pulling fs layer
2ea1f7804402: Pulling fs layer
96465440c208: Pulling fs layer
16a3d8aca6cd: Pulling fs layer
e0ec5610455a: Pulling fs layer
96d705baf026: Pulling fs layer
39007eb46008: Pulling fs layer
4e549f0f5e64: Pulling fs layer
c0058a8c71f2: Pulling fs layer
2f8d98df0991: Pulling fs layer
96465440c208: Waiting
16a3d8aca6cd: Waiting
e0ec5610455a: Waiting
96d705baf026: Waiting
39007eb46008: Waiting
4e549f0f5e64: Waiting
c0058a8c71f2: Waiting
2f8d98df0991: Waiting
bbab4ec87ac4: Verifying Checksum
bbab4ec87ac4: Download complete
2ea1f7804402: Verifying Checksum
2ea1f7804402: Download complete
4ae16bd47783: Verifying Checksum
4ae16bd47783: Download complete
96465440c208: Verifying Checksum
96465440c208: Download complete
16a3d8aca6cd: Verifying Checksum
16a3d8aca6cd: Download complete
96d705baf026: Verifying Checksum
96d705baf026: Download complete
39007eb46008: Verifying Checksum
39007eb46008: Download complete
c0058a8c71f2: Verifying Checksum
c0058a8c71f2: Download complete
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-625/1/stashes/invocation-image.tgz
[Pipeline] sh
+ docker load -i invocation-image.tar
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-625/1/stashes/binaries.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
e0ec5610455a: Verifying Checksum
e0ec5610455a: Download complete
+ make -f docker.Makefile gradle-test
tar cf - Dockerfile.gradle bin/docker-app-linux integrations/gradle | docker build -t docker-app-gradle:jenkins-app-PR-625-1 -f Dockerfile.gradle -
4e549f0f5e64: Verifying Checksum
4e549f0f5e64: Download complete
2f8d98df0991: Verifying Checksum
2f8d98df0991: Download complete
4ae16bd47783: Pull complete
Loaded image: docker/cnab-app-base:jenkins-app-PR-625-1
[Pipeline] }
[Pipeline] // dir
[Pipeline] unstash
bbab4ec87ac4: Pull complete
Sending build context to Docker daemon  39.22MB

Step 1/3 : FROM gradle:4.9-jdk8
4.9-jdk8: Pulling from library/gradle
55cbf04beb70: Pulling fs layer
1607093a898c: Pulling fs layer
9a8ea045c926: Pulling fs layer
d4eee24d4dac: Pulling fs layer
c58988e753d7: Pulling fs layer
794a04897db9: Pulling fs layer
70fcfa476f73: Pulling fs layer
806029475e0c: Pulling fs layer
67959b355155: Pulling fs layer
365e56fcf864: Pulling fs layer
821805da50c8: Pulling fs layer
c58988e753d7: Waiting
794a04897db9: Waiting
70fcfa476f73: Waiting
806029475e0c: Waiting
67959b355155: Waiting
365e56fcf864: Waiting
821805da50c8: Waiting
d4eee24d4dac: Waiting
9a8ea045c926: Verifying Checksum
9a8ea045c926: Download complete
1607093a898c: Verifying Checksum
1607093a898c: Download complete
c58988e753d7: Verifying Checksum
c58988e753d7: Download complete
55cbf04beb70: Verifying Checksum
55cbf04beb70: Download complete
794a04897db9: Verifying Checksum
794a04897db9: Download complete
2ea1f7804402: Pull complete
70fcfa476f73: Verifying Checksum
70fcfa476f73: Download complete
d4eee24d4dac: Verifying Checksum
d4eee24d4dac: Download complete
67959b355155: Verifying Checksum
67959b355155: Download complete
821805da50c8: Verifying Checksum
821805da50c8: Download complete
365e56fcf864: Verifying Checksum
365e56fcf864: Download complete
806029475e0c: Verifying Checksum
806029475e0c: Download complete
96465440c208: Pull complete
55cbf04beb70: Pull complete
1607093a898c: Pull complete
9a8ea045c926: Pull complete
16a3d8aca6cd: Pull complete
d4eee24d4dac: Pull complete
c58988e753d7: Pull complete
794a04897db9: Pull complete
70fcfa476f73: Pull complete
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
Unstashed file(s) from https://corp-us-east-1-jenkins-k8s-maste-jenkinsartifacts-1lzm7adht5e1j.s3.amazonaws.com/public/app/PR-625/1/stashes/binaries.tgz
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/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-625/1/stashes/examples.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/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-625/1/stashes/e2e.tgz
[Pipeline] }
[Pipeline] // dir
[Pipeline] ansiColor
[Pipeline] {
[Pipeline] sh
+ ./gotestsum-linux --format short-verbose --junitfile e2e-linux.xml --raw-command -- ./test2json-linux -t -p e2e/linux ./docker-app-e2e-linux -test.v --e2e-path=e2e
PASS e2e/linux.TestBaseInvocationImageVersion/default (0.10s)
PASS e2e/linux.TestBaseInvocationImageVersion/config (0.11s)
PASS e2e/linux.TestBaseInvocationImageVersion (0.21s)
e0ec5610455a: Pull complete
96d705baf026: Pull complete
39007eb46008: Pull complete
806029475e0c: Pull complete
67959b355155: Pull complete
365e56fcf864: Pull complete
821805da50c8: Pull complete
Digest: sha256:d761793ff33b748f6160f9249fa0ceeeba55a6b6204737e7f4c67b6ad70c631b
Status: Downloaded newer image for gradle:4.9-jdk8
 ---> 171a47f5f255
Step 2/3 : COPY bin/docker-app-linux /usr/local/bin/docker-app
 ---> 9904728f8766
Step 3/3 : COPY --chown=gradle:gradle integrations/gradle .
 ---> 81d6a6aa7f35
Successfully built 81d6a6aa7f35
Successfully tagged docker-app-gradle:jenkins-app-PR-625-1
docker run --rm docker-app-gradle:jenkins-app-PR-625-1 bash -c "./gradlew --stacktrace build && cd example && gradle renderIt"
Downloading https://services.gradle.org/distributions/gradle-4.7-bin.zip
.......................................................................
Unzipping /home/gradle/.gradle/wrapper/dists/gradle-4.7-bin/73xux3q4721jgr4pjvqf9o30/gradle-4.7-bin.zip to /home/gradle/.gradle/wrapper/dists/gradle-4.7-bin/73xux3q4721jgr4pjvqf9o30
Set executable permissions for: /home/gradle/.gradle/wrapper/dists/gradle-4.7-bin/73xux3q4721jgr4pjvqf9o30/gradle-4.7/bin/gradle
4e549f0f5e64: Pull complete
c0058a8c71f2: Pull complete

Welcome to Gradle 4.7!

Here are the highlights of this release:
 - Incremental annotation processing
 - JDK 10 support
 - Grouped non-interactive console logs
 - Failed tests are re-run first for quicker feedback

For more details see https://docs.gradle.org/4.7/release-notes.html

Starting a Gradle Daemon (subsequent builds will be faster)
Generating JAR file 'gradle-api-4.7.jar'
PASS e2e/linux.TestCallCustomStatusAction/validCustomDockerStatusAction (9.20s)
PASS e2e/linux.TestCallCustomStatusAction/validCustomStandardStatusAction (4.80s)
PASS e2e/linux.TestCallCustomStatusAction/missingCustomStatusAction (3.09s)
PASS e2e/linux.TestCallCustomStatusAction (17.09s)
PASS e2e/linux.TestCnabParameters (3.11s)
PASS e2e/linux.TestRender/envvariables/stdout (1.65s)
PASS e2e/linux.TestRender/envvariables/file (1.39s)
PASS e2e/linux.TestRender/envvariables (3.05s)
PASS e2e/linux.TestRender (3.05s)
PASS e2e/linux.TestRenderFormatters (2.96s)
=== RUN   TestInit
--- FAIL: TestInit (0.12s)
    commands_test.go:130: assertion failed: 
        --- expected
        +++ actual
        @@ -1,2 +1 @@
        -Validated "app-test.dockerapp"
         
        
FAIL e2e/linux.TestInit (0.12s)
2f8d98df0991: Pull complete
Digest: sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705
Status: Downloaded newer image for dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705
 ---> 518d5e4626aa
Step 2/18 : ENV     DISABLE_WARN_OUTSIDE_CONTAINER=1
 ---> Running in 3719ba0aae5e
Removing intermediate container 3719ba0aae5e
 ---> 3c509df7553c
Step 3/18 : RUN apt-get install -y -q --no-install-recommends     coreutils     util-linux     uuid-runtime
 ---> Running in 6b15cdedde1c
Reading package lists...
Building dependency tree...
Reading state information...
coreutils is already the newest version (8.30-3).
coreutils set to manually installed.
util-linux is already the newest version (2.33.1-0.1).
util-linux set to manually installed.
The following NEW packages will be installed:
  uuid-runtime
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 95.2 kB of archives.
After this operation, 211 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian buster/main amd64 uuid-runtime amd64 2.33.1-0.1 [95.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 95.2 kB in 0s (362 kB/s)
Selecting previously unselected package uuid-runtime.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 25419 files and directories currently installed.)
Preparing to unpack .../uuid-runtime_2.33.1-0.1_amd64.deb ...
Unpacking uuid-runtime (2.33.1-0.1) ...
Setting up uuid-runtime (2.33.1-0.1) ...
Adding group `uuidd' (GID 102) ...
Done.
Warning: The home dir /run/uuidd you specified can't be accessed: No such file or directory
Adding system user `uuidd' (UID 101) ...
Adding new user `uuidd' (UID 101) with group `uuidd' ...
Not creating home directory `/run/uuidd'.
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
PASS e2e/linux.TestDetectApp (4.60s)
Removing intermediate container 6b15cdedde1c
 ---> ea09805a0d95
Step 4/18 : WORKDIR /go/src/github.com/docker/cli
 ---> Running in 624ce16c52de
Removing intermediate container 624ce16c52de
 ---> 1cfc9cd6727f
Step 5/18 : RUN git clone https://github.com/docker/cli . && git checkout a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb
> Task :compileJava
> Task :pluginDescriptors
> Task :processResources
> Task :classes
> Task :jar
> Task :assemble
> Task :pluginUnderTestMetadata
> Task :compileTestJava NO-SOURCE
> Task :processTestResources NO-SOURCE
> Task :testClasses UP-TO-DATE
> Task :test NO-SOURCE
 ---> Running in 08431516d36e
Cloning into '.'...
> Task :validateTaskProperties
> Task :check
> Task :build

BUILD SUCCESSFUL in 27s
6 actionable tasks: 6 executed

Welcome to Gradle 4.9!

Here are the highlights of this release:
 - Experimental APIs for creating and configuring tasks lazily
 - Pass arguments to JavaExec via CLI
 - Auxiliary publication dependency support for multi-project builds
 - Improved dependency insight report

For more details see https://docs.gradle.org/4.9/release-notes.html

Starting a Gradle Daemon (subsequent builds will be faster)
Note: checking out 'a1b83ffd2cbeefc0752e5aa7a543d49c1ddfd2cb'.

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

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

  git checkout -b <new-branch-name>

HEAD is now at a1b83ffd Merge pull request #1894 from thaJeztah/19.03_backport_reduce_vendoring_impact
Removing intermediate container 08431516d36e
 ---> d685e0aa8678
Step 6/18 : ARG GOPROXY
 ---> Running in 0a9c3ce406c4
Removing intermediate container 0a9c3ce406c4
 ---> c6c5bdc5203d
Step 7/18 : RUN make binary-osx binary-windows binary &&  cp build/docker-linux-amd64 /usr/bin/docker
 ---> Running in 31078886b4b3
> Task :renderIt

BUILD SUCCESSFUL in 4s
1 actionable task: 1 executed
./scripts/build/osx
Building build/docker-darwin-amd64
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
PASS e2e/linux.TestBundle/simple-bundle (0.97s)
PASS e2e/linux.TestBundle/bundle-with-tag (0.34s)
PASS e2e/linux.TestBundle (12.28s)
WARNING: binary creates a Linux executable. Use cross for macOS or Windows.
./scripts/build/binary
Building statically linked build/docker-linux-amd64
PASS e2e/linux.TestDockerAppLifecycle/withBindMounts (33.16s)
PASS e2e/linux.TestDockerAppLifecycle/withoutBindMounts (22.50s)
PASS e2e/linux.TestDockerAppLifecycle (55.66s)
PASS e2e/linux.TestCredentials/missing (0.07s)
PASS e2e/linux.TestCredentials/full (1.94s)
PASS e2e/linux.TestCredentials/mixed-credstore (1.25s)
PASS e2e/linux.TestCredentials/mixed-local-cred (1.23s)
PASS e2e/linux.TestCredentials/overload (0.06s)
PASS e2e/linux.TestCredentials (4.56s)
PASS e2e/linux.TestRenderWithEnvFile (1.78s)
PASS e2e/linux.TestExamplesAreValid (0.12s)
=== RUN   TestInvokePluginFromCLI
--- FAIL: TestInvokePluginFromCLI (1.93s)
    plugin_test.go:29: assertion failed: 
        --- expected
        +++ actual
        @@ -16,5 +16,4 @@
           uninstall   Uninstall an application
           upgrade     Upgrade an installed application
        -  validate    Checks the rendered application is syntactically correct
           version     Print version information
         
        
FAIL e2e/linux.TestInvokePluginFromCLI (1.93s)
PASS e2e/linux.TestPushArchs/default (3.44s)
PASS e2e/linux.TestPushArchs/all-platforms (1.18s)
PASS e2e/linux.TestPushArchs (17.56s)
./scripts/build/windows
Generating windows resources
Building build/docker-windows-amd64
PASS e2e/linux.TestPushInstall (16.60s)
Removing intermediate container 4e362b03c617
 ---> fe1d9f0bb650
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in c58324014a18
Removing intermediate container c58324014a18
 ---> 8dabb3d101ee
Step 9/18 : FROM build AS dev
 ---> 8dabb3d101ee
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in 9f967ee8ca94
Removing intermediate container 9f967ee8ca94
 ---> 00f9d1d319c9
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Running in 00efe4185e11
Removing intermediate container 00efe4185e11
 ---> 4791464079ac
Step 12/18 : RUN curl -o /usr/bin/dep -L https://github.com/golang/dep/releases/download/${DEP_VERSION}/dep-linux-amd64 &&     chmod +x /usr/bin/dep
 ---> Running in c409b810a3cb
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   5817      0 --:--:-- --:--:-- --:--:--  5873

 19 10.5M   19 2144k    0     0  10.2M      0  0:00:01 --:--:--  0:00:01 10.2M
100 10.5M  100 10.5M    0     0  39.7M      0 --:--:-- --:--:-- --:--:--  140M
Removing intermediate container c409b810a3cb
 ---> 6e2f69e38df8
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in 84edeed236b4
Removing intermediate container 84edeed236b4
 ---> c2aaf143efd2
Step 14/18 : ARG GOPROXY
 ---> Running in 047d83fd7eac
Removing intermediate container 047d83fd7eac
 ---> 6b6091156459
Step 15/18 : RUN mkdir $GOPATH/src/gotest.tools &&     git clone -q https://github.com/gotestyourself/gotestsum $GOPATH/src/gotest.tools/gotestsum &&     cd $GOPATH/src/gotest.tools/gotestsum &&     git -C $GOPATH/src/gotest.tools/gotestsum checkout -q $GOTESTSUM_VERSION &&     GO111MODULE=on GOOS=linux   go build -o /usr/local/bin/gotestsum-linux       gotest.tools/gotestsum &&     GO111MODULE=on GOOS=darwin  go build -o /usr/local/bin/gotestsum-darwin      gotest.tools/gotestsum &&     GO111MODULE=on GOOS=windows go build -o /usr/local/bin/gotestsum-windows.exe gotest.tools/gotestsum &&     ln -s gotestsum-linux /usr/local/bin/gotestsum
 ---> Running in b0580be2f457
go: finding github.com/mattn/go-colorable v0.0.9
go: finding github.com/sirupsen/logrus v1.0.5
go: finding github.com/fatih/color v1.6.0
go: finding github.com/onsi/ginkgo v1.8.0
go: finding github.com/onsi/gomega v1.4.3
go: finding github.com/google/go-cmp v0.2.0
go: finding github.com/pkg/errors v0.8.0
go: finding github.com/spf13/pflag v1.0.1
go: finding gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2
go: finding gotest.tools v2.1.0+incompatible
go: finding gopkg.in/airbrake/gobrake.v2 v2.0.9
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding github.com/hpcloud/tail v1.0.0
go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding github.com/onsi/ginkgo v1.6.0
go: finding golang.org/x/text v0.3.0
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding github.com/davecgh/go-spew v1.1.0
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
go: finding github.com/stretchr/objx v0.1.0
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/golang/protobuf v1.2.0
go: downloading gotest.tools v2.1.0+incompatible
go: extracting gotest.tools v2.1.0+incompatible
go: downloading github.com/sirupsen/logrus v1.0.5
go: downloading github.com/spf13/pflag v1.0.1
go: downloading github.com/fatih/color v1.6.0
go: downloading golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading github.com/jonboulle/clockwork v0.1.0
go: downloading github.com/pkg/errors v0.8.0
go: extracting github.com/jonboulle/clockwork v0.1.0
go: extracting github.com/pkg/errors v0.8.0
go: extracting golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting github.com/sirupsen/logrus v1.0.5
go: downloading golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: downloading golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: extracting github.com/spf13/pflag v1.0.1
go: extracting github.com/fatih/color v1.6.0
go: downloading github.com/mattn/go-isatty v0.0.3
go: downloading github.com/mattn/go-colorable v0.0.9
go: extracting github.com/mattn/go-isatty v0.0.3
go: extracting github.com/mattn/go-colorable v0.0.9
go: extracting golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
Removing intermediate container b0580be2f457
 ---> f5e4a3ad4f44
Step 16/18 : RUN GOOS=linux   go build -o /usr/local/bin/test2json-linux       cmd/test2json &&     GOOS=darwin  go build -o /usr/local/bin/test2json-darwin      cmd/test2json &&     GOOS=windows go build -o /usr/local/bin/test2json-windows.exe cmd/test2json
 ---> Running in 42c69b1aeb5a
Removing intermediate container 42c69b1aeb5a
 ---> ea3f41fd58d9
Step 17/18 : RUN go get -d gopkg.in/mjibson/esc.v0 &&     cd /go/src/github.com/mjibson/esc &&     go build -v -o /usr/bin/esc . &&     rm -rf /go/src/* /go/pkg/* /go/bin/*
 ---> Running in c4d4921a5bc4
PASS e2e/linux.TestPushPullInstall (16.79s)
golang.org/x/tools/internal/semver
github.com/pkg/errors
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/go/internal/gcimporter
golang.org/x/tools/go/internal/packagesdriver
golang.org/x/tools/internal/fastwalk
golang.org/x/tools/internal/gopathwalk
golang.org/x/tools/internal/module
golang.org/x/tools/go/gcexportdata
golang.org/x/tools/go/packages
golang.org/x/tools/internal/imports
golang.org/x/tools/imports
github.com/mjibson/esc/embed
github.com/mjibson/esc
Removing intermediate container c4d4921a5bc4
 ---> 799c87310ce7
Step 18/18 : COPY . .
 ---> 4668ab9f80d1
[Warning] One or more build-args [COMMIT EXPERIMENTAL TAG ALPINE_VERSION] were not consumed
Successfully built 4668ab9f80d1
Successfully tagged docker-app-dev:jenkins-app-PR-625-1
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-625-1-coverage --network="host" -t docker-app-dev:jenkins-app-PR-625-1 make COMMIT=cdb44f1a TAG=jenkins-app-PR-625-1-coverage EXPERIMENTAL=off TEST_RESULTS_PREFIX= coverage
Running unit tests (coverage)...
CGO_ENABLED=0 gotestsum --junitfile _build/test-results/unit-coverage.xml -- -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T18:04:34Z" -cover -test.coverprofile=_build/cov/unit.out github.com/docker/app github.com/docker/app/cmd/cnab-run github.com/docker/app/cmd/docker-app github.com/docker/app/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.TestPushInstallBundle/push-bundle (4.98s)
PASS e2e/linux.TestPushInstallBundle/push-ref (1.15s)
PASS e2e/linux.TestPushInstallBundle/push-bundleref (4.38s)
PASS e2e/linux.TestPushInstallBundle (22.72s)
FAIL e2e/linux

=== Failed
=== FAIL: e2e/linux TestInit (0.12s)
    commands_test.go:130: assertion failed: 
        --- expected
        +++ actual
        @@ -1,2 +1 @@
        -Validated "app-test.dockerapp"
         
        

=== FAIL: e2e/linux TestInvokePluginFromCLI (1.93s)
    plugin_test.go:29: assertion failed: 
        --- expected
        +++ actual
        @@ -16,5 +16,4 @@
           uninstall   Uninstall an application
           upgrade     Upgrade an installed application
        -  validate    Checks the rendered application is syntactically correct
           version     Print version information
         
        


DONE 39 tests, 2 failures in 181.221s
time="2019-09-20T18:04:43Z" 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-625/1/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-625-1
Untagged: docker/cnab-app-base:jenkins-app-PR-625-1
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
Failed in branch Test Linux
WARNING: binary creates a Linux executable. Use cross for macOS or Windows.
./scripts/build/binary
Building statically linked build/docker-linux-amd64
∅  cmd/cnab-run
∅  cmd/docker-app
∅  cmd/docker-app-standalone
✓  internal (14ms)
✓  internal/compose (18ms)
✓  internal/formatter (4ms)
✓  internal/inspect (38ms)
✓  internal/commands (659ms)
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
∅  internal/log
✓  internal/packager (39ms)
✓  internal/slices (6ms)
✓  internal/store (18ms)
✓  internal/yaml (1.72s)
✓  loader (9ms)
✓  render (44ms)
✓  specification (12ms)
✓  types (19ms)
✓  types/metadata (6ms)
✓  types/parameters (4ms)

DONE 199 tests in 91.817s
CGO_ENABLED=0 go test -tags=""" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T18:04:34Z" -coverpkg="./..." -c -o _build/docker-app.cov ./cmd/docker-app
Running e2e tests (coverage)...
DOCKERAPP_BINARY=../e2e/coverage-bin CGO_ENABLED=0 gotestsum --junitfile _build/test-results/e2e-coverage.xml -- -tags="" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1-coverage -X github.com/docker/app/internal.Experimental=off -X github.com/docker/app/internal.BuildTime=2019-09-20T18:04:34Z" -v ./e2e
Removing intermediate container 31078886b4b3
 ---> 24e2ecb269aa
Step 8/18 : WORKDIR /go/src/github.com/docker/app/
 ---> Running in 33275d6e5f50
Removing intermediate container 33275d6e5f50
 ---> c5fd0cbd776c
Step 9/18 : FROM build AS dev
 ---> c5fd0cbd776c
Step 10/18 : ENV PATH=${PATH}:/go/src/github.com/docker/app/bin/
 ---> Running in 7d9d2220e5d5
Removing intermediate container 7d9d2220e5d5
 ---> ec0b05d7f410
Step 11/18 : ARG DEP_VERSION=v0.5.1
 ---> Running in 129f1f7ffc10
Removing intermediate container 129f1f7ffc10
 ---> 3c11fa877082
Step 12/18 : RUN curl -o /usr/bin/dep -L https://github.com/golang/dep/releases/download/${DEP_VERSION}/dep-linux-amd64 &&     chmod +x /usr/bin/dep
 ---> Running in 0d4d13293bfe
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   605    0   605    0     0   5307      0 --:--:-- --:--:-- --:--:--  5307

100 10.5M  100 10.5M    0     0  42.6M      0 --:--:-- --:--:-- --:--:-- 42.6M
Removing intermediate container 0d4d13293bfe
 ---> ea11c1bd2e29
Step 13/18 : ARG GOTESTSUM_VERSION=v0.3.4
 ---> Running in dc1478ce5eb7
Removing intermediate container dc1478ce5eb7
 ---> 097e18350711
Step 14/18 : ARG GOPROXY
 ---> Running in 2ed2b8347dfa
Removing intermediate container 2ed2b8347dfa
 ---> 7d0656a139dd
Step 15/18 : RUN mkdir $GOPATH/src/gotest.tools &&     git clone -q https://github.com/gotestyourself/gotestsum $GOPATH/src/gotest.tools/gotestsum &&     cd $GOPATH/src/gotest.tools/gotestsum &&     git -C $GOPATH/src/gotest.tools/gotestsum checkout -q $GOTESTSUM_VERSION &&     GO111MODULE=on GOOS=linux   go build -o /usr/local/bin/gotestsum-linux       gotest.tools/gotestsum &&     GO111MODULE=on GOOS=darwin  go build -o /usr/local/bin/gotestsum-darwin      gotest.tools/gotestsum &&     GO111MODULE=on GOOS=windows go build -o /usr/local/bin/gotestsum-windows.exe gotest.tools/gotestsum &&     ln -s gotestsum-linux /usr/local/bin/gotestsum
 ---> Running in cc4ce06f6c78
go: finding github.com/spf13/pflag v1.0.1
go: finding github.com/sirupsen/logrus v1.0.5
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/pkg/errors v0.8.0
go: finding github.com/onsi/gomega v1.4.3
go: finding github.com/google/go-cmp v0.2.0
go: finding gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2
go: finding gopkg.in/airbrake/gobrake.v2 v2.0.9
go: finding golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: finding golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: finding github.com/mattn/go-isatty v0.0.3
go: finding github.com/mattn/go-colorable v0.0.9
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding github.com/hpcloud/tail v1.0.0
go: finding github.com/jonboulle/clockwork v0.1.0
go: finding gopkg.in/yaml.v2 v2.2.1
go: finding gopkg.in/fsnotify.v1 v1.4.7
go: finding golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: finding gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: finding golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
go: finding github.com/fatih/color v1.6.0
go: finding github.com/davecgh/go-spew v1.1.0
go: finding golang.org/x/text v0.3.0
go: finding gotest.tools v2.1.0+incompatible
go: finding github.com/onsi/ginkgo v1.8.0
go: finding github.com/stretchr/objx v0.1.0
go: finding golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/golang/protobuf v1.2.0
go: finding gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
go: finding github.com/onsi/ginkgo v1.6.0
go: downloading gotest.tools v2.1.0+incompatible
go: extracting gotest.tools v2.1.0+incompatible
go: downloading github.com/pkg/errors v0.8.0
go: downloading github.com/sirupsen/logrus v1.0.5
go: downloading github.com/fatih/color v1.6.0
go: downloading golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading github.com/jonboulle/clockwork v0.1.0
go: downloading github.com/spf13/pflag v1.0.1
go: extracting github.com/jonboulle/clockwork v0.1.0
go: extracting github.com/sirupsen/logrus v1.0.5
go: downloading golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
go: extracting github.com/pkg/errors v0.8.0
go: extracting golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
go: downloading golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: downloading golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting github.com/spf13/pflag v1.0.1
go: extracting github.com/fatih/color v1.6.0
go: downloading github.com/mattn/go-isatty v0.0.3
go: downloading github.com/mattn/go-colorable v0.0.9
go: extracting github.com/mattn/go-colorable v0.0.9
go: extracting github.com/mattn/go-isatty v0.0.3
go: extracting golang.org/x/crypto v0.0.0-20180426230345-b49d69b5da94
go: extracting golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
go: extracting golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
Removing intermediate container cc4ce06f6c78
 ---> df43dc47d3c6
Step 16/18 : RUN GOOS=linux   go build -o /usr/local/bin/test2json-linux       cmd/test2json &&     GOOS=darwin  go build -o /usr/local/bin/test2json-darwin      cmd/test2json &&     GOOS=windows go build -o /usr/local/bin/test2json-windows.exe cmd/test2json
 ---> Running in b2c152754dc5
Removing intermediate container b2c152754dc5
 ---> 6b992cdb042b
Step 17/18 : RUN go get -d gopkg.in/mjibson/esc.v0 &&     cd /go/src/github.com/mjibson/esc &&     go build -v -o /usr/bin/esc . &&     rm -rf /go/src/* /go/pkg/* /go/bin/*
 ---> Running in 1a6df0be4597
golang.org/x/tools/internal/semver
github.com/pkg/errors
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/go/internal/gcimporter
golang.org/x/tools/go/internal/packagesdriver
golang.org/x/tools/internal/fastwalk
golang.org/x/tools/internal/gopathwalk
golang.org/x/tools/internal/module
golang.org/x/tools/go/gcexportdata
golang.org/x/tools/go/packages
golang.org/x/tools/internal/imports
golang.org/x/tools/imports
github.com/mjibson/esc/embed
github.com/mjibson/esc
Removing intermediate container 1a6df0be4597
 ---> 120fd19e26ea
Step 18/18 : COPY . .
 ---> 9087eaa77d7c
[Warning] One or more build-args [TAG ALPINE_VERSION COMMIT EXPERIMENTAL] were not consumed
Successfully built 9087eaa77d7c
Successfully tagged docker-app-dev:jenkins-app-PR-625-1
docker run -v /var/run:/var/run:ro --name docker-app-cov-jenkins-app-PR-625-1-coverage-experimental --network="host" -t docker-app-dev:jenkins-app-PR-625-1 make COMMIT=cdb44f1a TAG=jenkins-app-PR-625-1-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=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-09-20T18:06:57Z" -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
∅  .
∅  cmd/cnab-run
∅  cmd/docker-app
∅  cmd/docker-app-standalone
✓  internal (2ms)
✓  internal/compose (12ms)
✓  internal/formatter (14ms)
✓  internal/inspect (76ms)
✓  internal/commands (445ms)
∅  internal/formatter/driver
∅  internal/formatter/json
∅  internal/formatter/yaml
∅  internal/log
✓  internal/slices (2ms)
✓  internal/packager (31ms)
✓  internal/store (38ms)
✓  internal/yaml (1.597s)
✓  loader (9ms)
✓  render (43ms)
✓  specification (15ms)
✓  types (20ms)
✓  types/metadata (6ms)
✓  types/parameters (4ms)

DONE 199 tests in 93.729s
CGO_ENABLED=0 go test -tags=""experimental" testrunmain" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-09-20T18:06:57Z" -coverpkg="./..." -c -o _build/docker-app.cov ./cmd/docker-app
Running e2e tests (coverage)...
DOCKERAPP_BINARY=../e2e/coverage-bin CGO_ENABLED=0 gotestsum --junitfile _build/test-results/experimental-e2e-coverage.xml -- -tags="experimental" -ldflags="-s -w -X github.com/docker/app/internal.GitCommit=cdb44f1a -X github.com/docker/app/internal.Version=jenkins-app-PR-625-1-coverage-experimental -X github.com/docker/app/internal.Experimental=on -X github.com/docker/app/internal.BuildTime=2019-09-20T18:06:57Z" -v ./e2e
✖  e2e (2m46.743s)

=== Failed
=== FAIL: e2e TestInit (0.15s)
    commands_test.go:130: assertion failed: 
        --- expected
        +++ actual
        @@ -1,2 +1 @@
        -Validated "app-test.dockerapp"
         
        

=== FAIL: e2e TestInvokePluginFromCLI (0.11s)
    plugin_test.go:29: assertion failed: 
        --- expected
        +++ actual
        @@ -16,5 +16,4 @@
           uninstall   Uninstall an application
           upgrade     Upgrade an installed application
        -  validate    Checks the rendered application is syntactically correct
           version     Print version information
         
        


DONE 39 tests, 2 failures in 169.367s
make: *** [Makefile:106: coverage-test-e2e] Error 1
docker.Makefile:107: recipe for target 'coverage-run' failed
make: *** [coverage-run] Error 2
+ true
[Pipeline] sh
+ make -f docker.Makefile TAG=jenkins-app-PR-625-1-coverage coverage-results
docker cp docker-app-cov-jenkins-app-PR-625-1-coverage:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-625-1-coverage:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-625-1-coverage
docker-app-cov-jenkins-app-PR-625-1-coverage
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] archiveArtifacts
Archiving artifacts
‘_build/ci-cov/all.out’ doesn’t match anything: ‘_build’ exists but not ‘_build/ci-cov/all.out’
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/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-625/1/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-625-1-coverage
Untagged: docker/cnab-app-base:jenkins-app-PR-625-1-coverage
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
Failed in branch Coverage
✖  e2e (2m46.226s)

=== Failed
=== FAIL: e2e TestInit (0.15s)
    commands_test.go:130: assertion failed: 
        --- expected
        +++ actual
        @@ -1,2 +1 @@
        -Validated "app-test.dockerapp"
         
        

=== FAIL: e2e TestInvokePluginFromCLI (0.12s)
    plugin_test.go:29: assertion failed: 
        --- expected
        +++ actual
        @@ -16,5 +16,4 @@
           uninstall   Uninstall an application
           upgrade     Upgrade an installed application
        -  validate    Checks the rendered application is syntactically correct
           version     Print version information
         
        


DONE 39 tests, 2 failures in 168.857s
make: *** [Makefile:106: coverage-test-e2e] Error 1
docker.Makefile:107: recipe for target 'coverage-run' failed
make: *** [coverage-run] Error 2
+ true
[Pipeline] sh
+ make EXPERIMENTAL=on TEST_RESULTS_PREFIX=experimental- -f docker.Makefile TAG=jenkins-app-PR-625-1-coverage-experimental coverage-results
docker cp docker-app-cov-jenkins-app-PR-625-1-coverage-experimental:/go/src/github.com/docker/app/_build/cov/ ./_build/ci-cov
docker cp docker-app-cov-jenkins-app-PR-625-1-coverage-experimental:/go/src/github.com/docker/app/_build/test-results/ ./_build/test-results
docker rm docker-app-cov-jenkins-app-PR-625-1-coverage-experimental
docker-app-cov-jenkins-app-PR-625-1-coverage-experimental
[Pipeline] }
[Pipeline] // ansiColor
[Pipeline] }
[Pipeline] // dir
Post stage
[Pipeline] dir
Running in /home/ubuntu/workspace/app_PR-625/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-625/1/artifacts/
[Pipeline] junit
Recording test results
[Pipeline] }
[Pipeline] // dir
[Pipeline] sh
+ docker rmi docker/cnab-app-base:jenkins-app-PR-625-1-coverage-experimental
Untagged: docker/cnab-app-base:jenkins-app-PR-625-1-coverage-experimental
[Pipeline] deleteDir
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // parallel
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // timeout
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] End of Pipeline

GitHub has been notified of this commit’s build result

ERROR: script returned exit code 1
Finished: FAILURE