Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Features/e2e #315

Merged
merged 1 commit into from
Aug 16, 2018
Merged

Features/e2e #315

merged 1 commit into from
Aug 16, 2018

Conversation

cyriltovena
Copy link
Collaborator

@cyriltovena cyriltovena commented Aug 1, 2018

This is a sample of one e2e tests for #37 . This first test create a gameserver, waits for readiness, assert some values then finally ping it (send/receive).

Everything is plugged to cloud builder and run against a real gke cluster, branch will run sequentially using a consul lock within the cluster.
Flow of the runner is :

  • port-forward the internal consul api locally
  • wait for port-forward to establish
  • take a lock
  • install the current release via helm (agones images controller/sdk just built within the same pipeline)
  • run the test as normal go test using builder service account.
  • release the lock

That said there is a target if you want to run the e2e against your cluster (minikube/gke/....) from your machine.

The idea of this PR is to see if the direction is correct.

Ticket #37 has more details of remaining work to do.

Have a spin, I hope you like it.

PS: this also fixes #173

e2e runner sample output
Already have image: e2e-runner
Fetching cluster endpoint and auth data.
kubeconfig entry generated for e2e-test-cluster.
Waiting consul port-forward to launch on 8500...
Forwarding from 127.0.0.1:8500 -> 8500
consul port-forward launched. Starting e2e tests...
Handling connection for 8500
Handling connection for 8500
Setting up lock at path: LockE2E/.lock
Attempting lock acquisition
Starting handler
installing current release
\
helm upgrade --install --recreate-pods --wait --namespace=agones-system \
--set agones.image.tag=0.4.0-9e1598b,agones.image.registry=gcr.io/agones-images,agones.image.controller.pullPolicy="Always",agones.image.sdk.alwaysPull=true \
agones /go/src/agones.dev/agones/install/helm/agones/
Handling connection for 8500
Release "agones" has been upgraded. Happy Helming!
LAST DEPLOYED: Wed Aug 1 21:12:38 2018
NAMESPACE: agones-system
STATUS: DEPLOYED

RESOURCES:
==> v1/Secret
NAME TYPE DATA AGE
agones-cert Opaque 2 1h

==> v1/ServiceAccount
NAME SECRETS AGE
agones-controller 1 1h
agones-sdk 1 1h

==> v1/ClusterRole
NAME AGE
agones-controller 1h
agones-sdk 1h

==> v1/RoleBinding
NAME AGE
agones-sdk-access 1h

==> v1beta1/ValidatingWebhookConfiguration
NAME AGE
agones-validation-webhook 1h

==> v1/Pod(related)
NAME READY STATUS RESTARTS AGE
agones-controller-745568c64f-z8vwf 1/1 Running 0 5s

==> v1beta1/CustomResourceDefinition
NAME AGE
fleets.stable.agones.dev 1h
fleetallocations.stable.agones.dev 1h
gameservers.stable.agones.dev 1h
gameserversets.stable.agones.dev 1h

==> v1/ClusterRoleBinding
NAME AGE
agones-controller-access 1h

==> v1/Service
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
agones-controller-service ClusterIP 10.43.244.248 <none> 443/TCP 1h

==> v1/Deployment
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
agones-controller 1 1 1 1 1h

==> v1beta1/MutatingWebhookConfiguration
NAME AGE
agones-mutation-webhook 1h


NOTES:
The Agones controller has been installed in the namespace agones-system.

You can watch the status by running 'kubectl --namespace agones-system get pods -o wide -w agones-controller'

Once ready you can create your first GameServer using our examples:

'kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/server/gameserver.yaml'

An example GameServer that makes use of the controller:

apiVersion: "stable.agones.dev/v1alpha1"
kind: GameServer
metadata:
name: "simple-udp"
spec:
portPolicy: "dynamic"
containerPort: 7654
template:
spec:
containers:
- name: simple-udp
image: gcr.io/agones-images/udp-server:0.2

Finally don't forget to explore our documentation and usage guides on how to develop and host dedicated game servers on top of Agones. :

- [Create a Game Server](https://github.com/GoogleCloudPlatform/agones/blob/master/docs/create_gameserver.md)
- [Integrating the Game Server SDK](https://github.com/GoogleCloudPlatform/agones/tree/master/sdks)
- [GameServer Health Checking](https://github.com/GoogleCloudPlatform/agones/blob/master/docs/health_checking.md)
- [Accessing Agones via the Kubernetes API](https://github.com/GoogleCloudPlatform/agones/blob/master/docs/access_api.md)
starting e2e test
go test -v agones.dev/agones/test/e2e/... \
--kubeconfig /root/.kube/config \
--gameserver-image=gcr.io/agones-images/cpp-simple-server:0.2
=== RUN TestCreateConnect
=== PAUSE TestCreateConnect
=== CONT TestCreateConnect
--- PASS: TestCreateConnect (8.31s)
PASS
ok agones.dev/agones/test/e2e	8.385s
? agones.dev/agones/test/e2e/framework	[no test files]
Child terminated, releasing lock
Cleanup succeeded

@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: 345b7c27-67d7-45a8-b126-aa77a4d274f3

Build Logs
starting build "345b7c27-67d7-45a8-b126-aa77a4d274f3"

FETCHSOURCE
Initialized empty Git repository in /workspace/.git/
From https://source.developers.google.com/p/agones-images/r/agones
 * branch            e4f921d744fc8117c97dc3efd71a0b3bdb8be247 -> FETCH_HEAD
HEAD is now at e4f921d adds the first e2e test which create a gameserver and connect to it this also add the gcloud builder step to test it in a special e2e cluster
BUILD
Starting Step #0
Starting Step #6 - "build-e2e"
Step #6 - "build-e2e": Already have image (with digest): gcr.io/cloud-builders/docker
Step #0: Already have image (with digest): ubuntu
Step #6 - "build-e2e": Sending build context to Docker daemon  7.168kB

Step #6 - "build-e2e": Step 1/20 : FROM gcr.io/cloud-builders/gcloud-slim
Step #6 - "build-e2e": latest: Pulling from cloud-builders/gcloud-slim
Step #6 - "build-e2e": 33e0b8928960: Already exists
Step #6 - "build-e2e": 422dc07b14c8: Already exists
Step #6 - "build-e2e": 3c2cba919283: Already exists
Step #6 - "build-e2e": e908dd8c7e4c: Already exists
Step #6 - "build-e2e": Digest: sha256:401eb80c7cc0d6d90f04c87b429bcf90ad0714435f25404c25fb62a05cf0640d
Step #6 - "build-e2e": Status: Downloaded newer image for gcr.io/cloud-builders/gcloud-slim:latest
Step #6 - "build-e2e":  ---> 3e9bcfb9630d
Step #6 - "build-e2e": Step 2/20 : RUN apt-get update &&     apt-get install -y wget psmisc make python jq zip &&     apt-get clean
Finished Step #0
Starting Step #1
Step #1: Already have image (with digest): gcr.io/cloud-builders/docker
Step #6 - "build-e2e":  ---> Running in 7c3665f82f46
Step #6 - "build-e2e": Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
Step #6 - "build-e2e": Get:2 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Step #6 - "build-e2e": Get:3 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial InRelease [17.5 kB]
Step #6 - "build-e2e": Get:4 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [530 kB]
Step #6 - "build-e2e": Get:5 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main amd64 Packages [3328 B]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Step #6 - "build-e2e": Get:7 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Step #6 - "build-e2e": Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1201 kB]
Step #6 - "build-e2e": Get:9 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main Translation-en [2380 B]
Step #6 - "build-e2e": Get:10 http://security.ubuntu.com/ubuntu xenial-security/main Translation-en [227 kB]
Step #6 - "build-e2e": Get:11 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [7204 B]
Step #6 - "build-e2e": Get:12 http://security.ubuntu.com/ubuntu xenial-security/restricted Translation-en [2152 B]
Step #6 - "build-e2e": Get:13 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [362 kB]
Step #6 - "build-e2e": Get:14 http://security.ubuntu.com/ubuntu xenial-security/universe Translation-en [136 kB]
Step #6 - "build-e2e": Get:15 http://archive.ubuntu.com/ubuntu xenial/main Translation-en [568 kB]
Step #6 - "build-e2e": Get:16 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3456 B]
Step #6 - "build-e2e": Get:17 http://security.ubuntu.com/ubuntu xenial-security/multiverse Translation-en [1744 B]
Step #6 - "build-e2e": Get:18 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [8344 B]
Step #6 - "build-e2e": Get:19 http://archive.ubuntu.com/ubuntu xenial/restricted Translation-en [2908 B]
Step #6 - "build-e2e": Get:20 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [7532 kB]
Step #6 - "build-e2e": Get:21 http://archive.ubuntu.com/ubuntu xenial/universe Translation-en [4354 kB]
Step #1: Sending build context to Docker daemon  127.6MB

Step #1: Step 1/3 : FROM gcr.io/cloud-builders/docker
Step #1:  ---> bd8f6e3daf4e
Step #1: Step 2/3 : RUN apt-get install make
Step #6 - "build-e2e": Get:22 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [144 kB]
Step #6 - "build-e2e": Get:23 http://archive.ubuntu.com/ubuntu xenial/multiverse Translation-en [106 kB]
Step #6 - "build-e2e": Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [820 kB]
Step #6 - "build-e2e": Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main Translation-en [337 kB]
Step #1:  ---> Running in 0a7e4808fd83
Step #6 - "build-e2e": Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [7564 B]
Step #6 - "build-e2e": Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/restricted Translation-en [2272 B]
Step #6 - "build-e2e": Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [675 kB]
Step #6 - "build-e2e": Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [272 kB]
Step #6 - "build-e2e": Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [16.4 kB]
Step #6 - "build-e2e": Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse Translation-en [8344 B]
Step #6 - "build-e2e": Get:32 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [6744 B]
Step #6 - "build-e2e": Get:33 http://archive.ubuntu.com/ubuntu xenial-backports/main Translation-en [4180 B]
Step #6 - "build-e2e": Get:34 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7420 B]
Step #6 - "build-e2e": Get:35 http://archive.ubuntu.com/ubuntu xenial-backports/universe Translation-en [3996 B]
Step #1: Reading package lists...
Step #1: Building dependency tree...
Step #1: Reading state information...
Step #1: make is already the newest version (4.1-6).
Step #1: 0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
Step #1: Removing intermediate container 0a7e4808fd83
Step #1:  ---> caf1efa2780f
Step #1: Step 3/3 : ENTRYPOINT ["/usr/bin/make"]
Step #1:  ---> Running in 04cb5c0a2934
Step #1: Removing intermediate container 04cb5c0a2934
Step #1:  ---> 816e3cdd1b6b
Step #1: Successfully built 816e3cdd1b6b
Step #1: Successfully tagged make-docker:latest
Finished Step #1
Starting Step #2
Step #2: Already have image: make-docker
Step #2: docker pull gcr.io/agones-images/agones-build:0465c3abeb && docker tag gcr.io/agones-images/agones-build:0465c3abeb agones-build:0465c3abeb
Step #6 - "build-e2e": Fetched 17.9 MB in 4s (4262 kB/s)
Step #2: 0465c3abeb: Pulling from agones-images/agones-build
Step #2: cc1a78bfd46b: Pulling fs layer
Step #2: 65ec5fb8fee4: Pulling fs layer
Step #2: f792a8d67267: Pulling fs layer
Step #2: 9593540a662e: Pulling fs layer
Step #2: c5665f9cf3a5: Pulling fs layer
Step #2: e4c28ca52668: Pulling fs layer
Step #2: dbfd4861be3b: Pulling fs layer
Step #2: 52baa227d04b: Pulling fs layer
Step #2: 3de9e10d3c4a: Pulling fs layer
Step #2: 9593540a662e: Waiting
Step #2: 0fde949df4cb: Pulling fs layer
Step #2: bbb4ae4b3a0e: Pulling fs layer
Step #2: e7ddacc33042: Pulling fs layer
Step #2: 155337a61985: Pulling fs layer
Step #2: c5665f9cf3a5: Waiting
Step #2: 9ea3e29c33ca: Pulling fs layer
Step #2: 132215a25d02: Pulling fs layer
Step #2: e4c28ca52668: Waiting
Step #2: e1ec9832b584: Pulling fs layer
Step #2: ad2eb320baee: Pulling fs layer
Step #2: 0f40db4b1d03: Pulling fs layer
Step #2: dbfd4861be3b: Waiting
Step #2: 2e326f32948c: Pulling fs layer
Step #2: f69887a665aa: Pulling fs layer
Step #2: 784d73adfed5: Pulling fs layer
Step #2: 52baa227d04b: Waiting
Step #2: 3de9e10d3c4a: Waiting
Step #2: 48aa0c91e3f0: Pulling fs layer
Step #2: 155337a61985: Waiting
Step #2: bbb4ae4b3a0e: Waiting
Step #2: e1ec9832b584: Waiting
Step #2: 9ea3e29c33ca: Waiting
Step #2: e7ddacc33042: Waiting
Step #2: ad2eb320baee: Waiting
Step #2: 132215a25d02: Waiting
Step #2: 0f40db4b1d03: Waiting
Step #2: 784d73adfed5: Waiting
Step #2: 2e326f32948c: Waiting
Step #2: f69887a665aa: Waiting
Step #2: 48aa0c91e3f0: Waiting
Step #2: cc1a78bfd46b: Verifying Checksum
Step #2: cc1a78bfd46b: Download complete
Step #2: 9593540a662e: Verifying Checksum
Step #2: 9593540a662e: Download complete
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Building dependency tree...
Step #6 - "build-e2e": Reading state information...
Step #2: 65ec5fb8fee4: Verifying Checksum
Step #2: 65ec5fb8fee4: Download complete
Step #6 - "build-e2e": python is already the newest version (2.7.12-1~16.04).
Step #6 - "build-e2e": python set to manually installed.
Step #6 - "build-e2e": The following packages were automatically installed and are no longer required:
Step #6 - "build-e2e":   cpp cpp-5 gcc-5 libasan2 libatomic1 libc-dev-bin libc6-dev libcc1-0
Step #6 - "build-e2e":   libcilkrts5 libexpat1-dev libgcc-5-dev libgomp1 libisl15 libitm1 liblsan0
Step #6 - "build-e2e":   libmpc3 libmpfr4 libmpx0 libpython-dev libpython2.7 libpython2.7-dev
Step #6 - "build-e2e":   libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
Step #6 - "build-e2e":   python-pkg-resources python2.7-dev
Step #6 - "build-e2e": Use 'apt autoremove' to remove them.
Step #6 - "build-e2e": The following additional packages will be installed:
Step #6 - "build-e2e":   libonig2 unzip
Step #6 - "build-e2e": Suggested packages:
Step #6 - "build-e2e":   make-doc
Step #6 - "build-e2e": The following NEW packages will be installed:
Step #6 - "build-e2e":   jq libonig2 make psmisc unzip wget zip
Step #6 - "build-e2e": 0 upgraded, 7 newly installed, 0 to remove and 13 not upgraded.
Step #6 - "build-e2e": Need to get 746 kB/1046 kB of archives.
Step #6 - "build-e2e": After this operation, 3429 kB of additional disk space will be used.
Step #6 - "build-e2e": Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 psmisc amd64 22.21-2.1build1 [48.0 kB]
Step #6 - "build-e2e": Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libonig2 amd64 5.9.6-1ubuntu0.1 [86.7 kB]
Step #6 - "build-e2e": Get:3 http://archive.ubuntu.com/ubuntu xenial/universe amd64 jq amd64 1.5+dfsg-1 [144 kB]
Step #6 - "build-e2e": Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB]
Step #6 - "build-e2e": Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 unzip amd64 6.0-20ubuntu1 [158 kB]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 zip amd64 3.0-11 [158 kB]
Step #2: e4c28ca52668: Verifying Checksum
Step #2: e4c28ca52668: Download complete
Step #2: dbfd4861be3b: Download complete
Step #2: c5665f9cf3a5: Verifying Checksum
Step #2: c5665f9cf3a5: Download complete
Step #2: 3de9e10d3c4a: Verifying Checksum
Step #2: 3de9e10d3c4a: Download complete
Step #2: 0fde949df4cb: Verifying Checksum
Step #2: 0fde949df4cb: Download complete
Step #6 - "build-e2e": Fetched 746 kB in 0s (833 kB/s)
Step #2: 52baa227d04b: Verifying Checksum
Step #2: 52baa227d04b: Download complete
Step #2: bbb4ae4b3a0e: Download complete
Step #6 - "build-e2e": Selecting previously unselected package psmisc.
Step #2: cc1a78bfd46b: Pull complete
Step #2: e7ddacc33042: Verifying Checksum
Step #2: e7ddacc33042: Download complete
Step #6 - "build-e2e": (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 ... 17410 files and directories currently installed.)
Step #6 - "build-e2e": Preparing to unpack .../psmisc_22.21-2.1build1_amd64.deb ...
Step #6 - "build-e2e": Unpacking psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Selecting previously unselected package wget.
Step #6 - "build-e2e": Preparing to unpack .../wget_1.17.1-1ubuntu1.4_amd64.deb ...
Step #6 - "build-e2e": Unpacking wget (1.17.1-1ubuntu1.4) ...
Step #2: 9ea3e29c33ca: Verifying Checksum
Step #2: 9ea3e29c33ca: Download complete
Step #6 - "build-e2e": Selecting previously unselected package libonig2:amd64.
Step #6 - "build-e2e": Preparing to unpack .../libonig2_5.9.6-1ubuntu0.1_amd64.deb ...
Step #6 - "build-e2e": Unpacking libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Selecting previously unselected package jq.
Step #6 - "build-e2e": Preparing to unpack .../jq_1.5+dfsg-1_amd64.deb ...
Step #6 - "build-e2e": Unpacking jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Selecting previously unselected package make.
Step #6 - "build-e2e": Preparing to unpack .../archives/make_4.1-6_amd64.deb ...
Step #6 - "build-e2e": Unpacking make (4.1-6) ...
Step #6 - "build-e2e": Selecting previously unselected package unzip.
Step #6 - "build-e2e": Preparing to unpack .../unzip_6.0-20ubuntu1_amd64.deb ...
Step #6 - "build-e2e": Unpacking unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Selecting previously unselected package zip.
Step #6 - "build-e2e": Preparing to unpack .../archives/zip_3.0-11_amd64.deb ...
Step #6 - "build-e2e": Unpacking zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #2: 155337a61985: Verifying Checksum
Step #2: 155337a61985: Download complete
Step #2: e1ec9832b584: Download complete
Step #2: ad2eb320baee: Verifying Checksum
Step #2: ad2eb320baee: Download complete
Step #2: 132215a25d02: Verifying Checksum
Step #2: 132215a25d02: Download complete
Step #2: 2e326f32948c: Verifying Checksum
Step #2: 2e326f32948c: Download complete
Step #2: f69887a665aa: Verifying Checksum
Step #2: f69887a665aa: Download complete
Step #2: 0f40db4b1d03: Verifying Checksum
Step #2: 0f40db4b1d03: Download complete
Step #2: 784d73adfed5: Download complete
Step #2: 48aa0c91e3f0: Verifying Checksum
Step #2: 48aa0c91e3f0: Download complete
Step #2: f792a8d67267: Verifying Checksum
Step #2: f792a8d67267: Download complete
Step #6 - "build-e2e": Processing triggers for mime-support (3.59ubuntu1) ...
Step #6 - "build-e2e": Setting up psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Setting up wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Setting up libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Setting up jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Setting up make (4.1-6) ...
Step #6 - "build-e2e": Setting up unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Setting up zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #2: 65ec5fb8fee4: Pull complete
Step #6 - "build-e2e": Removing intermediate container 7c3665f82f46
Step #6 - "build-e2e":  ---> b48378ac04e8
Step #6 - "build-e2e": Step 3/20 : WORKDIR /usr/local
Step #6 - "build-e2e": Removing intermediate container 1c5c169d4cef
Step #6 - "build-e2e":  ---> 726202ed75c2
Step #6 - "build-e2e": Step 4/20 : ENV GO_VERSION=1.10.3
Step #6 - "build-e2e":  ---> Running in 35fdca034a15
Step #6 - "build-e2e": Removing intermediate container 35fdca034a15
Step #6 - "build-e2e":  ---> cf15bf59b56b
Step #6 - "build-e2e": Step 5/20 : ENV GOPATH /go
Step #6 - "build-e2e":  ---> Running in 5c45a3c863fa
Step #6 - "build-e2e": Removing intermediate container 5c45a3c863fa
Step #6 - "build-e2e":  ---> 05d8ad9d1be9
Step #6 - "build-e2e": Step 6/20 : RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz &&     tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}
Step #6 - "build-e2e":  ---> Running in f895b249d9b1
Step #2: f792a8d67267: Pull complete
Step #6 - "build-e2e": Removing intermediate container f895b249d9b1
Step #6 - "build-e2e":  ---> 5ec6e83fefa7
Step #6 - "build-e2e": Step 7/20 : ENV PATH /usr/local/go/bin:/go/bin:$PATH
Step #6 - "build-e2e":  ---> Running in 9c0a2965a837
Step #6 - "build-e2e": Removing intermediate container 9c0a2965a837
Step #6 - "build-e2e":  ---> d25caddf051e
Step #6 - "build-e2e": Step 8/20 : ENV KUBECTL_VER 1.11.0
Step #6 - "build-e2e":  ---> Running in ffc5bedb1fc5
Step #6 - "build-e2e": Removing intermediate container ffc5bedb1fc5
Step #6 - "build-e2e":  ---> ad3b1b28a980
Step #6 - "build-e2e": Step 9/20 : RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &&     chmod go+rx ./kubectl &&     mv ./kubectl /usr/local/bin/kubectl
Step #6 - "build-e2e":  ---> Running in fdcdb0196e1b
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 52.8M  100 52.8M    0     0  80.6M      0 --:--:-- --:--:-- --:--:-- 80.6M
Step #2: 9593540a662e: Pull complete
Step #6 - "build-e2e": �[0mRemoving intermediate container fdcdb0196e1b
Step #6 - "build-e2e":  ---> bf963f7d2e45
Step #6 - "build-e2e": Step 10/20 : ENV HELM_VER 2.9.1
Step #6 - "build-e2e":  ---> Running in 8abf9026be56
Step #6 - "build-e2e": Removing intermediate container 8abf9026be56
Step #6 - "build-e2e":  ---> 7a05c852dec0
Step #6 - "build-e2e": Step 11/20 : ENV HELM_URL https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VER}-linux-amd64.tar.gz
Step #6 - "build-e2e":  ---> Running in e4e783f13667
Step #6 - "build-e2e": Removing intermediate container e4e783f13667
Step #6 - "build-e2e":  ---> 09b29da51f2c
Step #6 - "build-e2e": Step 12/20 : RUN curl -L  ${HELM_URL} > /tmp/helm.tar.gz     && tar -zxvf /tmp/helm.tar.gz -C /tmp     && mv /tmp/linux-amd64/helm /usr/local/bin/helm     && chmod go+rx /usr/local/bin/helm     && rm /tmp/helm.tar.gz && rm -rf /tmp/linux-amd64
Step #6 - "build-e2e":  ---> Running in 4cf01c042ef9
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time  �[0m�[91m   Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
  0     0    0     0   �[0m�[91m 0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 8946k  100 8946k    0     0  38.4M      0 --:--:-- --:--:-- --:--:-- 38.4�[0m�[91mM
Step #6 - "build-e2e": �[0mlinux-amd64/
Step #6 - "build-e2e": linux-amd64/README.md
Step #6 - "build-e2e": linux-amd64/helm
Step #6 - "build-e2e": linux-amd64/LICENSE
Step #6 - "build-e2e": Removing intermediate container 4cf01c042ef9
Step #6 - "build-e2e":  ---> 4a9f507055a4
Step #6 - "build-e2e": Step 13/20 : ENV CONSUL_VERSION=1.2.1
Step #6 - "build-e2e":  ---> Running in ab80f41c0aaa
Step #6 - "build-e2e": Removing intermediate container ab80f41c0aaa
Step #6 - "build-e2e":  ---> 240f9da72216
Step #6 - "build-e2e": Step 14/20 : ENV HASHICORP_RELEASES=https://releases.hashicorp.com
Step #6 - "build-e2e":  ---> Running in 954db464070a
Step #6 - "build-e2e": Removing intermediate container 954db464070a
Step #6 - "build-e2e":  ---> 4e1b3b17196d
Step #6 - "build-e2e": Step 15/20 : RUN mkdir -p /tmp/build &&     wget ${HASHICORP_RELEASES}/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip     -P /tmp/build/  &&     unzip -d /usr/local/bin/ /tmp/build/consul_${CONSUL_VERSION}_linux_amd64.zip &&     cd /tmp &&     rm -rf /tmp/build &&     chmod go+rx /usr/local/bin/consul &&     consul version
Step #6 - "build-e2e":  ---> Running in ffe0e86317a8
Step #6 - "build-e2e": �[91m--2018-08-01 21:18:18--  https://releases.hashicorp.com/consul/1.2.1/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e": �[0m�[91mResolving releases.hashicorp.com (releases.hashicorp.com)... �[0m�[91m151.101.1.183, 151.101.65.183, 151.101.129.183, ...
Step #6 - "build-e2e": Connecting to releases.hashicorp.com (releases.hashicorp.com)|151.101.1.183|:443... �[0m�[91mconnected.
Step #6 - "build-e2e": �[0m�[91mHTTP request sent, awaiting response... �[0m�[91m200 OK
Step #6 - "build-e2e": Length: 14529496 (14M) [application/zip]
Step #6 - "build-e2e": �[0m�[91mSaving to: '/tmp/build/consul_1.2.1_linux_amd64.zip'
Step #6 - "build-e2e": �[0m�[91m
Step #6 - "build-e2e":      0K ..........�[0m�[91m ..�[0m�[91m...�[0m�[91m...�[0m�[91m.. ..�[0m�[91m.....�[0m�[91m... ...�[0m�[91m...�[0m�[91m.... ..�[0m�[91m...�[0m�[91m.....  0% 2.25M 6s�[0m�[91m
Step #6 - "build-e2e":     50K .....�[0m�[91m..... ..�[0m�[91m.....�[0m�[91m... ........�[0m�[91m.. ...�[0m�[91m...�[0m�[91m.... ....�[0m�[91m.....�[0m�[91m.  0% 5.26M 4s
Step #6 - "build-e2e":    100K ..�[0m�[91m...�[0m�[91m..... ..�[0m�[91m........ ........�[0m�[91m.. ..........�[0m�[91m ....�[0m�[91m......  1% 11.5M 3s
Step #6 - "build-e2e":    150K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  1% 7.19M 3s
Step #6 - "build-e2e":    200K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  1% 13.2M 3s
Step #6 - "build-e2e":    250K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  2% 8.00M 2s
Step #6 - "build-e2e":    300K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  2% 14.7M 2s
Step #6 - "build-e2e":    350K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........  2% 7.54M 2s�[0m�[91m
Step #6 - "build-e2e":    400K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  3% 10.4M 2s
Step #6 - "build-e2e":    450K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m....  3% 8.92M 2s
Step #6 - "build-e2e":    500K .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m......�[0m�[91m  3% 21.6M 2s
Step #6 - "build-e2e":    550K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  4% 11.2M 2s
Step #6 - "build-e2e":    600K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  4% 9.79M 2s
Step #6 - "build-e2e":    650K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  4% 13.0M 2s
Step #6 - "build-e2e":    700K ...�[0m�[91m.�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  5% 16.9M 2s
Step #6 - "build-e2e":    750K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .........�[0m�[91m.  5% 10.6M 2s�[0m�[91m
Step #6 - "build-e2e":    800K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  5% 10.9M 2s
Step #6 - "build-e2e":    850K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m....  6% 10.4M 2s
Step #6 - "build-e2e":    900K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  6% 18.1M 1s
Step #6 - "build-e2e":    950K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  7% 13.7M 1s�[0m�[91m
Step #6 - "build-e2e":   1000K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  7% 11.0M 1s
Step #6 - "build-e2e":   1050K .�[0m�[91m.....�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m....  7% 16.8M 1s
Step #6 - "build-e2e":   1100K ....�[0m�[91m...... ..�[0m�[91m........ .......... ......�[0m�[91m.... ..........  8% 15.5M 1s
Step #6 - "build-e2e":   1150K ..�[0m�[91m........ .......�[0m�[91m.�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........  8% 12.1M 1s�[0m�[91m
Step #6 - "build-e2e":   1200K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  8% 11.7M 1s
Step #6 - "build-e2e":   1250K .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m....  9% 10.5M 1s
Step #6 - "build-e2e":   1300K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  9% 23.0M 1s
Step #6 - "build-e2e":   1350K ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........  9% 17.0M 1s
Step #6 - "build-e2e":   1400K ........�[0m�[91m.. .......... ....�[0m�[91m...... ......�[0m�[91m....�[0m�[91m .......... 10% 17.8M 1s�[0m�[91m
Step #6 - "build-e2e":   1450K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 10% 12.4M 1s
Step #6 - "build-e2e":   1500K ..�[0m�[91m..�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 10% 18.5M 1s
Step #6 - "build-e2e":   1550K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 11% 17.9M 1s�[0m�[91m
Step #6 - "build-e2e":   1600K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... 11% 13.7M 1s�[0m�[91m
Step #6 - "build-e2e":   1650K .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 11% 12.6M 1s
Step #6 - "build-e2e":   1700K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 12% 27.7M 1s
Step #6 - "build-e2e":   1750K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 12% 20.5M 1s�[0m�[91m
Step #6 - "build-e2e":   1800K ......�[0m�[91m..�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 13%�[0m�[91m 12.7M 1s
Step #6 - "build-e2e":   1850K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ........�[0m�[91m.. 13%�[0m�[91m 15.3M 1s
Step #6 - "build-e2e":   1900K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ..........�[0m�[91m 13% 33.8M 1s
Step #6 - "build-e2e":   1950K ..�[0m�[91m........ ......�[0m�[91m..�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m 14% 11.7M 1s�[0m�[91m
Step #6 - "build-e2e":   2000K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ .......�[0m�[91m.�[0m�[91m.. 14%�[0m�[91m 18.1M 1s
Step #6 - "build-e2e":   2050K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 14% 17.7M 1s
Step #6 - "build-e2e":   2100K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... 15% 26.9M 1s
Step #6 - "build-e2e":   2150K ..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m....�[0m�[91m .......... .......... .......... ..�[0m�[91m........ 15% 12.5M 1s
Step #6 - "build-e2e":   2200K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 15% 28.1M 1s
Step #6 - "build-e2e":   2250K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 16% 17.2M 1s
Step #6 - "build-e2e":   2300K .......... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 16% 27.3M 1s
Step #6 - "build-e2e":   2350K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 16% 12.9M 1s�[0m�[91m
Step #6 - "build-e2e":   2400K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 17% 19.4M 1s
Step #6 - "build-e2e":   2450K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 17% 29.0M 1s
Step #6 - "build-e2e":   2500K ....�[0m�[91m...... ..�[0m�[91m........ ..�[0m�[91m......�[0m�[91m.. .......... �[0m�[91m...�[0m�[91m.�[0m�[91m...... 17% 20.5M 1s
Step #6 - "build-e2e":   2550K .......... .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 18% 14.3M 1s�[0m�[91m
Step #6 - "build-e2e":   2600K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 18% 24.4M 1s
Step #6 - "build-e2e":   2650K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 19% 27.0M 1s
Step #6 - "build-e2e":   2700K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 19%�[0m�[91m 20.0M 1s
Step #6 - "build-e2e":   2750K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 19% 15.4M 1s�[0m�[91m
Step #6 - "build-e2e":   2800K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 20% 23.2M 1s
Step #6 - "build-e2e":   2850K .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 20% 20.5M 1s
Step #6 - "build-e2e":   2900K ....�[0m�[91m...... ..�[0m�[91m........ .......... .......... .......... 20% 54.3M 1s
Step #6 - "build-e2e":   2950K .......... .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 21% 20.3M 1s
Step #6 - "build-e2e":   3000K �[0m�[91m........�[0m�[91m.�[0m�[91m. .�[0m�[91m...�[0m�[91m..�[0m�[91m...�[0m�[91m. ....�[0m�[91m...... ..........�[0m�[91m .......... 21% 15.1M 1s
Step #6 - "build-e2e":   3050K ......�[0m�[91m.... ....�[0m�[91m...... .......... ........�[0m�[91m.. .......... 21% 23.1M 1s
Step #6 - "build-e2e":   3100K ....�[0m�[91m..�[0m�[91m...�[0m�[91m. ..�[0m�[91m..�[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m .......... ......�[0m�[91m.... ........�[0m�[91m.. 22% 28.0M 1s
Step #6 - "build-e2e":   3150K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... ........�[0m�[91m.. 22% 20.5M 1s�[0m�[91m
Step #6 - "build-e2e":   3200K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 22% 16.2M 1s
Step #6 - "build-e2e":   3250K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... .�[0m�[91m.....�[0m�[91m.... 23% 26.8M 1s
Step #6 - "build-e2e":   3300K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 23% 28.8M 1s
Step #6 - "build-e2e":   3350K ..�[0m�[91m........�[0m�[91m .......... .......... .......... .......... 23% 36.7M 1s
Step #6 - "build-e2e":   3400K .......... .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 24% 20.9M 1s
Step #6 - "build-e2e":   3450K .......... ..�[0m�[91m........ ..�[0m�[91m........ .......�[0m�[91m.�[0m�[91m.. .......... 24%�[0m�[91m 29.6M 1s
Step #6 - "build-e2e":   3500K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 25% 18.2M 1s
Step #6 - "build-e2e":   3550K ..�[0m�[91m........ ........�[0m�[91m.. .......... ..�[0m�[91m..�[0m�[91m...... ..�[0m�[91m........ 25% 26.8M 1s�[0m�[91m
Step #6 - "build-e2e":   3600K .......... ......�[0m�[91m.... .......... ..�[0m�[91m.�[0m�[91m.......�[0m�[91m .......... 25% 28.1M 1s
Step #6 - "build-e2e":   3650K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 26% 22.4M 1s
Step #6 - "build-e2e":   3700K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 26% 31.5M 1s
Step #6 - "build-e2e":   3750K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 26% 20.3M 1s�[0m�[91m
Step #6 - "build-e2e":   3800K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 27%�[0m�[91m 21.6M 1s
Step #6 - "build-e2e":   3850K .......... .........�[0m�[91m. ..�[0m�[91m........ ........�[0m�[91m.. .......... 27% 31.0M 1s
Step #6 - "build-e2e":   3900K�[0m�[91m ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 27% 33.9M 1s
Step #6 - "build-e2e":   3950K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 28% 34.0M 1s�[0m�[91m
Step #6 - "build-e2e":   4000K .......... ......�[0m�[91m.... .......... .�[0m�[91m.�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 28% 18.6M 1s
Step #6 - "build-e2e":   4050K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 28% 46.8M 1s
Step #6 - "build-e2e":   4100K .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 29% 19.2M 1s
Step #6 - "build-e2e":   4150K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m......�[0m�[91m ..�[0m�[91m........ 29% 20.9M 1s
Step #6 - "build-e2e":   4200K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 29% 67.5M 1s
Step #6 - "build-e2e":   4250K ...�[0m�[91m...�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... 30% 24.0M 1s
Step #6 - "build-e2e":   4300K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........�[0m�[91m 30% 28.1M 1s
Step #6 - "build-e2e":   4350K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m 31% 15.9M 1s
Step #6 - "build-e2e":   4400K ........�[0m�[91m.. ......�[0m�[91m.... .........�[0m�[91m. ..�[0m�[91m.....�[0m�[91m... ........�[0m�[91m.. 31% 25.1M 1s
Step #6 - "build-e2e":   4450K .......... .......... ..�[0m�[91m........�[0m�[91m .......... .......... 31% 68.1M 1s
Step #6 - "build-e2e":   4500K .......... .......... .......... .......... .......... 32% 62.3M 1s
Step #6 - "build-e2e":   4550K .......... .......... .......... .......... .......... 32% 23.1M 1s
Step #6 - "build-e2e":   4600K .......... .......... .......... ..........�[0m�[91m .......... 32%�[0m�[91m 21.4M 1s
Step #6 - "build-e2e":   4650K .....�[0m�[91m.�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 33% 69.2M 1s
Step #6 - "build-e2e":   4700K ...�[0m�[91m.�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ..�[0m�[91m....�[0m�[91m.... ....�[0m�[91m...... 33% 24.1M 1s
Step #6 - "build-e2e":   4750K .......... ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ 33% 27.5M 1s�[0m�[91m
Step #6 - "build-e2e":   4800K .......... ......�[0m�[91m.�[0m�[91m... ....�[0m�[91m....�[0m�[91m.. ..�[0m�[91m........ ........�[0m�[91m.. 34% 35.8M�[0m�[91m 1s
Step #6 - "build-e2e":   4850K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 34% 25.7M 1s
Step #6 - "build-e2e":   4900K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 34% 59.6M 1s
Step #6 - "build-e2e":   4950K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 35% 28.1M 1s�[0m�[91m
Step #6 - "build-e2e":   5000K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........�[0m�[91m 35% 20.5M 1s
Step #6 - "build-e2e":   5050K ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. .......... 35% 24.3M 1s
Step #6 - "build-e2e":   5100K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 36% 75.1M�[0m�[91m 1s
Step #6 - "build-e2e":   5150K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 36% 31.3M 1s
Step #6 - "build-e2e":   5200K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 37% 30.5M 1s
Step #6 - "build-e2e":   5250K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... .......�[0m�[91m..�[0m�[91m. 37% 24.7M 1s
Step #6 - "build-e2e":   5300K ....�[0m�[91m...... ..�[0m�[91m..�[0m�[91m.....�[0m�[91m. ........�[0m�[91m.. .......... .�[0m�[91m...�[0m�[91m...... 37% 20.8M 1s
Step #6 - "build-e2e":   5350K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... .......... �[0m�[91m..�[0m�[91m........ 38% 78.0M 1s�[0m�[91m
Step #6 - "build-e2e":   5400K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 38%�[0m�[91m 24.9M 1s
Step #6 - "build-e2e":   5450K ..�[0m�[91m....�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 38% 63.9M 0s
Step #6 - "build-e2e":   5500K ....�[0m�[91m...... .......... .�[0m�[91m.......�[0m�[91m.. ......�[0m�[91m.... .......... 39% 34.9M 0s
Step #6 - "build-e2e":   5550K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m 39% 46.7M 0s�[0m�[91m
Step #6 - "build-e2e":   5600K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 39% 23.4M 0s
Step #6 - "build-e2e":   5650K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 40% 20.4M 0s
Step #6 - "build-e2e":   5700K .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 40% 72.4M 0s
Step #6 - "build-e2e":   5750K �[0m�[91m..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 40% 25.6M 0s�[0m�[91m
Step #6 - "build-e2e":   5800K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 41% 62.3M 0s
Step #6 - "build-e2e":   5850K ......�[0m�[91m.... .......... ..�[0m�[91m...�[0m�[91m..�[0m�[91m... ........�[0m�[91m.. .......... 41%�[0m�[91m 36.6M 0s
Step #6 - "build-e2e":   5900K .......... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 41% 44.6M 0s
Step #6 - "build-e2e":   5950K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 42% 44.5M 0s�[0m�[91m
Step #6 - "build-e2e":   6000K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 42% 30.5M 0s
Step #6 - "build-e2e":   6050K ......�[0m�[91m.... ....�[0m�[91m.....�[0m�[91m. ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 42% 28.5M 0s
Step #6 - "build-e2e":   6100K .......... ..�[0m�[91m........ .....�[0m�[91m...�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 43% 25.8M 0s
Step #6 - "build-e2e":   6150K ....�[0m�[91m......�[0m�[91m ........�[0m�[91m.. ....�[0m�[91m..�[0m�[91m.... .......... ..�[0m�[91m........ 43% 63.7M 0s�[0m�[91m
Step #6 - "build-e2e":   6200K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 44% 38.1M 0s
Step #6 - "build-e2e":   6250K ..�[0m�[91m....�[0m�[91m.... .......�[0m�[91m... ..�[0m�[91m........ ........�[0m�[91m.. .......... 44% 27.6M 0s
Step #6 - "build-e2e":   6300K .......... .......... .......... ......�[0m�[91m.... .......... 44% 91.5M 0s
Step #6 - "build-e2e":   6350K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 45% 64.2M 0s�[0m�[91m
Step #6 - "build-e2e":   6400K .......... ......�[0m�[91m.... .......... .......... .......... 45% 26.9M 0s
Step #6 - "build-e2e":   6450K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 45% 21.1M 0s
Step #6 - "build-e2e":   6500K�[0m�[91m ....�[0m�[91m...... .......... .......... .......... ....�[0m�[91m...... 46% 24.5M 0s
Step #6 - "build-e2e":   6550K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 46%  114M 0s
Step #6 - "build-e2e":   6600K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ .......... 46%�[0m�[91m 52.1M 0s
Step #6 - "build-e2e":   6650K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 47% 42.8M�[0m�[91m 0s
Step #6 - "build-e2e":   6700K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 47%�[0m�[91m 40.2M 0s
Step #6 - "build-e2e":   6750K ..�[0m�[91m........ ..�[0m�[91m......�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ 47% 51.2M 0s�[0m�[91m
Step #6 - "build-e2e":   6800K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 48% 36.5M 0s
Step #6 - "build-e2e":   6850K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 48% 21.1M 0s
Step #6 - "build-e2e":   6900K �[0m�[91m....�[0m�[91m...... ..�[0m�[91m........ .....�[0m�[91m...�[0m�[91m.. .......... ....�[0m�[91m...... 48% 23.1M 0s
Step #6 - "build-e2e":   6950K ..........�[0m�[91m .......... ......�[0m�[91m.�[0m�[91m... ....�[0m�[91m...... ..�[0m�[91m........ 49% 63.1M 0s�[0m�[91m
Step #6 - "build-e2e":   7000K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ..........�[0m�[91m 49% 59.7M 0s
Step #6 - "build-e2e":   7050K ..�[0m�[91m..�[0m�[91m..�[0m�[91m.... .......... ..........�[0m�[91m .......... ......�[0m�[91m.... 50% 97.3M 0s
Step #6 - "build-e2e":   7100K ....�[0m�[91m...... ..........�[0m�[91m .......... .......... .......... 50% 37.3M 0s
Step #6 - "build-e2e":   7150K .......... ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 50% 42.3M 0s�[0m�[91m
Step #6 - "build-e2e":   7200K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 51% 31.2M 0s
Step #6 - "build-e2e":   7250K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 51% 27.9M 0s
Step #6 - "build-e2e":   7300K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......�[0m�[91m.�[0m�[91m.. .......... ....�[0m�[91m...... 51%  117M 0s
Step #6 - "build-e2e":   7350K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... .......... 52% 22.7M 0s�[0m�[91m
Step #6 - "build-e2e":   7400K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 52%�[0m�[91m 87.7M 0s
Step #6 - "build-e2e":   7450K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 52% 49.1M 0s
Step #6 - "build-e2e":   7500K�[0m�[91m ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 53%�[0m�[91m 68.0M 0s
Step #6 - "build-e2e":   7550K ..�[0m�[91m........ .�[0m�[91m.......�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 53% 47.8M 0s
Step #6 - "build-e2e":   7600K .......... .....�[0m�[91m.�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ..�[0m�[91m......�[0m�[91m.. 53% 32.4M 0s
Step #6 - "build-e2e":   7650K ..�[0m�[91m....�[0m�[91m.... .......... ..........�[0m�[91m .......... ......�[0m�[91m.... 54% 39.5M 0s
Step #6 - "build-e2e":   7700K ....�[0m�[91m...... ..�[0m�[91m........ .�[0m�[91m.......�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 54% 97.9M 0s
Step #6 - "build-e2e":   7750K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 54% 30.7M 0s�[0m�[91m
Step #6 - "build-e2e":   7800K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 55% 24.0M 0s
Step #6 - "build-e2e":   7850K ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. ......�[0m�[91m.... 55%�[0m�[91m 55.3M 0s
Step #6 - "build-e2e":   7900K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ...�[0m�[91m...�[0m�[91m.... ..........�[0m�[91m 56% 80.9M 0s
Step #6 - "build-e2e":   7950K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 56% 53.2M 0s�[0m�[91m
Step #6 - "build-e2e":   8000K .......... �[0m�[91m......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 56% 43.9M 0s
Step #6 - "build-e2e":   8050K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 57% 33.7M 0s
Step #6 - "build-e2e":   8100K ....�[0m�[91m...... ........�[0m�[91m..�[0m�[91m .......... ..........�[0m�[91m ....�[0m�[91m...... 57% 40.4M 0s
Step #6 - "build-e2e":   8150K ..........�[0m�[91m .......... ......�[0m�[91m.... ..�[0m�[91m..�[0m�[91m...... ..�[0m�[91m....�[0m�[91m.... 57%�[0m�[91m  140M 0s�[0m�[91m
Step #6 - "build-e2e":   8200K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 58% 37.1M 0s
Step #6 - "build-e2e":   8250K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 58% 37.8M 0s
Step #6 - "build-e2e":   8300K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 58% 24.2M 0s
Step #6 - "build-e2e":   8350K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 59% 49.0M 0s�[0m�[91m
Step #6 - "build-e2e":   8400K .......... .......... .......... .......... ........�[0m�[91m.. 59% 63.9M 0s
Step #6 - "build-e2e":   8450K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... .�[0m�[91m.....�[0m�[91m.... 59%  168M 0s�[0m�[91m
Step #6 - "build-e2e":   8500K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 60% 49.1M 0s
Step #6 - "build-e2e":   8550K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 60% 34.3M 0s�[0m�[91m
Step #6 - "build-e2e":   8600K .......�[0m�[91m.�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 60% 45.2M 0s
Step #6 - "build-e2e":   8650K .....�[0m�[91m.�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 61%  157M 0s
Step #6 - "build-e2e":   8700K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 61% 37.9M 0s
Step #6 - "build-e2e":   8750K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .�[0m�[91m......... 62% 52.4M 0s�[0m�[91m
Step #6 - "build-e2e":   8800K ........�[0m�[91m.. .......... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 62% 22.1M�[0m�[91m 0s
Step #6 - "build-e2e":   8850K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 62% 65.2M 0s
Step #6 - "build-e2e":   8900K ....�[0m�[91m...... ..�[0m�[91m........ ....�[0m�[91m....�[0m�[91m.. ....�[0m�[91m..�[0m�[91m.... ....�[0m�[91m...... 63%  131M 0s
Step #6 - "build-e2e":   8950K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ..�[0m�[91m....�[0m�[91m.... .....�[0m�[91m..... ..�[0m�[91m........ 63% 67.3M 0s�[0m�[91m
Step #6 - "build-e2e":   9000K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 63% 45.5M 0s
Step #6 - "build-e2e":   9050K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... 64% 32.5M 0s
Step #6 - "build-e2e":   9100K .......... .�[0m�[91m.........�[0m�[91m .......... .......... .......... 64%  181M 0s
Step #6 - "build-e2e":   9150K ..�[0m�[91m........ .......... .......... ....�[0m�[91m...... .......... 64%�[0m�[91m 61.2M 0s�[0m�[91m
Step #6 - "build-e2e":   9200K .......... ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. 65% 30.9M 0s
Step #6 - "build-e2e":   9250K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 65% 52.3M 0s
Step #6 - "build-e2e":   9300K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ....�[0m�[91m...... .�[0m�[91m...�[0m�[91m...... 65% 25.2M 0s
Step #6 - "build-e2e":   9350K ..........�[0m�[91m .......... .......... ....�[0m�[91m...... ..�[0m�[91m........ 66% 99.4M 0s
Step #6 - "build-e2e":   9400K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 66% 46.9M 0s
Step #6 - "build-e2e":   9450K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 66%  107M 0s
Step #6 - "build-e2e":   9500K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 67% 45.7M�[0m�[91m 0s
Step #6 - "build-e2e":   9550K ..........�[0m�[91m ......�[0m�[91m..�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ 67%  125M 0s�[0m�[91m
Step #6 - "build-e2e":   9600K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 68% 30.2M 0s
Step #6 - "build-e2e":   9650K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 68% 82.0M�[0m�[91m 0s
Step #6 - "build-e2e":   9700K .......... ..�[0m�[91m........ ......�[0m�[91m..�[0m�[91m.. .......... .......... 68% 30.5M 0s
Step #6 - "build-e2e":   9750K �[0m�[91m..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 69% 54.2M 0s�[0m�[91m
Step #6 - "build-e2e":   9800K ........�[0m�[91m.. .......... .�[0m�[91m......... ..........�[0m�[91m .......... 69%  136M 0s
Step #6 - "build-e2e":   9850K ...�[0m�[91m...�[0m�[91m.... .......... .........�[0m�[91m. .......... .......... 69% 25.8M 0s
Step #6 - "build-e2e":   9900K ....�[0m�[91m...... .......... .......... .......... ....�[0m�[91m...... 70% 36.7M 0s
Step #6 - "build-e2e":   9950K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 70%  138M 0s�[0m�[91m
Step #6 - "build-e2e":  10000K .......... ......�[0m�[91m.... ....�[0m�[91m...... �[0m�[91m.......... .......�[0m�[91m.�[0m�[91m.. 70% 35.1M 0s
Step #6 - "build-e2e":  10050K ..........�[0m�[91m ....�[0m�[91m...... ..�[0m�[91m........ .......... ......�[0m�[91m.... 71%  165M 0s
Step #6 - "build-e2e":  10100K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ..�[0m�[91m..�[0m�[91m...... 71% 99.7M 0s
Step #6 - "build-e2e":  10150K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 71% 58.1M 0s�[0m�[91m
Step #6 - "build-e2e":  10200K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 72% 47.9M 0s
Step #6 - "build-e2e":  10250K .......... .......... .......... .......... .......... 72%  174M 0s
Step #6 - "build-e2e":  10300K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 72% 35.2M 0s
Step #6 - "build-e2e":  10350K ..�[0m�[91m........ .......... .......... .......... .......... 73% 62.8M 0s
Step #6 - "build-e2e":  10400K .......... .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 73% 25.6M 0s
Step #6 - "build-e2e":  10450K .......... ....�[0m�[91m...... .......... .......... ......�[0m�[91m.... 74% 35.6M 0s
Step #6 - "build-e2e":  10500K .......... .......... .......... .......... ....�[0m�[91m...... 74% 88.7M 0s
Step #6 - "build-e2e":  10550K ..�[0m�[91m........�[0m�[91m .......... .......... �[0m�[91m.......... ..�[0m�[91m........ 74%  136M 0s
Step #6 - "build-e2e":  10600K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 75% 41.9M 0s
Step #6 - "build-e2e":  10650K ..�[0m�[91m....�[0m�[91m.... .......... ..�[0m�[91m........ ......�[0m�[91m..�[0m�[91m.. .......... 75%  103M 0s
Step #6 - "build-e2e":  10700K ....�[0m�[91m...... .......... ........�[0m�[91m.. ......�[0m�[91m.... .......... 75% 60.8M 0s
Step #6 - "build-e2e":  10750K .......... .......... .......... .......... .......... 76%  175M 0s
Step #6 - "build-e2e":  10800K .......... .......... .......... .......... .......... 76% 50.8M 0s
Step #6 - "build-e2e":  10850K .......... .......... ..�[0m�[91m........�[0m�[91m .......... .......... 76% 32.4M 0s
Step #6 - "build-e2e":  10900K ....�[0m�[91m...... .......... ........�[0m�[91m.. .......... ....�[0m�[91m...... 77% 66.7M 0s
Step #6 - "build-e2e":  10950K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 77% 25.5M 0s
Step #6 - "build-e2e":  11000K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 77%  114M 0s
Step #6 - "build-e2e":  11050K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .�[0m�[91m.�[0m�[91m........ 78% 31.9M 0s
Step #6 - "build-e2e":  11100K ....�[0m�[91m...... .......... .......... .......... .......... 78%  141M 0s
Step #6 - "build-e2e":  11150K .......... .......... .......... ....�[0m�[91m...... ..�[0m�[91m........ 78% 47.6M 0s�[0m�[91m
Step #6 - "build-e2e":  11200K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 79%  106M 0s
Step #6 - "build-e2e":  11250K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 79%  181M 0s
Step #6 - "build-e2e":  11300K ....�[0m�[91m...... ..�[0m�[91m........ .....�[0m�[91m..... ..�[0m�[91m........ .......... 79% 61.8M�[0m�[91m 0s
Step #6 - "build-e2e":  11350K ..�[0m�[91m.....�[0m�[91m...�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m.�[0m�[91m..... ..�[0m�[91m........ 80% 58.1M 0s�[0m�[91m
Step #6 - "build-e2e":  11400K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 80% 62.5M 0s
Step #6 - "build-e2e":  11450K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 81%  168M 0s�[0m�[91m
Step #6 - "build-e2e":  11500K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ........�[0m�[91m.. .......... 81% 53.0M�[0m�[91m 0s
Step #6 - "build-e2e":  11550K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 81% 65.3M 0s
Step #6 - "build-e2e":  11600K .......... .......... .......... ..�[0m�[91m........ ........�[0m�[91m.. 82% 28.7M 0s
Step #6 - "build-e2e":  11650K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .........�[0m�[91m. .....�[0m�[91m.�[0m�[91m.... 82% 30.0M 0s
Step #6 - "build-e2e":  11700K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 82%  108M 0s
Step #6 - "build-e2e":  11750K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 83%  112M 0s�[0m�[91m
Step #6 - "build-e2e":  11800K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 83% 53.0M 0s
Step #6 - "build-e2e":  11850K ....�[0m�[91m...... ....�[0m�[91m...... .......... ........�[0m�[91m.. ......�[0m�[91m.... 83%  103M 0s
Step #6 - "build-e2e":  11900K ....�[0m�[91m...... ..........�[0m�[91m .......... ....�[0m�[91m..�[0m�[91m.... .......... 84%  137M 0s
Step #6 - "build-e2e":  11950K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ 84% 67.9M 0s�[0m�[91m
Step #6 - "build-e2e":  12000K ....�[0m�[91m....�[0m�[91m.. ......�[0m�[91m.... ..........�[0m�[91m ..�[0m�[91m........ ........�[0m�[91m.. 84% 60.4M 0s
Step #6 - "build-e2e":  12050K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 85% 68.5M 0s
Step #6 - "build-e2e":  12100K ..........�[0m�[91m ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... 85% 50.1M 0s
Step #6 - "build-e2e":  12150K ..�[0m�[91m........ .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 85%  118M 0s�[0m�[91m
Step #6 - "build-e2e":  12200K ........�[0m�[91m.. .......... .......... .......... .......... 86% 85.9M 0s
Step #6 - "build-e2e":  12250K .......... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m....�[0m�[91m 86% 24.4M 0s
Step #6 - "build-e2e":  12300K .......... .......... .......... ......�[0m�[91m.... .......... 87% 33.8M 0s
Step #6 - "build-e2e":  12350K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... .......... .......... 87%  183M 0s�[0m�[91m
Step #6 - "build-e2e":  12400K .......... .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 87% 86.0M 0s
Step #6 - "build-e2e":  12450K ......�[0m�[91m.... ....�[0m�[91m...... .........�[0m�[91m.�[0m�[91m .......... ......�[0m�[91m.... 88% 49.2M 0s
Step #6 - "build-e2e":  12500K .......... .......... .......... .......... .......... 88%  168M 0s
Step #6 - "build-e2e":  12550K .......... .......... .......... .......... ..�[0m�[91m........ 88% 52.2M 0s�[0m�[91m
Step #6 - "build-e2e":  12600K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 89% 69.8M 0s
Step #6 - "build-e2e":  12650K ..�[0m�[91m......�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 89%  130M 0s
Step #6 - "build-e2e":  12700K �[0m�[91m......�[0m�[91m.... .......... ..�[0m�[91m........ ....�[0m�[91m....�[0m�[91m.. ......�[0m�[91m.... 89% 68.4M 0s
Step #6 - "build-e2e":  12750K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... 90% 66.7M 0s
Step #6 - "build-e2e":  12800K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 90% 72.0M 0s�[0m�[91m
Step #6 - "build-e2e":  12850K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 90% 83.3M 0s
Step #6 - "build-e2e":  12900K .......... ....�[0m�[91m...... .......... .......... .......... 91% 98.9M 0s
Step #6 - "build-e2e":  12950K .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 91% 31.6M 0s
Step #6 - "build-e2e":  13000K ..�[0m�[91m........ .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 91% 35.9M 0s
Step #6 - "build-e2e":  13050K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..........�[0m�[91m .......... 92% 87.6M 0s
Step #6 - "build-e2e":  13100K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... 92%  159M 0s
Step #6 - "build-e2e":  13150K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 93% 47.4M 0s
Step #6 - "build-e2e":  13200K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 93%  174M 0s
Step #6 - "build-e2e":  13250K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 93% 46.1M 0s
Step #6 - "build-e2e":  13300K ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. ......�[0m�[91m.... 94%  112M 0s
Step #6 - "build-e2e":  13350K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 94%  182M 0s
Step #6 - "build-e2e":  13400K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 94% 56.1M 0s
Step #6 - "build-e2e":  13450K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 95% 77.0M 0s
Step #6 - "build-e2e":  13500K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... 95% 66.2M 0s
Step #6 - "build-e2e":  13550K�[0m�[91m ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 95%  122M 0s
Step #6 - "build-e2e":  13600K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 96% 68.4M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":  13650K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 96% 30.2M 0s
Step #6 - "build-e2e":  13700K .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 96% 41.6M 0s
Step #6 - "build-e2e":  13750K .......... .......... .......... .......... ....�[0m�[91m...... 97% 75.1M 0s
Step #6 - "build-e2e":  13800K ..........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ 97%  149M 0s�[0m�[91m
Step #6 - "build-e2e":  13850K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 97% 44.4M 0s
Step #6 - "build-e2e":  13900K .......... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 98%  151M 0s
Step #6 - "build-e2e":  13950K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 98% 56.1M 0s
Step #6 - "build-e2e":  14000K ..�[0m�[91m........�[0m�[91m .......... .......... .......... .......... 99%  155M 0s
Step #6 - "build-e2e":  14050K .......... .......... .......... .......... .......... 99%  117M 0s
Step #6 - "build-e2e":  14100K .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 99% 77.9M 0s
Step #6 - "build-e2e":  14150K .......... ..�[0m�[91m........ ........�[0m�[91m.. ........    �[0m�[91m         100% 98.5M=0.5s
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0m�[91m2018-08-01 21:18:18 (28.6 MB/s) - '/tmp/build/consul_1.2.1_linux_amd64.zip' saved [14529496/14529496]
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0mArchive:  /tmp/build/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e":   inflating: /usr/local/bin/consul   
Step #6 - "build-e2e": Consul v1.2.1
Step #6 - "build-e2e": Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents)
Step #2: c5665f9cf3a5: Pull complete
Step #6 - "build-e2e": Removing intermediate container ffe0e86317a8
Step #6 - "build-e2e":  ---> 183ca7a4b469
Step #6 - "build-e2e": Step 16/20 : RUN echo "export PATH=/usr/local/go/bin:/go/bin/:\$PATH" >> /root/.bashrc
Step #6 - "build-e2e":  ---> Running in 9b3b14bb3df1
Step #6 - "build-e2e": Removing intermediate container 9b3b14bb3df1
Step #6 - "build-e2e":  ---> 4b2200ed1177
Step #6 - "build-e2e": Step 17/20 : COPY *.sh /root/
Step #6 - "build-e2e":  ---> c9bb3acc529b
Step #6 - "build-e2e": Step 18/20 : RUN chmod +x /root/*.sh
Step #6 - "build-e2e":  ---> Running in a43aeb54709a
Step #6 - "build-e2e": Removing intermediate container a43aeb54709a
Step #6 - "build-e2e":  ---> 70a0ebc07047
Step #6 - "build-e2e": Step 19/20 : WORKDIR /go
Step #6 - "build-e2e": Removing intermediate container 2a2365bb425d
Step #6 - "build-e2e":  ---> 3926eb9f3344
Step #6 - "build-e2e": Step 20/20 : ENTRYPOINT [ "/root/entrypoint.sh" ]
Step #6 - "build-e2e":  ---> Running in 7976b2637281
Step #6 - "build-e2e": Removing intermediate container 7976b2637281
Step #6 - "build-e2e":  ---> 8b234cfdf220
Step #6 - "build-e2e": Successfully built 8b234cfdf220
Step #6 - "build-e2e": Successfully tagged e2e-runner:latest
Finished Step #6 - "build-e2e"
Step #2: e4c28ca52668: Pull complete
Step #2: dbfd4861be3b: Pull complete
Step #2: 52baa227d04b: Pull complete
Step #2: 3de9e10d3c4a: Pull complete
Step #2: 0fde949df4cb: Pull complete
Step #2: bbb4ae4b3a0e: Pull complete
Step #2: e7ddacc33042: Pull complete
Step #2: 155337a61985: Pull complete
Step #2: 9ea3e29c33ca: Pull complete
Step #2: 132215a25d02: Pull complete
Step #2: e1ec9832b584: Pull complete
Step #2: ad2eb320baee: Pull complete
Step #2: 0f40db4b1d03: Pull complete
Step #2: 2e326f32948c: Pull complete
Step #2: f69887a665aa: Pull complete
Step #2: 784d73adfed5: Pull complete
Step #2: 48aa0c91e3f0: Pull complete
Step #2: Digest: sha256:b8746a641b0bc2b9a5137c918d933c060fb28d94417b566d91d39278e3341441
Step #2: Status: Downloaded newer image for gcr.io/agones-images/agones-build:0465c3abeb
Finished Step #2
Starting Step #3 - "lint"
Step #3 - "lint": Already have image: make-docker
Step #3 - "lint": mkdir -p ~/.kube
Step #3 - "lint": mkdir -p /workspace/build//.config/gcloud
Step #3 - "lint": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones -w /go/src/agones.dev/agones  agones-build:0465c3abeb bash -c \
Step #3 - "lint": 	"/root/gen-lint-exclude.sh && gometalinter --config .exclude.gometalinter.json --deadline=15m -t --skip vendor ./..."
Step #3 - "lint": runtime/cgo: runtime/cgo: pthread_create failed: Resource temporarily unavailablepthread_create failed: Resource temporarily unavailable
Step #3 - "lint": 
Step #3 - "lint": SIGABRT: abort
Step #3 - "lint": PC=0x7f9d64554fff m=16 sigcode=18446744073709551610
Step #3 - "lint": 
Step #3 - "lint": goroutine 0 [idle]:
Step #3 - "lint": runtime: unknown pc 0x7f9d64554fff
Step #3 - "lint": stack: frame={sp:0x7f9d58ff88f8, fp:0x0} stack=[0x7f9d587f92f0,0x7f9d58ff8ef0)
Step #3 - "lint": 00007f9d58ff87f8:  2525252525252525  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8808:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff8818:  0000000000000000  000000ffffffffff 
Step #3 - "lint": 00007f9d58ff8828:  0000000000000000  000000c420190330 
Step #3 - "lint": 00007f9d58ff8838:  000000c42005a630  000000c42005a2a0 
Step #3 - "lint": 00007f9d58ff8848:  000000c42005a2b0  000000c42005a010 
Step #3 - "lint": 00007f9d58ff8858:  000000c42005a020  000000c42005a070 
Step #3 - "lint": 00007f9d58ff8868:  000000c42005a0a0  000000c42005a090 
Step #3 - "lint": 00007f9d58ff8878:  000000c42005a240  0000000000000000 
Step #3 - "lint": 00007f9d58ff8888:  000000c42005a200  000000c42005a230 
Step #3 - "lint": 00007f9d58ff8898:  000000c42005a210  000000c42005a250 
Step #3 - "lint": 00007f9d58ff88a8:  000000c420190330  000000c42005a630 
Step #3 - "lint": 00007f9d58ff88b8:  000000c42005a2a0  000000c42005a2b0 
Step #3 - "lint": 00007f9d58ff88c8:  000000c42005a010  000000c42005a020 
Step #3 - "lint": 00007f9d58ff88d8:  000000c42005a310  0000000000000000 
Step #3 - "lint": 00007f9d58ff88e8:  0000000000000000  3fdb3f890473e8cf 
Step #3 - "lint": 00007f9d58ff88f8: <0000000000000000  fffffffe7fffffff 
Step #3 - "lint": 00007f9d58ff8908:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8918:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8928:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8938:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8948:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8958:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8968:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8978:  ffffffffffffffff  00007f9d648bc6e0 
Step #3 - "lint": 00007f9d58ff8988:  00007f9d6455642a  0000000000000020 
Step #3 - "lint": 00007f9d58ff8998:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89a8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89b8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89c8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89d8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89e8:  0000000000000000  0000000000000000 
Step #3 - "lint": runtime: unknown pc 0x7f9d64554fff
Step #3 - "lint": stack: frame={sp:0x7f9d58ff88f8, fp:0x0} stack=[0x7f9d587f92f0,0x7f9d58ff8ef0)
Step #3 - "lint": 00007f9d58ff87f8:  2525252525252525  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8808:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff8818:  0000000000000000  000000ffffffffff 
Step #3 - "lint": 00007f9d58ff8828:  0000000000000000  000000c420190330 
Step #3 - "lint": 00007f9d58ff8838:  000000c42005a630  000000c42005a2a0 
Step #3 - "lint": 00007f9d58ff8848:  000000c42005a2b0  000000c42005a010 
Step #3 - "lint": 00007f9d58ff8858:  000000c42005a020  000000c42005a070 
Step #3 - "lint": 00007f9d58ff8868:  000000c42005a0a0  000000c42005a090 
Step #3 - "lint": 00007f9d58ff8878:  000000c42005a240  0000000000000000 
Step #3 - "lint": 00007f9d58ff8888:  000000c42005a200  000000c42005a230 
Step #3 - "lint": 00007f9d58ff8898:  000000c42005a210  000000c42005a250 
Step #3 - "lint": 00007f9d58ff88a8:  000000c420190330  000000c42005a630 
Step #3 - "lint": 00007f9d58ff88b8:  000000c42005a2a0  000000c42005a2b0 
Step #3 - "lint": 00007f9d58ff88c8:  000000c42005a010  000000c42005a020 
Step #3 - "lint": 00007f9d58ff88d8:  000000c42005a310  0000000000000000 
Step #3 - "lint": 00007f9d58ff88e8:  0000000000000000  3fdb3f890473e8cf 
Step #3 - "lint": 00007f9d58ff88f8: <0000000000000000  fffffffe7fffffff 
Step #3 - "lint": 00007f9d58ff8908:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8918:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8928:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8938:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8948:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8958:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8968:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f9d58ff8978:  ffffffffffffffff  00007f9d648bc6e0 
Step #3 - "lint": 00007f9d58ff8988:  00007f9d6455642a  0000000000000020 
Step #3 - "lint": 00007f9d58ff8998:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89a8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89b8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89c8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89d8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f9d58ff89e8:  0000000000000000  0000000000000000 
Step #3 - "lint": 
Step #3 - "lint": goroutine 1 [chan send, 2 minutes]:
Step #3 - "lint": main.runLinters(0xc4201f3740, 0xc420296240, 0x24, 0x24, 0x8, 0xc4201b3860, 0x0, 0x24, 0x24)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:116 +0xa0a
Step #3 - "lint": main.main()
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/main.go:232 +0x518
Step #3 - "lint": 
Step #3 - "lint": goroutine 70 [syscall, 3 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x38, 0xc4200405d8, 0x1000004, 0x0, 0x0, 0xc420000180, 0x4, 0xc420040600)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc420ab2150, 0x0, 0xc4200763c0, 0xc420124300)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc420ab2150, 0x1, 0xc420040768, 0x52299e)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc420ab2150, 0x1, 0x0, 0x6)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc420202000, 0xc4200407c8, 0x523053)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc420202000, 0xc420298040, 0xc42019c060)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 69 [IO wait, 4 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5b928, 0x72, 0xc420040ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42025e068, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42025e068, 0xc4214ec001, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42025e050, 0xc4214ec000, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc420108010, 0xc4214ec000, 0x200, 0x200, 0xc4214ec000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc420108010, 0xc4214ec000, 0x200, 0x200, 0xc420048800, 0x67986e, 0xc420040e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4200ee000, 0x6aa6a0, 0xc420108010, 0x7f9d64bd7020, 0xc4200ee000, 0xc420124401)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4200ee000, 0x6aa6a0, 0xc420108010, 0x0, 0x0, 0x0, 0xc420170000, 0xc420040f40, 0x677bc4)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4200ee000, 0x6aa6a0, 0xc420108010, 0xc420170058, 0x0, 0x52324c)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420170058, 0xc420040fc8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc420202000, 0xc4202a4040)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 79 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0xc, 0xc420096b70, 0xc42163c400, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420096b70, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0xc, 0xc42163c400, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 82 [chan receive, 5 minutes]:
Step #3 - "lint": main.filterIssuesViaDirectives.func1(0xc4202d6e40, 0xc420168320, 0xc420ac2000)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/directives.go:191 +0x42
Step #3 - "lint": created by main.filterIssuesViaDirectives
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/directives.go:190 +0x71
Step #3 - "lint": 
Step #3 - "lint": goroutine 81 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x59, 0xc4201825d8, 0x1000004, 0x0, 0x0, 0xc42017cd80, 0xc420024000, 0xc420182620)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc420ab28a0, 0x4b885b, 0xc420160348, 0xc4201826d0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc420ab28a0, 0x0, 0xc420182730, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc420ab28a0, 0xc420182790, 0x5d5cff, 0xc420ac20b8)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc421666160, 0xc4201827b0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc421666160, 0xc420298b30, 0xc42019cf60)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 80 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5bfa8, 0x72, 0xc420041ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42025ed88, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42025ed88, 0xc4215ce201, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42025ed70, 0xc4215ce200, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc420108288, 0xc4215ce200, 0x200, 0x200, 0xc4215ce200, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc420108288, 0xc4215ce200, 0x200, 0x200, 0x631240, 0x4508f0, 0xc420041e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc42165d5e0, 0x6aa6a0, 0xc420108288, 0x7f9d64bd7020, 0xc42165d5e0, 0xc420041e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc42165d5e0, 0x6aa6a0, 0xc420108288, 0x0, 0x0, 0x0, 0xc420041f90, 0x5d3753, 0xc4202a6000)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc42165d5e0, 0x6aa6a0, 0xc420108288, 0x404de5, 0xc4200e6060, 0x6a8711)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc4200e6060, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc421666160, 0xc4202a5120)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 74 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0xa, 0xc420132b70, 0xc420081400, 0x26, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420132b70, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0xa, 0xc420081400, 0x26, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 64 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x3, 0xc420162120, 0xc420049c00, 0x26, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420162120, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0x3, 0xc420049c00, 0x26, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 22 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5c078, 0x72, 0xc4200424e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc4201464c8, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc4201464c8, 0xc4200e2201, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc4201464b0, 0xc4200e2200, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42000e030, 0xc4200e2200, 0x200, 0x200, 0xc4200e2200, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42000e030, 0xc4200e2200, 0x200, 0x200, 0x0, 0x0, 0xc420042660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4202d8000, 0x6aa6a0, 0xc42000e030, 0x7f9d64bd7020, 0xc4202d8000, 0x61f501)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4202d8000, 0x6aa6a0, 0xc42000e030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4202d8000, 0x6aa6a0, 0xc42000e030, 0x26, 0x40, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420162120, 0xc4202d6de0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4212f6000, 0xc42014a0a0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 23 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x29, 0xc421273dd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc4201861e0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc4201861e0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc4201861e0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4212f6000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4212f6000, 0xc420134060, 0xc421312060)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 85 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0xb, 0xc4201330e0, 0xc420081c00, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc4201330e0, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0xb, 0xc420081c00, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 102 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x6, 0xc4201632f0, 0xc4213c8000, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc4201632f0, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0x6, 0xc4213c8000, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 103 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x7, 0xc420163710, 0xc4213c8800, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420163710, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0x7, 0xc4213c8800, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 24 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x8, 0xc420163b30, 0xc4214a0800, 0x65, 0x80, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420163b30, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0x8, 0xc4214a0800, 0x65, 0x80)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 104 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5bd38, 0x72, 0xc4201854e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc420131878, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc420131878, 0xc4200e2401, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc420131860, 0xc4200e2400, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc4201483d0, 0xc4200e2400, 0x200, 0x200, 0xc4200e2400, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc4201483d0, 0xc4200e2400, 0x200, 0x200, 0x0, 0x0, 0xc420185660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4202f2070, 0x6aa6a0, 0xc4201483d0, 0x7f9d64bd7020, 0xc4202f2070, 0x61f501)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4202f2070, 0x6aa6a0, 0xc4201483d0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4202f2070, 0x6aa6a0, 0xc4201483d0, 0x25, 0x40, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420163710, 0xc4202d6de0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4201adb80, 0xc4214b2060)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 105 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x30, 0xc421274dd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc42029ae70, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc42029ae70, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc42029ae70, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4201adb80, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4201adb80, 0xc420120100, 0xc4202e9020)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 77 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5bc68, 0x72, 0xc420229ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42025e978, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42025e978, 0xc421554201, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42025e960, 0xc421554200, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc4201081c8, 0xc421554200, 0x200, 0x200, 0xc421554200, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc4201081c8, 0xc421554200, 0x200, 0x200, 0xc420229e58, 0x4b874c, 0xc420229e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4202077a0, 0x6aa6a0, 0xc4201081c8, 0x7f9d64bd7020, 0xc4202077a0, 0xc420229e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4202077a0, 0x6aa6a0, 0xc4201081c8, 0x0, 0x0, 0x0, 0xc4201465f0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4202077a0, 0x6aa6a0, 0xc4201081c8, 0x404de5, 0xc420076060, 0xc420229fb0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420076060, 0xc420229fb0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc420203760, 0xc4202a4c40)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 76 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x50, 0xc4202225d8, 0x1000004, 0x0, 0x0, 0xc420083380, 0xc420024000, 0xc420222620)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc420ab25a0, 0xc42151a780, 0x4, 0xc4202226d0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc420ab25a0, 0x3, 0xc420222730, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc420ab25a0, 0xc420222790, 0x5d5cff, 0xc4214e28f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc420203340, 0xc4202227b0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc420203340, 0xc420298760, 0xc42019ca20)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 130 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5b9f8, 0x72, 0xc4201814e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc420160f18, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc420160f18, 0xc421646701, 0x163b, 0x163b)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc420160f00, 0xc4216467c5, 0x163b, 0x163b, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc420136210, 0xc4216467c5, 0x163b, 0x163b, 0x5e, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc420136210, 0xc4216467c5, 0x163b, 0x163b, 0x5e, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4200d6d90, 0x6aa6a0, 0xc420136210, 0x7f9d64bd7020, 0xc4200d6d90, 0x61f501)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4200d6d90, 0x6aa6a0, 0xc420136210, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4200d6d90, 0x6aa6a0, 0xc420136210, 0x26, 0x40, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420132750, 0xc4202d6de0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4202cc580, 0xc420106320)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 131 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x41, 0xc4214dddd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc4214ee000, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc4214ee000, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc4214ee000, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4202cc580, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4202cc580, 0xc420165100, 0xc4214f2000)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 75 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5c148, 0x72, 0xc420184ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42025e888, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42025e888, 0xc4215ce001, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42025e870, 0xc4215ce000, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc4201081a0, 0xc4215ce000, 0x200, 0x200, 0xc4215ce000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc4201081a0, 0xc4215ce000, 0x200, 0x200, 0x631240, 0x4508f0, 0xc420184e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc420207730, 0x6aa6a0, 0xc4201081a0, 0x7f9d64bd7020, 0xc420207730, 0xc420184e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc420207730, 0x6aa6a0, 0xc4201081a0, 0x0, 0x0, 0x0, 0xc420184f90, 0x5d3790, 0x666f40)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc420207730, 0x6aa6a0, 0xc4201081a0, 0x404de5, 0xc42019c4e0, 0x6a8711)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc42019c4e0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc420203340, 0xc4202a4bc0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 78 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x53, 0xc420226dd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc420ab2720, 0x0, 0x0, 0x61f500)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc420ab2720, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc420ab2720, 0x0, 0xc420226f90, 0x5f1720)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc420203760, 0xc4202d6de0, 0xc420074150)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc420203760, 0xc4202987f0, 0xc42019cae0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 116 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0xd, 0xc420133590, 0xc4216b0400, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420133590, 0xc4202d6de0, 0xc420074150, 0xc42011e0e0, 0xd, 0xc4216b0400, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 117 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f9d64c5bb98, 0x72, 0xc420222ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc421e22388, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc421e22388, 0xc421ef0001, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc421e22370, 0xc421ef0000, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc421e2a0a0, 0xc421ef0000, 0x200, 0x200, 0xc421ef0000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc421e2a0a0, 0xc421ef0000, 0x200, 0x200, 0x0, 0x0, 0xc420222e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc421e29b90, 0x6aa6a0, 0xc421e2a0a0, 0x7f9d64bd7020, 0xc421e29b90, 0x61f501)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc421e29b90, 0x6aa6a0, 0xc421e2a0a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc421e29b90, 0x6aa6a0, 0xc421e2a0a0, 0x25, 0x40, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420133590, 0xc4202d6de0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc421e72580, 0xc421e204c0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 118 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x49d, 0xc4202235d8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc420258180, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc420258180, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc420258180, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc421e72580, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc421e72580, 0xc42025a2e0, 0xc42025c480)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": rax    0x0
Step #3 - "lint": rbx    0x6
Step #3 - "lint": rcx    0x7f9d64554fff
Step #3 - "lint": rdx    0x0
Step #3 - "lint": rdi    0x2
Step #3 - "lint": rsi    0x7f9d58ff8880
Step #3 - "lint": rbp    0x6ac51a
Step #3 - "lint": rsp    0x7f9d58ff88f8
Step #3 - "lint": r8     0x0
Step #3 - "lint": r9     0x7f9d58ff8880
Step #3 - "lint": r10    0x8
Step #3 - "lint": r11    0x246
Step #3 - "lint": r12    0x7f9d380008c0
Step #3 - "lint": r13    0xf1
Step #3 - "lint": r14    0x11
Step #3 - "lint": r15    0x0
Step #3 - "lint": rip    0x7f9d64554fff
Step #3 - "lint": rflags 0x246
Step #3 - "lint": cs     0x33
Step #3 - "lint": fs     0x0
Step #3 - "lint": gs     0x0
Step #3 - "lint": make: *** [lint] Error 2
Step #3 - "lint": Makefile:156: recipe for target 'lint' failed
Finished Step #3 - "lint"
ERROR
ERROR: build step 3 "make-docker" failed: exit status 2

@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: ef162a45-4b9d-4217-a0f2-d8afcc690f98

Build Logs
starting build "ef162a45-4b9d-4217-a0f2-d8afcc690f98"

FETCHSOURCE
Initialized empty Git repository in /workspace/.git/
From https://source.developers.google.com/p/agones-images/r/agones
 * branch            e4f921d744fc8117c97dc3efd71a0b3bdb8be247 -> FETCH_HEAD
HEAD is now at e4f921d adds the first e2e test which create a gameserver and connect to it this also add the gcloud builder step to test it in a special e2e cluster
BUILD
Starting Step #0
Starting Step #6 - "build-e2e"
Step #6 - "build-e2e": Already have image (with digest): gcr.io/cloud-builders/docker
Step #0: Already have image (with digest): ubuntu
Step #6 - "build-e2e": Sending build context to Docker daemon  7.168kB

Step #6 - "build-e2e": Step 1/20 : FROM gcr.io/cloud-builders/gcloud-slim
Step #6 - "build-e2e": latest: Pulling from cloud-builders/gcloud-slim
Step #6 - "build-e2e": 33e0b8928960: Already exists
Step #6 - "build-e2e": 422dc07b14c8: Already exists
Step #6 - "build-e2e": 3c2cba919283: Already exists
Step #6 - "build-e2e": e908dd8c7e4c: Already exists
Step #6 - "build-e2e": Digest: sha256:401eb80c7cc0d6d90f04c87b429bcf90ad0714435f25404c25fb62a05cf0640d
Step #6 - "build-e2e": Status: Downloaded newer image for gcr.io/cloud-builders/gcloud-slim:latest
Step #6 - "build-e2e":  ---> 3e9bcfb9630d
Step #6 - "build-e2e": Step 2/20 : RUN apt-get update &&     apt-get install -y wget psmisc make python jq zip &&     apt-get clean
Step #6 - "build-e2e":  ---> Running in 3df23d8182b3
Finished Step #0
Starting Step #1
Step #1: Already have image (with digest): gcr.io/cloud-builders/docker
Step #6 - "build-e2e": Get:1 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Step #6 - "build-e2e": Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
Step #6 - "build-e2e": Get:3 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial InRelease [17.5 kB]
Step #6 - "build-e2e": Get:4 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main amd64 Packages [3328 B]
Step #6 - "build-e2e": Get:5 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [530 kB]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Step #6 - "build-e2e": Get:7 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Step #6 - "build-e2e": Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1201 kB]
Step #6 - "build-e2e": Get:9 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main Translation-en [2380 B]
Step #6 - "build-e2e": Get:10 http://security.ubuntu.com/ubuntu xenial-security/main Translation-en [227 kB]
Step #6 - "build-e2e": Get:11 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [7204 B]
Step #6 - "build-e2e": Get:12 http://security.ubuntu.com/ubuntu xenial-security/restricted Translation-en [2152 B]
Step #6 - "build-e2e": Get:13 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [362 kB]
Step #6 - "build-e2e": Get:14 http://archive.ubuntu.com/ubuntu xenial/main Translation-en [568 kB]
Step #6 - "build-e2e": Get:15 http://security.ubuntu.com/ubuntu xenial-security/universe Translation-en [136 kB]
Step #1: Sending build context to Docker daemon  127.6MB

Step #6 - "build-e2e": Get:16 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [8344 B]
Step #6 - "build-e2e": Get:17 http://archive.ubuntu.com/ubuntu xenial/restricted Translation-en [2908 B]
Step #6 - "build-e2e": Get:18 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [7532 kB]
Step #6 - "build-e2e": Get:19 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3456 B]
Step #6 - "build-e2e": Get:20 http://security.ubuntu.com/ubuntu xenial-security/multiverse Translation-en [1744 B]
Step #1: Step 1/3 : FROM gcr.io/cloud-builders/docker
Step #1:  ---> bd8f6e3daf4e
Step #1: Step 2/3 : RUN apt-get install make
Step #1:  ---> Running in 477c922798c4
Step #6 - "build-e2e": Get:21 http://archive.ubuntu.com/ubuntu xenial/universe Translation-en [4354 kB]
Step #6 - "build-e2e": Get:22 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [144 kB]
Step #6 - "build-e2e": Get:23 http://archive.ubuntu.com/ubuntu xenial/multiverse Translation-en [106 kB]
Step #6 - "build-e2e": Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [820 kB]
Step #6 - "build-e2e": Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main Translation-en [337 kB]
Step #6 - "build-e2e": Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [7564 B]
Step #6 - "build-e2e": Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/restricted Translation-en [2272 B]
Step #6 - "build-e2e": Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [675 kB]
Step #6 - "build-e2e": Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [272 kB]
Step #6 - "build-e2e": Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [16.4 kB]
Step #1: Reading package lists...
Step #6 - "build-e2e": Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse Translation-en [8344 B]
Step #6 - "build-e2e": Get:32 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [6744 B]
Step #6 - "build-e2e": Get:33 http://archive.ubuntu.com/ubuntu xenial-backports/main Translation-en [4180 B]
Step #6 - "build-e2e": Get:34 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7420 B]
Step #6 - "build-e2e": Get:35 http://archive.ubuntu.com/ubuntu xenial-backports/universe Translation-en [3996 B]
Step #1: Building dependency tree...
Step #1: Reading state information...
Step #1: make is already the newest version (4.1-6).
Step #1: 0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
Step #1: Removing intermediate container 477c922798c4
Step #1:  ---> aa3e024df3a5
Step #1: Step 3/3 : ENTRYPOINT ["/usr/bin/make"]
Step #1:  ---> Running in af99a0045e3e
Step #1: Removing intermediate container af99a0045e3e
Step #1:  ---> 2ab4497fb822
Step #1: Successfully built 2ab4497fb822
Step #1: Successfully tagged make-docker:latest
Finished Step #1
Starting Step #2
Step #2: Already have image: make-docker
Step #2: docker pull gcr.io/agones-images/agones-build:0465c3abeb && docker tag gcr.io/agones-images/agones-build:0465c3abeb agones-build:0465c3abeb
Step #2: 0465c3abeb: Pulling from agones-images/agones-build
Step #2: cc1a78bfd46b: Pulling fs layer
Step #2: 65ec5fb8fee4: Pulling fs layer
Step #2: f792a8d67267: Pulling fs layer
Step #2: 9593540a662e: Pulling fs layer
Step #2: c5665f9cf3a5: Pulling fs layer
Step #2: e4c28ca52668: Pulling fs layer
Step #2: dbfd4861be3b: Pulling fs layer
Step #2: 52baa227d04b: Pulling fs layer
Step #2: 3de9e10d3c4a: Pulling fs layer
Step #2: 0fde949df4cb: Pulling fs layer
Step #2: bbb4ae4b3a0e: Pulling fs layer
Step #2: e7ddacc33042: Pulling fs layer
Step #2: 155337a61985: Pulling fs layer
Step #2: 9ea3e29c33ca: Pulling fs layer
Step #2: 132215a25d02: Pulling fs layer
Step #2: 9593540a662e: Waiting
Step #2: e1ec9832b584: Pulling fs layer
Step #2: ad2eb320baee: Pulling fs layer
Step #2: c5665f9cf3a5: Waiting
Step #2: 0f40db4b1d03: Pulling fs layer
Step #2: 2e326f32948c: Pulling fs layer
Step #2: e4c28ca52668: Waiting
Step #2: f69887a665aa: Pulling fs layer
Step #2: 784d73adfed5: Pulling fs layer
Step #2: 48aa0c91e3f0: Pulling fs layer
Step #2: 0fde949df4cb: Waiting
Step #2: 155337a61985: Waiting
Step #2: 0f40db4b1d03: Waiting
Step #2: bbb4ae4b3a0e: Waiting
Step #2: 2e326f32948c: Waiting
Step #2: 9ea3e29c33ca: Waiting
Step #2: e7ddacc33042: Waiting
Step #2: dbfd4861be3b: Waiting
Step #2: f69887a665aa: Waiting
Step #2: 132215a25d02: Waiting
Step #2: ad2eb320baee: Waiting
Step #2: 48aa0c91e3f0: Waiting
Step #2: e1ec9832b584: Waiting
Step #2: 52baa227d04b: Waiting
Step #2: 3de9e10d3c4a: Waiting
Step #2: 784d73adfed5: Waiting
Step #2: cc1a78bfd46b: Download complete
Step #6 - "build-e2e": Fetched 17.9 MB in 4s (4332 kB/s)
Step #2: 9593540a662e: Verifying Checksum
Step #2: 9593540a662e: Download complete
Step #2: 65ec5fb8fee4: Verifying Checksum
Step #2: 65ec5fb8fee4: Download complete
Step #2: e4c28ca52668: Verifying Checksum
Step #2: e4c28ca52668: Download complete
Step #2: dbfd4861be3b: Download complete
Step #2: c5665f9cf3a5: Verifying Checksum
Step #2: c5665f9cf3a5: Download complete
Step #2: 3de9e10d3c4a: Download complete
Step #2: 52baa227d04b: Verifying Checksum
Step #2: 52baa227d04b: Download complete
Step #6 - "build-e2e": Reading package lists...
Step #2: bbb4ae4b3a0e: Verifying Checksum
Step #2: bbb4ae4b3a0e: Download complete
Step #2: 0fde949df4cb: Verifying Checksum
Step #2: 0fde949df4cb: Download complete
Step #2: e7ddacc33042: Verifying Checksum
Step #2: e7ddacc33042: Download complete
Step #6 - "build-e2e": Reading package lists...
Step #2: 9ea3e29c33ca: Verifying Checksum
Step #2: 9ea3e29c33ca: Download complete
Step #6 - "build-e2e": Building dependency tree...
Step #6 - "build-e2e": Reading state information...
Step #6 - "build-e2e": python is already the newest version (2.7.12-1~16.04).
Step #6 - "build-e2e": python set to manually installed.
Step #6 - "build-e2e": The following packages were automatically installed and are no longer required:
Step #6 - "build-e2e":   cpp cpp-5 gcc-5 libasan2 libatomic1 libc-dev-bin libc6-dev libcc1-0
Step #6 - "build-e2e":   libcilkrts5 libexpat1-dev libgcc-5-dev libgomp1 libisl15 libitm1 liblsan0
Step #6 - "build-e2e":   libmpc3 libmpfr4 libmpx0 libpython-dev libpython2.7 libpython2.7-dev
Step #6 - "build-e2e":   libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
Step #6 - "build-e2e":   python-pkg-resources python2.7-dev
Step #6 - "build-e2e": Use 'apt autoremove' to remove them.
Step #6 - "build-e2e": The following additional packages will be installed:
Step #6 - "build-e2e":   libonig2 unzip
Step #6 - "build-e2e": Suggested packages:
Step #6 - "build-e2e":   make-doc
Step #6 - "build-e2e": The following NEW packages will be installed:
Step #6 - "build-e2e":   jq libonig2 make psmisc unzip wget zip
Step #2: 155337a61985: Verifying Checksum
Step #2: 155337a61985: Download complete
Step #6 - "build-e2e": 0 upgraded, 7 newly installed, 0 to remove and 13 not upgraded.
Step #6 - "build-e2e": Need to get 746 kB/1046 kB of archives.
Step #6 - "build-e2e": After this operation, 3429 kB of additional disk space will be used.
Step #6 - "build-e2e": Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 psmisc amd64 22.21-2.1build1 [48.0 kB]
Step #6 - "build-e2e": Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libonig2 amd64 5.9.6-1ubuntu0.1 [86.7 kB]
Step #6 - "build-e2e": Get:3 http://archive.ubuntu.com/ubuntu xenial/universe amd64 jq amd64 1.5+dfsg-1 [144 kB]
Step #6 - "build-e2e": Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB]
Step #6 - "build-e2e": Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 unzip amd64 6.0-20ubuntu1 [158 kB]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 zip amd64 3.0-11 [158 kB]
Step #2: cc1a78bfd46b: Pull complete
Step #6 - "build-e2e": Fetched 746 kB in 0s (840 kB/s)
Step #6 - "build-e2e": Selecting previously unselected package psmisc.
Step #6 - "build-e2e": (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 ... 17410 files and directories currently installed.)
Step #6 - "build-e2e": Preparing to unpack .../psmisc_22.21-2.1build1_amd64.deb ...
Step #6 - "build-e2e": Unpacking psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Selecting previously unselected package wget.
Step #6 - "build-e2e": Preparing to unpack .../wget_1.17.1-1ubuntu1.4_amd64.deb ...
Step #6 - "build-e2e": Unpacking wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Selecting previously unselected package libonig2:amd64.
Step #6 - "build-e2e": Preparing to unpack .../libonig2_5.9.6-1ubuntu0.1_amd64.deb ...
Step #6 - "build-e2e": Unpacking libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #2: e1ec9832b584: Verifying Checksum
Step #2: e1ec9832b584: Download complete
Step #2: 132215a25d02: Verifying Checksum
Step #2: 132215a25d02: Download complete
Step #2: ad2eb320baee: Download complete
Step #6 - "build-e2e": Selecting previously unselected package jq.
Step #6 - "build-e2e": Preparing to unpack .../jq_1.5+dfsg-1_amd64.deb ...
Step #6 - "build-e2e": Unpacking jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Selecting previously unselected package make.
Step #6 - "build-e2e": Preparing to unpack .../archives/make_4.1-6_amd64.deb ...
Step #6 - "build-e2e": Unpacking make (4.1-6) ...
Step #2: 2e326f32948c: Download complete
Step #6 - "build-e2e": Selecting previously unselected package unzip.
Step #6 - "build-e2e": Preparing to unpack .../unzip_6.0-20ubuntu1_amd64.deb ...
Step #6 - "build-e2e": Unpacking unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Selecting previously unselected package zip.
Step #6 - "build-e2e": Preparing to unpack .../archives/zip_3.0-11_amd64.deb ...
Step #2: f69887a665aa: Verifying Checksum
Step #2: f69887a665aa: Download complete
Step #6 - "build-e2e": Unpacking zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #2: 784d73adfed5: Verifying Checksum
Step #2: 784d73adfed5: Download complete
Step #2: 48aa0c91e3f0: Download complete
Step #2: 0f40db4b1d03: Verifying Checksum
Step #2: 0f40db4b1d03: Download complete
Step #2: f792a8d67267: Verifying Checksum
Step #6 - "build-e2e": Processing triggers for mime-support (3.59ubuntu1) ...
Step #6 - "build-e2e": Setting up psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Setting up wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Setting up libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Setting up jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Setting up make (4.1-6) ...
Step #6 - "build-e2e": Setting up unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Setting up zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #6 - "build-e2e": Removing intermediate container 3df23d8182b3
Step #6 - "build-e2e":  ---> 78317f16c1a2
Step #6 - "build-e2e": Step 3/20 : WORKDIR /usr/local
Step #6 - "build-e2e": Removing intermediate container 31aa9b7243d5
Step #6 - "build-e2e":  ---> e8b94d622c06
Step #6 - "build-e2e": Step 4/20 : ENV GO_VERSION=1.10.3
Step #6 - "build-e2e":  ---> Running in 2ac13a314f67
Step #6 - "build-e2e": Removing intermediate container 2ac13a314f67
Step #6 - "build-e2e":  ---> de6836702946
Step #6 - "build-e2e": Step 5/20 : ENV GOPATH /go
Step #6 - "build-e2e":  ---> Running in 8c38f2e74b47
Step #6 - "build-e2e": Removing intermediate container 8c38f2e74b47
Step #6 - "build-e2e":  ---> 8d1ae4292e65
Step #6 - "build-e2e": Step 6/20 : RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz &&     tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}
Step #6 - "build-e2e":  ---> Running in d69f5e969ea5
Step #2: 65ec5fb8fee4: Pull complete
Step #6 - "build-e2e": Removing intermediate container d69f5e969ea5
Step #6 - "build-e2e":  ---> 296ef1c33e87
Step #6 - "build-e2e": Step 7/20 : ENV PATH /usr/local/go/bin:/go/bin:$PATH
Step #6 - "build-e2e":  ---> Running in 817fc83d3858
Step #6 - "build-e2e": Removing intermediate container 817fc83d3858
Step #6 - "build-e2e":  ---> b4c701826466
Step #6 - "build-e2e": Step 8/20 : ENV KUBECTL_VER 1.11.0
Step #6 - "build-e2e":  ---> Running in a38271a04ff8
Step #6 - "build-e2e": Removing intermediate container a38271a04ff8
Step #6 - "build-e2e":  ---> 98cfd603cb53
Step #6 - "build-e2e": Step 9/20 : RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &&     chmod go+rx ./kubectl &&     mv ./kubectl /usr/local/bin/kubectl
Step #6 - "build-e2e":  ---> Running in a3108fed39e1
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Lef�[0m�[91mt  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0�[0m�[91m --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 52.8M  100 52.8M    0     0   127M      0 --:--:-- --:--:-- --:--:--  127M
Step #2: f792a8d67267: Pull complete
Step #6 - "build-e2e": �[0mRemoving intermediate container a3108fed39e1
Step #6 - "build-e2e":  ---> 369ac028eb7c
Step #6 - "build-e2e": Step 10/20 : ENV HELM_VER 2.9.1
Step #6 - "build-e2e":  ---> Running in 67c9a85d3fdb
Step #6 - "build-e2e": Removing intermediate container 67c9a85d3fdb
Step #6 - "build-e2e":  ---> 42b8c02dd2af
Step #6 - "build-e2e": Step 11/20 : ENV HELM_URL https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VER}-linux-amd64.tar.gz
Step #6 - "build-e2e":  ---> Running in cc58adf5b6d1
Step #6 - "build-e2e": Removing intermediate container cc58adf5b6d1
Step #6 - "build-e2e":  ---> ce92d69ddd53
Step #6 - "build-e2e": Step 12/20 : RUN curl -L  ${HELM_URL} > /tmp/helm.tar.gz     && tar -zxvf /tmp/helm.tar.gz -C /tmp     && mv /tmp/linux-amd64/helm /usr/local/bin/helm     && chmod go+rx /usr/local/bin/helm     && rm /tmp/helm.tar.gz && rm -rf /tmp/linux-amd64
Step #6 - "build-e2e":  ---> Running in cb81ac04ca92
Step #2: 9593540a662e: Pull complete
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 8946k  100 8946k    0     0  54.9M      0 --:--:-- --:--:-- --:--:-- 55.2M
Step #6 - "build-e2e": �[0mlinux-amd64/
Step #6 - "build-e2e": linux-amd64/README.md
Step #6 - "build-e2e": linux-amd64/helm
Step #6 - "build-e2e": linux-amd64/LICENSE
Step #6 - "build-e2e": Removing intermediate container cb81ac04ca92
Step #6 - "build-e2e":  ---> 8dcf1d7226e5
Step #6 - "build-e2e": Step 13/20 : ENV CONSUL_VERSION=1.2.1
Step #6 - "build-e2e":  ---> Running in a75a577cd672
Step #6 - "build-e2e": Removing intermediate container a75a577cd672
Step #6 - "build-e2e":  ---> a59d56f8c945
Step #6 - "build-e2e": Step 14/20 : ENV HASHICORP_RELEASES=https://releases.hashicorp.com
Step #6 - "build-e2e":  ---> Running in 300bd3178377
Step #6 - "build-e2e": Removing intermediate container 300bd3178377
Step #6 - "build-e2e":  ---> 037601ea4dbc
Step #6 - "build-e2e": Step 15/20 : RUN mkdir -p /tmp/build &&     wget ${HASHICORP_RELEASES}/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip     -P /tmp/build/  &&     unzip -d /usr/local/bin/ /tmp/build/consul_${CONSUL_VERSION}_linux_amd64.zip &&     cd /tmp &&     rm -rf /tmp/build &&     chmod go+rx /usr/local/bin/consul &&     consul version
Step #6 - "build-e2e":  ---> Running in 69e00d42a31a
Step #6 - "build-e2e": �[91m--2018-08-01 21:26:47--  https://releases.hashicorp.com/consul/1.2.1/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e": �[0m�[91mResolving releases.hashicorp.com (releases.hashicorp.com)... �[0m�[91m151.101.1.183, 151.101.65.183, 151.101.129.183, ...
Step #6 - "build-e2e": Connecting to releases.hashicorp.com (releases.hashicorp.com)|151.101.1.183|:443... �[0m�[91mconnected.
Step #6 - "build-e2e": �[0m�[91mHTTP request sent, awaiting response... �[0m�[91m200 OK
Step #6 - "build-e2e": �[0m�[91mLength: 14529496 (14M) [application/zip]
Step #6 - "build-e2e": �[0m�[91mSaving to: '/tmp/build/consul_1.2.1_linux_amd64.zip'
Step #6 - "build-e2e": �[0m�[91m
Step #6 - "build-e2e":      0K ........�[0m�[91m.. .�[0m�[91m...�[0m�[91m..�[0m�[91m...�[0m�[91m. ..�[0m�[91m..�[0m�[91m...... ..........�[0m�[91m ..........  0% 2.08M 7s
Step #6 - "build-e2e":     50K ......�[0m�[91m.... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  0% 5.21M 5s
Step #6 - "build-e2e":    100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  1% 5.27M 4s
Step #6 - "build-e2e":    150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  1% 6.94M 3s
Step #6 - "build-e2e":    200K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  1% 5.79M 3s
Step #6 - "build-e2e":    250K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  2% 6.33M 3s
Step #6 - "build-e2e":    300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........  2% 5.77M 3s�[0m�[91m
Step #6 - "build-e2e":    350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  2% 5.36M 3s
Step #6 - "build-e2e":    400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m....  3% 7.93M 3s
Step #6 - "build-e2e":    450K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  3% 7.56M 3s
Step #6 - "build-e2e":    500K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  3% 6.60M 3s
Step #6 - "build-e2e":    550K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  4% 9.11M 2s
Step #6 - "build-e2e":    600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  4% 7.33M 2s
Step #6 - "build-e2e":    650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  4% 7.44M 2s
Step #6 - "build-e2e":    700K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........  5% 9.42M 2s�[0m�[91m
Step #6 - "build-e2e":    750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  5% 6.57M 2s
Step #6 - "build-e2e":    800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m....  5% 10.2M 2s
Step #6 - "build-e2e":    850K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  6% 7.77M 2s
Step #6 - "build-e2e":    900K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  6% 7.73M 2s�[0m�[91m
Step #6 - "build-e2e":    950K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ..........  7% 11.0M 2s
Step #6 - "build-e2e":   1000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  7% 8.72M 2s
Step #6 - "build-e2e":   1050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  7% 14.5M 2s
Step #6 - "build-e2e":   1100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........  8% 10.7M 2s�[0m�[91m
Step #6 - "build-e2e":   1150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  8% 7.56M 2s
Step #6 - "build-e2e":   1200K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m....  8% 9.05M 2s
Step #6 - "build-e2e":   1250K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  9% 11.1M 2s
Step #6 - "build-e2e":   1300K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  9% 15.4M 2s
Step #6 - "build-e2e":   1350K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  9% 10.2M 2s
Step #6 - "build-e2e":   1400K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 10%�[0m�[91m 11.5M 2s
Step #6 - "build-e2e":   1450K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 10% 13.3M 2s
Step #6 - "build-e2e":   1500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 10%�[0m�[91m 11.5M 2s�[0m�[91m
Step #6 - "build-e2e":   1550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 11% 11.1M 2s
Step #6 - "build-e2e":   1600K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 11% 11.9M 2s
Step #6 - "build-e2e":   1650K .......... ..�[0m�[91m........�[0m�[91m .�[0m�[91m....�[0m�[91m.�[0m�[91m..�[0m�[91m.. .......... ....�[0m�[91m...... 11% 11.1M 2s
Step #6 - "build-e2e":   1700K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 12% 17.1M 2s
Step #6 - "build-e2e":   1750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 12% 8.35M 2s
Step #6 - "build-e2e":   1800K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 13% 22.2M 2s
Step #6 - "build-e2e":   1850K ....�[0m�[91m...... .......... .......... ......�[0m�[91m.... .......... 13% 14.7M 2s
Step #6 - "build-e2e":   1900K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 13% 10.6M 1s�[0m�[91m
Step #6 - "build-e2e":   1950K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 14% 13.4M 1s
Step #6 - "build-e2e":   2000K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 14% 11.2M 1s
Step #6 - "build-e2e":   2050K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 14% 17.8M 1s
Step #6 - "build-e2e":   2100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 15% 16.3M 1s
Step #6 - "build-e2e":   2150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 15% 17.7M 1s
Step #6 - "build-e2e":   2200K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 15% 11.5M�[0m�[91m 1s
Step #6 - "build-e2e":   2250K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 16% 16.0M 1s
Step #6 - "build-e2e":   2300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m.�[0m�[91m....... 16% 20.1M 1s�[0m�[91m
Step #6 - "build-e2e":   2350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 16% 10.5M 1s
Step #6 - "build-e2e":   2400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 17% 17.3M 1s
Step #6 - "build-e2e":   2450K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 17% 18.7M 1s
Step #6 - "build-e2e":   2500K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 17% 11.7M 1s
Step #6 - "build-e2e":   2550K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 18% 21.8M 1s
Step #6 - "build-e2e":   2600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 18% 16.7M 1s
Step #6 - "build-e2e":   2650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 19% 11.1M 1s
Step #6 - "build-e2e":   2700K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 19% 30.2M 1s�[0m�[91m
Step #6 - "build-e2e":   2750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 19% 14.8M 1s
Step #6 - "build-e2e":   2800K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 20% 24.8M 1s
Step #6 - "build-e2e":   2850K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 20% 11.0M 1s
Step #6 - "build-e2e":   2900K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 20% 21.8M 1s�[0m�[91m
Step #6 - "build-e2e":   2950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 21% 20.1M 1s
Step #6 - "build-e2e":   3000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 21% 30.6M 1s
Step #6 - "build-e2e":   3050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 21% 11.8M 1s
Step #6 - "build-e2e":   3100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 22% 24.5M 1s�[0m�[91m
Step #6 - "build-e2e":   3150K .......... .......... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 22% 16.4M 1s
Step #6 - "build-e2e":   3200K .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 22% 14.3M 1s
Step #6 - "build-e2e":   3250K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 23% 25.8M 1s
Step #6 - "build-e2e":   3300K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 23% 18.7M 1s
Step #6 - "build-e2e":   3350K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .........�[0m�[91m. 23% 25.3M 1s
Step #6 - "build-e2e":   3400K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... 24% 13.1M 1s
Step #6 - "build-e2e":   3450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 24% 42.7M 1s
Step #6 - "build-e2e":   3500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 25% 20.0M 1s�[0m�[91m
Step #6 - "build-e2e":   3550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 25% 17.4M 1s
Step #6 - "build-e2e":   3600K ......�[0m�[91m.... .......... ..........�[0m�[91m .......... ......�[0m�[91m.... 25% 13.3M 1s
Step #6 - "build-e2e":   3650K .......... ..�[0m�[91m........ .......... .....�[0m�[91m..... ....�[0m�[91m...... 26% 44.5M 1s
Step #6 - "build-e2e":   3700K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 26% 27.3M 1s
Step #6 - "build-e2e":   3750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 26% 16.1M 1s
Step #6 - "build-e2e":   3800K ......�[0m�[91m.... ...�[0m�[91m.�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 27% 35.4M 1s
Step #6 - "build-e2e":   3850K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 27% 14.9M 1s
Step #6 - "build-e2e":   3900K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m 27% 49.4M�[0m�[91m 1s�[0m�[91m
Step #6 - "build-e2e":   3950K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 28% 15.9M 1s
Step #6 - "build-e2e":   4000K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 28% 24.6M 1s
Step #6 - "build-e2e":   4050K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 28% 25.0M 1s
Step #6 - "build-e2e":   4100K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 29% 19.0M 1s�[0m�[91m
Step #6 - "build-e2e":   4150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 29% 26.0M�[0m�[91m 1s
Step #6 - "build-e2e":   4200K .....�[0m�[91m.�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 29% 17.2M 1s
Step #6 - "build-e2e":   4250K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 30% 34.4M 1s
Step #6 - "build-e2e":   4300K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 30% 39.8M 1s�[0m�[91m
Step #6 - "build-e2e":   4350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 31% 18.9M 1s
Step #6 - "build-e2e":   4400K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 31% 20.9M 1s
Step #6 - "build-e2e":   4450K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 31% 20.7M 1s
Step #6 - "build-e2e":   4500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 32% 34.8M 1s
Step #6 - "build-e2e":   4550K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 32% 35.0M 1s
Step #6 - "build-e2e":   4600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 32% 23.9M 1s
Step #6 - "build-e2e":   4650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 33% 21.6M 1s
Step #6 - "build-e2e":   4700K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 33%�[0m�[91m 73.5M 1s�[0m�[91m
Step #6 - "build-e2e":   4750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 33% 17.0M 1s
Step #6 - "build-e2e":   4800K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 34% 23.2M 1s
Step #6 - "build-e2e":   4850K .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... 34% 22.2M 1s
Step #6 - "build-e2e":   4900K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m......... ..�[0m�[91m........ 34% 34.9M 1s
Step #6 - "build-e2e":   4950K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 35% 47.8M 1s
Step #6 - "build-e2e":   5000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 35% 18.0M 1s
Step #6 - "build-e2e":   5050K .......... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 35%�[0m�[91m 75.3M 1s
Step #6 - "build-e2e":   5100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 36% 22.5M�[0m�[91m 1s
Step #6 - "build-e2e":   5150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 36% 17.4M 1s
Step #6 - "build-e2e":   5200K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 37% 33.5M 1s
Step #6 - "build-e2e":   5250K .......... ..�[0m�[91m........ .........�[0m�[91m. ......�[0m�[91m.... ....�[0m�[91m...... 37% 41.4M 1s
Step #6 - "build-e2e":   5300K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 37% 26.3M 1s�[0m�[91m
Step #6 - "build-e2e":   5350K�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 38% 26.1M 1s
Step #6 - "build-e2e":   5400K ...�[0m�[91m....... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 38% 17.7M 1s
Step #6 - "build-e2e":   5450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 38% 60.8M 1s
Step #6 - "build-e2e":   5500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 39% 31.7M 1s�[0m�[91m
Step #6 - "build-e2e":   5550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 39% 39.9M 1s
Step #6 - "build-e2e":   5600K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 39% 27.5M 1s
Step #6 - "build-e2e":   5650K .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... 40% 26.1M 1s
Step #6 - "build-e2e":   5700K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 40% 80.0M 1s
Step #6 - "build-e2e":   5750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 40% 15.3M 1s
Step #6 - "build-e2e":   5800K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 41%�[0m�[91m 89.1M 1s
Step #6 - "build-e2e":   5850K .....�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 41% 26.9M 1s
Step #6 - "build-e2e":   5900K ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... ..�[0m�[91m........ 41% 49.4M 1s�[0m�[91m
Step #6 - "build-e2e":   5950K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 42% 30.8M 1s
Step #6 - "build-e2e":   6000K�[0m�[91m .......... ..�[0m�[91m..�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 42% 25.4M 1s
Step #6 - "build-e2e":   6050K .......... ..........�[0m�[91m ........�[0m�[91m.. .......... .......... 42% 22.9M 1s�[0m�[91m
Step #6 - "build-e2e":   6100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 43% 34.4M 1s
Step #6 - "build-e2e":   6150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 43% 52.2M 1s�[0m�[91m
Step #6 - "build-e2e":   6200K .....�[0m�[91m.�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 44% 30.8M 1s
Step #6 - "build-e2e":   6250K�[0m�[91m ....�[0m�[91m...... ..........�[0m�[91m .......... .......... ....�[0m�[91m...... 44% 32.1M 1s
Step #6 - "build-e2e":   6300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 44% 50.6M 1s�[0m�[91m
Step #6 - "build-e2e":   6350K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 45% 13.9M 1s
Step #6 - "build-e2e":   6400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 45% 64.8M 1s
Step #6 - "build-e2e":   6450K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 45% 37.4M 1s
Step #6 - "build-e2e":   6500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 46% 65.8M 1s
Step #6 - "build-e2e":   6550K ........�[0m�[91m.. .......... .......... ..........�[0m�[91m .......... 46% 33.2M 1s
Step #6 - "build-e2e":   6600K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 46%�[0m�[91m 38.9M 1s
Step #6 - "build-e2e":   6650K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m....�[0m�[91m.�[0m�[91m.�[0m�[91m.... .......... 47% 42.0M 0s
Step #6 - "build-e2e":   6700K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 47% 55.2M 0s�[0m�[91m
Step #6 - "build-e2e":   6750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 47% 14.9M 0s
Step #6 - "build-e2e":   6800K .......... ....�[0m�[91m...... ......�[0m�[91m....�[0m�[91m .......... ......�[0m�[91m.... 48% 38.8M 0s
Step #6 - "build-e2e":   6850K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... 48% 68.4M 0s�[0m�[91m
Step #6 - "build-e2e":   6900K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 48% 33.8M 0s�[0m�[91m
Step #6 - "build-e2e":   6950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 49% 68.7M 0s
Step #6 - "build-e2e":   7000K�[0m�[91m ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 49% 35.1M 0s
Step #6 - "build-e2e":   7050K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 50% 42.7M 0s
Step #6 - "build-e2e":   7100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 50% 18.8M 0s�[0m�[91m
Step #6 - "build-e2e":   7150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 50% 37.2M 0s
Step #6 - "build-e2e":   7200K .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. .......... 51% 55.9M 0s
Step #6 - "build-e2e":   7250K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 51% 28.9M 0s
Step #6 - "build-e2e":   7300K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 51% 42.2M 0s
Step #6 - "build-e2e":   7350K .......�[0m�[91m.�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 52% 63.2M 0s
Step #6 - "build-e2e":   7400K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 52% 64.0M 0s
Step #6 - "build-e2e":   7450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 52% 41.9M 0s
Step #6 - "build-e2e":   7500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 53% 15.5M 0s�[0m�[91m
Step #6 - "build-e2e":   7550K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 53% 42.6M 0s
Step #6 - "build-e2e":   7600K .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 53% 71.7M 0s
Step #6 - "build-e2e":   7650K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 54% 35.2M 0s
Step #6 - "build-e2e":   7700K ..�[0m�[91m.�[0m�[91m.......�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 54% 43.3M 0s�[0m�[91m
Step #6 - "build-e2e":   7750K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 54% 49.3M 0s�[0m�[91m
Step #6 - "build-e2e":   7800K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 55%�[0m�[91m  117M 0s
Step #6 - "build-e2e":   7850K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 55% 39.1M 0s
Step #6 - "build-e2e":   7900K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 56% 48.7M 0s
Step #6 - "build-e2e":   7950K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 56% 18.8M 0s
Step #6 - "build-e2e":   8000K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 56% 41.2M 0s
Step #6 - "build-e2e":   8050K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 57% 44.8M 0s
Step #6 - "build-e2e":   8100K ..........�[0m�[91m .......... .......... ..........�[0m�[91m ..�[0m�[91m.�[0m�[91m....... 57% 57.5M 0s
Step #6 - "build-e2e":   8150K ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... ........�[0m�[91m.. 57% 42.6M 0s
Step #6 - "build-e2e":   8200K .......... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 58% 48.8M 0s
Step #6 - "build-e2e":   8250K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 58% 48.4M 0s
Step #6 - "build-e2e":   8300K ..�[0m�[91m........ ........�[0m�[91m.. .......�[0m�[91m... ....�[0m�[91m...... ..�[0m�[91m........ 58% 84.9M 0s�[0m�[91m
Step #6 - "build-e2e":   8350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m .......... 59%�[0m�[91m 40.9M 0s
Step #6 - "build-e2e":   8400K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 59% 23.6M 0s
Step #6 - "build-e2e":   8450K .......... ..�[0m�[91m........ ......�[0m�[91m..�[0m�[91m.. .......... ....�[0m�[91m...... 59% 30.4M 0s
Step #6 - "build-e2e":   8500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 60% 90.7M 0s
Step #6 - "build-e2e":   8550K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 60% 48.0M 0s
Step #6 - "build-e2e":   8600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 60% 2.08M 0s
Step #6 - "build-e2e":   8650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 61% 40.2M 0s
Step #6 - "build-e2e":   8700K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 61% 25.6M 0s�[0m�[91m
Step #6 - "build-e2e":   8750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 62% 17.7M 0s
Step #6 - "build-e2e":   8800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 62%�[0m�[91m 26.0M 0s
Step #6 - "build-e2e":   8850K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 62% 17.4M 0s
Step #6 - "build-e2e":   8900K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 63% 31.8M 0s
Step #6 - "build-e2e":   8950K .......�[0m�[91m.�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 63%�[0m�[91m 29.4M 0s
Step #6 - "build-e2e":   9000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........�[0m�[91m 63% 34.6M 0s
Step #6 - "build-e2e":   9050K ....�[0m�[91m...... ..�[0m�[91m.�[0m�[91m.......�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 64%�[0m�[91m 41.9M 0s
Step #6 - "build-e2e":   9100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 64% 29.1M 0s�[0m�[91m
Step #6 - "build-e2e":   9150K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 64% 29.3M 0s
Step #6 - "build-e2e":   9200K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m .......... .......... 65%�[0m�[91m 55.0M 0s
Step #6 - "build-e2e":   9250K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 65% 32.5M 0s
Step #6 - "build-e2e":   9300K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 65% 57.2M 0s
Step #6 - "build-e2e":   9350K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 66%�[0m�[91m 34.7M 0s
Step #6 - "build-e2e":   9400K .....�[0m�[91m.�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 66% 34.1M 0s
Step #6 - "build-e2e":   9450K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. .......... �[0m�[91m....�[0m�[91m...... 66% 50.5M 0s
Step #6 - "build-e2e":   9500K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 67% 70.4M 0s�[0m�[91m
Step #6 - "build-e2e":   9550K ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... .......... 67% 35.8M 0s
Step #6 - "build-e2e":   9600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 68% 42.3M 0s
Step #6 - "build-e2e":   9650K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 68% 42.9M 0s
Step #6 - "build-e2e":   9700K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m 68% 93.6M 0s�[0m�[91m
Step #6 - "build-e2e":   9750K .......... ......�[0m�[91m.... .......... .......... .......... 69% 39.6M 0s
Step #6 - "build-e2e":   9800K .......... .......... .......... .......... .......... 69% 39.5M 0s
Step #6 - "build-e2e":   9850K .......... .......... ........�[0m�[91m.. .......... ....�[0m�[91m...... 69% 36.7M 0s
Step #6 - "build-e2e":   9900K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 70% 60.2M 0s
Step #6 - "build-e2e":   9950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 70% 61.1M 0s
Step #6 - "build-e2e":  10000K .�[0m�[91m.....�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 70% 44.9M 0s
Step #6 - "build-e2e":  10050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 71% 40.8M 0s
Step #6 - "build-e2e":  10100K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 71% 54.7M 0s�[0m�[91m
Step #6 - "build-e2e":  10150K .......... .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 71% 41.3M 0s
Step #6 - "build-e2e":  10200K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 72% 44.3M 0s
Step #6 - "build-e2e":  10250K .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 72% 86.9M 0s
Step #6 - "build-e2e":  10300K ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... .......... 72%�[0m�[91m 45.3M 0s�[0m�[91m
Step #6 - "build-e2e":  10350K .......... .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 73% 36.9M 0s
Step #6 - "build-e2e":  10400K .......... ....�[0m�[91m...... ..�[0m�[91m........ .......�[0m�[91m.�[0m�[91m.. .......... 73% 93.1M 0s
Step #6 - "build-e2e":  10450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 74% 40.3M 0s
Step #6 - "build-e2e":  10500K�[0m�[91m ..�[0m�[91m........ ........�[0m�[91m.. .......... ..�[0m�[91m..�[0m�[91m...... .......... 74% 50.1M 0s�[0m�[91m
Step #6 - "build-e2e":  10550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... 74% 39.0M 0s
Step #6 - "build-e2e":  10600K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 75% 41.7M 0s
Step #6 - "build-e2e":  10650K .......... ..�[0m�[91m........ .....�[0m�[91m..... .......... ....�[0m�[91m...... 75%  212M 0s
Step #6 - "build-e2e":  10700K ..�[0m�[91m........�[0m�[91m .......... .......... ....�[0m�[91m...... .......... 75% 41.5M 0s�[0m�[91m
Step #6 - "build-e2e":  10750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 76% 44.0M 0s
Step #6 - "build-e2e":  10800K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... 76% 62.9M 0s
Step #6 - "build-e2e":  10850K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 76%  132M 0s�[0m�[91m
Step #6 - "build-e2e":  10900K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 77%�[0m�[91m 34.7M 0s�[0m�[91m
Step #6 - "build-e2e":  10950K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 77% 30.3M 0s
Step #6 - "build-e2e":  11000K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m .......... ...�[0m�[91m...�[0m�[91m.... 77%  128M�[0m�[91m 0s
Step #6 - "build-e2e":  11050K ....�[0m�[91m...... ..�[0m�[91m........ .......... .......... ....�[0m�[91m...... 78% 28.8M 0s
Step #6 - "build-e2e":  11100K ..�[0m�[91m........ .......... ......�[0m�[91m.... ....�[0m�[91m...... .......... 78%  201M 0s�[0m�[91m
Step #6 - "build-e2e":  11150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 78% 18.3M 0s
Step #6 - "build-e2e":  11200K .......... .......... ..�[0m�[91m........ .......... ......�[0m�[91m.... 79%  229M 0s
Step #6 - "build-e2e":  11250K .......... ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m......�[0m�[91m 79%  188M 0s
Step #6 - "build-e2e":  11300K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 79%  220M 0s
Step #6 - "build-e2e":  11350K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... 80%  112M 0s
Step #6 - "build-e2e":  11400K�[0m�[91m .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 80% 49.0M 0s
Step #6 - "build-e2e":  11450K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 81% 39.8M 0s
Step #6 - "build-e2e":  11500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 81% 35.0M 0s
Step #6 - "build-e2e":  11550K ........�[0m�[91m.. .......... .......... ..........�[0m�[91m .......... 81%  172M 0s
Step #6 - "build-e2e":  11600K ......�[0m�[91m.... .......... ..�[0m�[91m.�[0m�[91m....... ........�[0m�[91m.. .......... 82% 65.1M 0s
Step #6 - "build-e2e":  11650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 82% 33.0M 0s
Step #6 - "build-e2e":  11700K .�[0m�[91m.�[0m�[91m........�[0m�[91m .......... .......... ....�[0m�[91m...... .......... 82% 18.2M 0s�[0m�[91m
Step #6 - "build-e2e":  11750K .......... ...�[0m�[91m...�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 83%  101M 0s
Step #6 - "build-e2e":  11800K ......�[0m�[91m.... ....�[0m�[91m...... .......... ........�[0m�[91m.. .......... 83%  220M 0s
Step #6 - "build-e2e":  11850K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 83% 63.9M 0s
Step #6 - "build-e2e":  11900K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 84% 51.7M 0s
Step #6 - "build-e2e":  11950K .......... ......�[0m�[91m.... .......... ..........�[0m�[91m .......... 84% 54.7M 0s
Step #6 - "build-e2e":  12000K ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... .......... 84%  188M 0s
Step #6 - "build-e2e":  12050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 85% 56.2M�[0m�[91m 0s
Step #6 - "build-e2e":  12100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ 85% 63.9M 0s�[0m�[91m
Step #6 - "build-e2e":  12150K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 85% 54.8M 0s
Step #6 - "build-e2e":  12200K ....�[0m�[91m...... ....�[0m�[91m...... ..�[0m�[91m........ .......... ......�[0m�[91m.... 86% 45.5M 0s
Step #6 - "build-e2e":  12250K .......... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 86%  140M 0s
Step #6 - "build-e2e":  12300K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ...�[0m�[91m....... 87% 18.3M 0s
Step #6 - "build-e2e":  12350K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 87%  138M 0s�[0m�[91m
Step #6 - "build-e2e":  12400K ......�[0m�[91m.... ....�[0m�[91m...... .�[0m�[91m.�[0m�[91m........ .......... ....�[0m�[91m...... 87%�[0m�[91m 50.8M 0s
Step #6 - "build-e2e":  12450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 88% 57.7M 0s
Step #6 - "build-e2e":  12500K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 88%  217M 0s�[0m�[91m
Step #6 - "build-e2e":  12550K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 88% 63.8M 0s
Step #6 - "build-e2e":  12600K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... .......... 89% 50.4M 0s
Step #6 - "build-e2e":  12650K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 89% 53.4M�[0m�[91m 0s
Step #6 - "build-e2e":  12700K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 89% 60.9M 0s
Step #6 - "build-e2e":  12750K ........�[0m�[91m.. ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. 90%  215M 0s
Step #6 - "build-e2e":  12800K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 90% 56.6M 0s
Step #6 - "build-e2e":  12850K .......... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 90% 67.4M 0s
Step #6 - "build-e2e":  12900K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... .......... 91% 21.7M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":  12950K ........�[0m�[91m.. ......�[0m�[91m.... ..........�[0m�[91m .......... ........�[0m�[91m.. 91% 85.8M 0s
Step #6 - "build-e2e":  13000K ......�[0m�[91m.... ....�[0m�[91m...... .......... .......... ......�[0m�[91m.... 91%  172M 0s
Step #6 - "build-e2e":  13050K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 92% 71.4M 0s
Step #6 - "build-e2e":  13100K�[0m�[91m ..........�[0m�[91m .......... ......�[0m�[91m.... .......... .......... 92%�[0m�[91m 61.7M 0s
Step #6 - "build-e2e":  13150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. 93% 54.0M 0s
Step #6 - "build-e2e":  13200K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ .......... .......... 93%  228M 0s
Step #6 - "build-e2e":  13250K ..�[0m�[91m..�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 93%�[0m�[91m 60.2M 0s
Step #6 - "build-e2e":  13300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... �[0m�[91m..�[0m�[91m........ 94% 51.3M 0s�[0m�[91m
Step #6 - "build-e2e":  13350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 94% 59.5M 0s
Step #6 - "build-e2e":  13400K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 94% 62.5M 0s
Step #6 - "build-e2e":  13450K .......... ..�[0m�[91m........�[0m�[91m .......... .......... ..........�[0m�[91m 95%  139M 0s
Step #6 - "build-e2e":  13500K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 95% 61.6M 0s
Step #6 - "build-e2e":  13550K .......... .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 95%�[0m�[91m 21.9M 0s
Step #6 - "build-e2e":  13600K .......... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 96%  102M 0s
Step #6 - "build-e2e":  13650K .......... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 96%  224M 0s
Step #6 - "build-e2e":  13700K ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 96% 83.6M 0s�[0m�[91m
Step #6 - "build-e2e":  13750K .......... ......�[0m�[91m.... .......... .......... .......... 97% 49.9M 0s
Step #6 - "build-e2e":  13800K .......... .......... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 97% 57.1M 0s
Step #6 - "build-e2e":  13850K .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... 97%  140M 0s
Step #6 - "build-e2e":  13900K ..........�[0m�[91m .......... �[0m�[91m.......... ....�[0m�[91m...... ..�[0m�[91m........ 98%  144M 0s
Step #6 - "build-e2e":  13950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 98% 65.3M 0s
Step #6 - "build-e2e":  14000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 99% 70.6M 0s
Step #6 - "build-e2e":  14050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 99% 50.4M 0s
Step #6 - "build-e2e":  14100K .......... ........�[0m�[91m.. .......... ....�[0m�[91m..�[0m�[91m.... ..�[0m�[91m........ 99%  168M 0s�[0m�[91m
Step #6 - "build-e2e":  14150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m......             100% 78.0M=0.6s
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0m�[91m2018-08-01 21:26:47 (22.1 MB/s) - '/tmp/build/consul_1.2.1_linux_amd64.zip' saved [14529496/14529496]
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0mArchive:  /tmp/build/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e":   inflating: /usr/local/bin/consul   
Step #6 - "build-e2e": Consul v1.2.1
Step #6 - "build-e2e": Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents)
Step #2: c5665f9cf3a5: Pull complete
Step #6 - "build-e2e": Removing intermediate container 69e00d42a31a
Step #6 - "build-e2e":  ---> c8cadc31b59a
Step #6 - "build-e2e": Step 16/20 : RUN echo "export PATH=/usr/local/go/bin:/go/bin/:\$PATH" >> /root/.bashrc
Step #6 - "build-e2e":  ---> Running in c782fccfb1a5
Step #6 - "build-e2e": Removing intermediate container c782fccfb1a5
Step #6 - "build-e2e":  ---> 90464f87a907
Step #6 - "build-e2e": Step 17/20 : COPY *.sh /root/
Step #6 - "build-e2e":  ---> 829e312effa3
Step #6 - "build-e2e": Step 18/20 : RUN chmod +x /root/*.sh
Step #6 - "build-e2e":  ---> Running in 717ae82e00f7
Step #6 - "build-e2e": Removing intermediate container 717ae82e00f7
Step #6 - "build-e2e":  ---> 13218d7d5d07
Step #6 - "build-e2e": Step 19/20 : WORKDIR /go
Step #6 - "build-e2e": Removing intermediate container 3e54d17f52b3
Step #6 - "build-e2e":  ---> bffce89a7c21
Step #6 - "build-e2e": Step 20/20 : ENTRYPOINT [ "/root/entrypoint.sh" ]
Step #6 - "build-e2e":  ---> Running in 2ea0059fa9c6
Step #6 - "build-e2e": Removing intermediate container 2ea0059fa9c6
Step #6 - "build-e2e":  ---> 5a21642b09f2
Step #6 - "build-e2e": Successfully built 5a21642b09f2
Step #6 - "build-e2e": Successfully tagged e2e-runner:latest
Finished Step #6 - "build-e2e"
Step #2: e4c28ca52668: Pull complete
Step #2: dbfd4861be3b: Pull complete
Step #2: 52baa227d04b: Pull complete
Step #2: 3de9e10d3c4a: Pull complete
Step #2: 0fde949df4cb: Pull complete
Step #2: bbb4ae4b3a0e: Pull complete
Step #2: e7ddacc33042: Pull complete
Step #2: 155337a61985: Pull complete
Step #2: 9ea3e29c33ca: Pull complete
Step #2: 132215a25d02: Pull complete
Step #2: e1ec9832b584: Pull complete
Step #2: ad2eb320baee: Pull complete
Step #2: 0f40db4b1d03: Pull complete
Step #2: 2e326f32948c: Pull complete
Step #2: f69887a665aa: Pull complete
Step #2: 784d73adfed5: Pull complete
Step #2: 48aa0c91e3f0: Pull complete
Step #2: Digest: sha256:b8746a641b0bc2b9a5137c918d933c060fb28d94417b566d91d39278e3341441
Step #2: Status: Downloaded newer image for gcr.io/agones-images/agones-build:0465c3abeb
Finished Step #2
Starting Step #3 - "lint"
Step #3 - "lint": Already have image: make-docker
Step #3 - "lint": mkdir -p ~/.kube
Step #3 - "lint": mkdir -p /workspace/build//.config/gcloud
Step #3 - "lint": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones -w /go/src/agones.dev/agones  agones-build:0465c3abeb bash -c \
Step #3 - "lint": 	"/root/gen-lint-exclude.sh && gometalinter --config .exclude.gometalinter.json --deadline=15m -t --skip vendor ./..."
Step #3 - "lint": runtime/cgo: runtime/cgo: pthread_create failed: Resource temporarily unavailablepthread_create failed: Resource temporarily unavailable
Step #3 - "lint": 
Step #3 - "lint": SIGABRT: abort
Step #3 - "lint": PC=0x7f15dd253fff m=21 sigcode=18446744073709551610
Step #3 - "lint": 
Step #3 - "lint": goroutine 0 [idle]:
Step #3 - "lint": runtime: unknown pc 0x7f15dd253fff
Step #3 - "lint": stack: frame={sp:0x7f15b6ffc8f8, fp:0x0} stack=[0x7f15b67fd2f0,0x7f15b6ffcef0)
Step #3 - "lint": 00007f15b6ffc7f8:  2525252525252525  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc808:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc818:  0000000000000000  000000ffffffffff 
Step #3 - "lint": 00007f15b6ffc828:  0000000000000000  000000c4201423c0 
Step #3 - "lint": 00007f15b6ffc838:  000000c42013d310  000000c420ade900 
Step #3 - "lint": 00007f15b6ffc848:  000000c42034c000  000000c42036c000 
Step #3 - "lint": 00007f15b6ffc858:  000000c42038c000  000000c42034c000 
Step #3 - "lint": 00007f15b6ffc868:  000000c42036c000  000000c42038c000 
Step #3 - "lint": 00007f15b6ffc878:  000000c4203ac000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc888:  000000c4203ec000  000000c42040c000 
Step #3 - "lint": 00007f15b6ffc898:  000000c42042c000  000000c42044c000 
Step #3 - "lint": 00007f15b6ffc8a8:  000000c42046c000  000000c42048c000 
Step #3 - "lint": 00007f15b6ffc8b8:  000000c4204ac000  000000c4204cc000 
Step #3 - "lint": 00007f15b6ffc8c8:  000000c4204ec000  000000c42050c000 
Step #3 - "lint": 00007f15b6ffc8d8:  000000c42052c000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc8e8:  0000000000000000  3fdbaf8ae37e4f41 
Step #3 - "lint": 00007f15b6ffc8f8: <0000000000000000  fffffffe7fffffff 
Step #3 - "lint": 00007f15b6ffc908:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc918:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc928:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc938:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc948:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc958:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc968:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc978:  ffffffffffffffff  00007f15dd5bb6e0 
Step #3 - "lint": 00007f15b6ffc988:  00007f15dd25542a  0000000000000020 
Step #3 - "lint": 00007f15b6ffc998:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9a8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9b8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9c8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9d8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9e8:  0000000000000000  0000000000000000 
Step #3 - "lint": runtime: unknown pc 0x7f15dd253fff
Step #3 - "lint": stack: frame={sp:0x7f15b6ffc8f8, fp:0x0} stack=[0x7f15b67fd2f0,0x7f15b6ffcef0)
Step #3 - "lint": 00007f15b6ffc7f8:  2525252525252525  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc808:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc818:  0000000000000000  000000ffffffffff 
Step #3 - "lint": 00007f15b6ffc828:  0000000000000000  000000c4201423c0 
Step #3 - "lint": 00007f15b6ffc838:  000000c42013d310  000000c420ade900 
Step #3 - "lint": 00007f15b6ffc848:  000000c42034c000  000000c42036c000 
Step #3 - "lint": 00007f15b6ffc858:  000000c42038c000  000000c42034c000 
Step #3 - "lint": 00007f15b6ffc868:  000000c42036c000  000000c42038c000 
Step #3 - "lint": 00007f15b6ffc878:  000000c4203ac000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc888:  000000c4203ec000  000000c42040c000 
Step #3 - "lint": 00007f15b6ffc898:  000000c42042c000  000000c42044c000 
Step #3 - "lint": 00007f15b6ffc8a8:  000000c42046c000  000000c42048c000 
Step #3 - "lint": 00007f15b6ffc8b8:  000000c4204ac000  000000c4204cc000 
Step #3 - "lint": 00007f15b6ffc8c8:  000000c4204ec000  000000c42050c000 
Step #3 - "lint": 00007f15b6ffc8d8:  000000c42052c000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc8e8:  0000000000000000  3fdbaf8ae37e4f41 
Step #3 - "lint": 00007f15b6ffc8f8: <0000000000000000  fffffffe7fffffff 
Step #3 - "lint": 00007f15b6ffc908:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc918:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc928:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc938:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc948:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc958:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc968:  ffffffffffffffff  ffffffffffffffff 
Step #3 - "lint": 00007f15b6ffc978:  ffffffffffffffff  00007f15dd5bb6e0 
Step #3 - "lint": 00007f15b6ffc988:  00007f15dd25542a  0000000000000020 
Step #3 - "lint": 00007f15b6ffc998:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9a8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9b8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9c8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9d8:  0000000000000000  0000000000000000 
Step #3 - "lint": 00007f15b6ffc9e8:  0000000000000000  0000000000000000 
Step #3 - "lint": 
Step #3 - "lint": goroutine 1 [chan send, 2 minutes]:
Step #3 - "lint": main.runLinters(0xc4202393b0, 0xc4202c6240, 0x24, 0x24, 0x8, 0xc4201dce60, 0x0, 0x24, 0x24)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:116 +0xa0a
Step #3 - "lint": main.main()
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/main.go:232 +0x518
Step #3 - "lint": 
Step #3 - "lint": goroutine 58 [chan receive, 3 minutes]:
Step #3 - "lint": main.filterIssuesViaDirectives.func1(0xc4203129c0, 0xc420170300, 0xc420ae0000)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/directives.go:191 +0x42
Step #3 - "lint": created by main.filterIssuesViaDirectives
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/directives.go:190 +0x71
Step #3 - "lint": 
Step #3 - "lint": goroutine 46 [select, 3 minutes]:
Step #3 - "lint": main.executeLinter(0x1, 0xc420096a50, 0xc420ae2800, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420096a50, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x1, 0xc420ae2800, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 66 [select, 4 minutes]:
Step #3 - "lint": main.executeLinter(0x2, 0xc420097230, 0xc4202a2000, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420097230, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x2, 0xc4202a2000, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 82 [IO wait, 4 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91af80, 0x72, 0xc420155ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42016c298, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42016c298, 0xc420194001, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42016c280, 0xc420194000, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc420128070, 0xc420194000, 0x200, 0x200, 0xc420194000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc420128070, 0xc420194000, 0x200, 0x200, 0x0, 0x0, 0xc420155e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc42023e000, 0x6aa6a0, 0xc420128070, 0x7f15dd8d6020, 0xc42023e000, 0x61f501)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc42023e000, 0x6aa6a0, 0xc420128070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc42023e000, 0x6aa6a0, 0xc420128070, 0x25, 0x40, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420096a50, 0xc420312960)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc420300000, 0xc420170180)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 227 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x2d, 0xc420097410, 0xc421592800, 0x65, 0x80, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420097410, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x2d, 0xc421592800, 0x65, 0x80)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 83 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x24, 0xc4212a25d8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc4201a0180, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc4201a0180, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc4201a0180, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc420300000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc420300000, 0xc42016a080, 0xc420020120)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 98 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x4, 0xc420167140, 0xc421328400, 0x26, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420167140, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x4, 0xc421328400, 0x26, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 14 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91aeb0, 0x72, 0xc4213a84e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc4202a6068, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc4202a6068, 0xc4213b2001, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc4202a6050, 0xc4213b2000, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42000e030, 0xc4213b2000, 0x200, 0x200, 0xc4213b2000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42000e030, 0xc4213b2000, 0x200, 0x200, 0x0, 0x0, 0xc4213a8660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc420308000, 0x6aa6a0, 0xc42000e030, 0x7f15dd8d6020, 0xc420308000, 0x1)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc420308000, 0x6aa6a0, 0xc42000e030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc420308000, 0x6aa6a0, 0xc42000e030, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc420226000, 0xc42000c0c0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 15 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x26, 0xc4213a8dd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc421368000, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc421368000, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc421368000, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc420226000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc420226000, 0xc42005a5a0, 0xc4213b4000)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 230 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0xe0, 0xc420151dd8, 0x1000004, 0x0, 0x0, 0xc4202a4d80, 0xc42002d400, 0xc420151e20)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc42017efc0, 0x4b885b, 0xc420122fc8, 0xc420151ed0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc42017efc0, 0x0, 0xc420151f30, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc42017efc0, 0xc420151f90, 0x5d5cff, 0xc42011a4d8)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc421497ce0, 0xc420151fb0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc421497ce0, 0xc42135cc30, 0xc4201c2d20)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 30 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x5, 0xc420125470, 0xc4213d6400, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420125470, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x5, 0xc4213d6400, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 32 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91b050, 0x72, 0xc4201544e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42016c3d8, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42016c3d8, 0xc4213ee201, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42016c3c0, 0xc4213ee200, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc420128098, 0xc4213ee200, 0x200, 0x200, 0xc4213ee200, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc420128098, 0xc4213ee200, 0x200, 0x200, 0x0, 0x0, 0xc420154660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc42023e070, 0x6aa6a0, 0xc420128098, 0x7f15dd8d6020, 0xc42023e070, 0x1)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc42023e070, 0x6aa6a0, 0xc420128098, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc42023e070, 0x6aa6a0, 0xc420128098, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc420300420, 0xc4201703a0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 33 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x2f, 0xc420154dd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc42001e690, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc42001e690, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc42001e690, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc420300420, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc420300420, 0xc42016a140, 0xc420322420)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 16 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x6, 0xc4202385a0, 0xc420080c00, 0x27, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc4202385a0, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x6, 0xc420080c00, 0x27, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 47 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91ade0, 0x72, 0xc4212a34e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42141a068, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42141a068, 0xc420194201, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42141a050, 0xc420194200, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc421418010, 0xc420194200, 0x200, 0x200, 0xc420194200, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc421418010, 0xc420194200, 0x200, 0x200, 0x0, 0x0, 0xc4212a3660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc420328000, 0x6aa6a0, 0xc421418010, 0x7f15dd8d6020, 0xc420328000, 0x1)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc420328000, 0x6aa6a0, 0xc421418010, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc420328000, 0x6aa6a0, 0xc421418010, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc42140c000, 0xc4213f2040)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 48 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x36, 0xc4212a3dd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc42014c210, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc42014c210, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc42014c210, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc42140c000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc42140c000, 0xc42135c050, 0xc420020240)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 245 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x30, 0xc421db47b0, 0xc421292c00, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc421db47b0, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x30, 0xc421292c00, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 231 [select, 5 minutes]:
Step #3 - "lint": main.executeLinter(0x2e, 0xc42011d560, 0xc4202a3000, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc42011d560, 0xc420312960, 0xc4202100e0, 0xc42011e110, 0x2e, 0xc4202a3000, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 130 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91ad10, 0x72, 0xc42014e4e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc420122748, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc420122748, 0xc421610601, 0x587, 0x587)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc420122730, 0xc421610679, 0x587, 0x587, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42013e250, 0xc421610679, 0x587, 0x587, 0xc421610600, 0xc420194400, 0x79)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42013e250, 0xc421610679, 0x587, 0x587, 0x79, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc42030c1c0, 0x6aa6a0, 0xc42013e250, 0x7f15dd8d6020, 0xc42030c1c0, 0x61f501)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc42030c1c0, 0x6aa6a0, 0xc42013e250, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc42030c1c0, 0x6aa6a0, 0xc42013e250, 0x26, 0x40, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc4201258f0, 0xc420312960)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc420324580, 0xc42012a8a0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 131 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x3c, 0xc4213a75d8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc4202ec390, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc4202ec390, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc4202ec390, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc420324580, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc420324580, 0xc42135c0d0, 0xc4213c0360)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 233 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0xe8, 0xc421488dd8, 0x1000004, 0x0, 0x0, 0xc421490180, 0xc42002d400, 0xc421488e20)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc42017f230, 0x4b885b, 0xc42016d338, 0xc421488ed0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc42017f230, 0x0, 0xc421488f30, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc42017f230, 0xc421488f90, 0x5d5cff, 0xc420ae1198)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc42160cc60, 0xc421488fb0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc42160cc60, 0xc42135d340, 0xc4201c3680)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 229 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91ac40, 0x72, 0xc4213a3ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc4201235a8, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc4201235a8, 0xc42170c701, 0x163b, 0x163b)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc420123590, 0xc42170c7c5, 0x163b, 0x163b, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42013e508, 0xc42170c7c5, 0x163b, 0x163b, 0x5e, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42013e508, 0xc42170c7c5, 0x163b, 0x163b, 0x5e, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc420242af0, 0x6aa6a0, 0xc42013e508, 0x7f15dd8d6020, 0xc420242af0, 0xc4213a3e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc420242af0, 0x6aa6a0, 0xc42013e508, 0x0, 0x0, 0x0, 0xc4213a3f90, 0x5d3753, 0xc421496b00)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc420242af0, 0x6aa6a0, 0xc42013e508, 0x404de5, 0xc4201c2720, 0x6a8711)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc4201c2720, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc421497ce0, 0xc42012b580)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 232 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91a900, 0x72, 0xc4213a7ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc420123dc8, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc420123dc8, 0xc421498801, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc420123db0, 0xc421498800, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42013e6a8, 0xc421498800, 0x200, 0x200, 0xc421498800, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42013e6a8, 0xc421498800, 0x200, 0x200, 0x631240, 0x4508f0, 0xc4213a7e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4216c1500, 0x6aa6a0, 0xc42013e6a8, 0x7f15dd8d6020, 0xc4216c1500, 0xc4213a7e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4216c1500, 0x6aa6a0, 0xc42013e6a8, 0x0, 0x0, 0x0, 0xc4213a7f90, 0x5d3790, 0x666f40)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4216c1500, 0x6aa6a0, 0xc42013e6a8, 0x404de5, 0xc420323080, 0x6a8711)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420323080, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc42160cc60, 0xc42000c1c0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 247 [syscall, 5 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x518, 0xc4212a05d8, 0x1000004, 0x0, 0x0, 0xc421550900, 0xc420028a00, 0xc4212a0620)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc42017e1b0, 0x4b885b, 0xc4213b7dd8, 0xc4212a06d0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc42017e1b0, 0x0, 0xc4212a0730, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc42017e1b0, 0xc4212a0790, 0x5d5cff, 0xc4213aa6b8)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc42140cc60, 0xc4212a07b0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc42140cc60, 0xc42005aac0, 0xc4213c07e0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 246 [IO wait, 5 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f15dd91a9d0, 0x72, 0xc4212a0ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42141a748, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42141a748, 0xc4213b2801, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42141a730, 0xc4213b2800, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc421418130, 0xc4213b2800, 0x200, 0x200, 0xc4213b2800, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc421418130, 0xc4213b2800, 0x200, 0x200, 0x631240, 0x4508f0, 0xc4212a0e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc42030db20, 0x6aa6a0, 0xc421418130, 0x7f15dd8d6020, 0xc42030db20, 0xc4212a0e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc42030db20, 0x6aa6a0, 0xc421418130, 0x0, 0x0, 0x0, 0xc4212a0f90, 0x5d3753, 0xc421dd4840)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc42030db20, 0x6aa6a0, 0xc421418130, 0x404de5, 0xc4213c0300, 0x6a8711)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc4213c0300, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc42140cc60, 0xc4213f28c0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": rax    0x0
Step #3 - "lint": rbx    0x6
Step #3 - "lint": rcx    0x7f15dd253fff
Step #3 - "lint": rdx    0x0
Step #3 - "lint": rdi    0x2
Step #3 - "lint": rsi    0x7f15b6ffc880
Step #3 - "lint": rbp    0x6ac51a
Step #3 - "lint": rsp    0x7f15b6ffc8f8
Step #3 - "lint": r8     0x0
Step #3 - "lint": r9     0x7f15b6ffc880
Step #3 - "lint": r10    0x8
Step #3 - "lint": r11    0x246
Step #3 - "lint": r12    0x7f15a80008c0
Step #3 - "lint": r13    0xf1
Step #3 - "lint": r14    0x11
Step #3 - "lint": r15    0x0
Step #3 - "lint": rip    0x7f15dd253fff
Step #3 - "lint": rflags 0x246
Step #3 - "lint": cs     0x33
Step #3 - "lint": fs     0x0
Step #3 - "lint": gs     0x0
Step #3 - "lint": make: *** [lint] Error 2
Step #3 - "lint": Makefile:156: recipe for target 'lint' failed
Finished Step #3 - "lint"
ERROR
ERROR: build step 3 "make-docker" failed: exit status 2

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: d5c68fdc-5183-459e-bc13-f235ef82606f

The following development artifacts have been built, and will exist for the next 30 days:

Copy link
Member

@markmandel markmandel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So good that you have this working!

Some questions on how things work, and some general tidy up type things - but this looks awesome, and something we can definitely extend on in the future.

@@ -85,6 +88,10 @@ include ./includes/$(osinclude)
# personal includes, excluded from the git repository
-include ./local-includes/*.mk

ifdef DOCKER_RUN
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I'm curious - what does this do, and why is it necessary?

Copy link
Collaborator Author

@cyriltovena cyriltovena Aug 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I couldn't get our docker run type of target get the gcloud service account of the cloud builder to access our kubernetes cluster, so I ended up using a custom 2e2 image which is a FROM gcr.io/cloud-builders/gcloud and has a gcloud already configured automagically :squirrel:.

Since I have run without docker in the build system, I need to call the make target without doing a docker run and calling the go test command straight. So this line make sure I don't run ensure-build-image if DOCKER_RUN is empty, which otherwise would fail.

I wanted to keep the runner using our make targets (install and test-2e2) so we don't end up with too many targets. Another option would be to have special targets only for the runner and we would replicate the go test and the helm install command.

I'm ok to shift toward a multiple makefile system if you think that is clearer, let me know.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SGTM. I (think) I follow.

I can't think of a better way to do this 😄 so yeah, let's run with it for now 👍

@@ -87,6 +92,19 @@ RUN wget -q https://static.rust-lang.org/rustup/archive/1.11.0/${RUST_ARCH}/rust
RUN cargo install protobuf-codegen --vers 2.0.2
RUN cargo install grpcio-compiler --vers 0.3.0

# set up Consul.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I take it we need consul locally to run e2e against local clusters?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No we don’t, I left it in case we would need it for testing but I’m happy to remove it, WDYT ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd say let's remove it - it's an added step we have then have to maintain, and keep up to date.

var pollErr error
var readyGs *v1alpha1.GameServer

err := wait.Poll(2*time.Second, timeout, func() (bool, error) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we Poll or PollImmediate ? If we Poll we always wait for 2 second, when maybe we don't need to?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes you're right ! let me change that

"testing"

"agones.dev/agones/pkg/apis/stable/v1alpha1"
agonesFramework "agones.dev/agones/test/e2e/framework"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason we can't use "framework"?

Pretty sure it's not canonical go to use camelCase here. @enocom I'll defer to you?

Looking at https://golang.org/doc/effective_go.html#package-names

"By convention, packages are given lower case, single-word names; there should be no need for underscores or mixedCaps"

"Another convention is that the package name is the base name of its source directory; the package in src/encoding/base64 is imported as "encoding/base64" but has name base64, not encoding_base64 and not encodingBase64."

But I couldn't find anything specific about import aliases.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, @markmandel, you're right. Named imports should be all lowercase.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

framework is used by a global variable, do you think I should not use a global variable ? I could renamed that import to e2eframework ?

t.Fatalf("Could ping GameServer: %v", err)
}

assert.Equal(t, reply, "ACK: Hello World !\n")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👯‍♀️ 👯‍♀️ 👯‍♀️ 👯‍♀️ 👯‍♀️ 👯‍♀️ 👯‍♀️

@@ -0,0 +1,35 @@
#!/usr/bin/env bash

# Copyright 2017 Google Inc. All Rights Reserved.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2018 😄

@@ -0,0 +1,19 @@
#!/usr/bin/env bash

# Copyright 2017 Google Inc. All Rights Reserved.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2018 😄

@@ -0,0 +1,44 @@
# Copyright 2017 Google Inc. All rights reserved.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2018 😄

@@ -0,0 +1,16 @@
# E2E Testing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we add a section to our Development guide on this - at least we should add the new major Make targets?

I feel like there should be a "how to run e2e tests" section, or maybe section per deployment? Or something.

Then I can follow the guide, and make sure it all works 😄

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes but I think only make e2e would be sufficient no ? Do you see a need to talk about the e2e cluster ? Since people could just use their development cluster or minikube which is already well documented.

So far how to run e2e is pretty straightforward after you've setup your cluster, just run make test-e2e. I can add small sections about how just after talking about Running a Test Minikube cluster which would explain how to run against those 2 clusters and include the make target.

Do you think I should explain the e2e image and gcloud-e2e targets which are exclusively for cloud builder, I'm actually not sure that's why I ask ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I think you are right - we should document how to run the e2e tests, I don't think we need to document how they are built.

Will need to also have make minikube-test-e2e in the minikube section but that's about it.

👍

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've updated the build/ documentation, let me know.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

what to run, timeout length. Let's say I want to run all tests in "test/e2e/":

```
$ go test -v ./test/e2e/ --kubeconfig "$HOME/.kube/config" --gameserver-image=gcr.io/agones-images/cpp-simple-server:0.2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we be running tests this way, or through make e2e ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you should use make e2e, I will change.

build/Makefile Outdated
$(agones_package)/sdks/...

# Runs end-to-end tests on the current configured cluster
test-e2e:
Copy link
Member

@markmandel markmandel Aug 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We'll also need a minikube-test-e2e target, just because it has special mounting for .kube config and should run on host network. Should be able to lift an existing example, or I can write it if you want.

(Just tried it against minikube, and it didn't work - but that's not surprising)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let me see if I can get it working.

@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: b5cbe5be-7bc4-4878-9c20-e3dfc6a08ebf

Build Logs
starting build "b5cbe5be-7bc4-4878-9c20-e3dfc6a08ebf"

FETCHSOURCE
Initialized empty Git repository in /workspace/.git/
From https://source.developers.google.com/p/agones-images/r/agones
 * branch            77ff8487876ac55b5b86a235449e2e098af6fdc9 -> FETCH_HEAD
HEAD is now at 77ff848 removes consul,add make target test-e2e-minikube,fix framework canonical import
BUILD
Starting Step #0
Starting Step #6 - "build-e2e"
Step #6 - "build-e2e": Already have image (with digest): gcr.io/cloud-builders/docker
Step #0: Already have image (with digest): ubuntu
Step #6 - "build-e2e": Sending build context to Docker daemon  7.168kB

Step #6 - "build-e2e": Step 1/20 : FROM gcr.io/cloud-builders/gcloud-slim
Step #6 - "build-e2e": latest: Pulling from cloud-builders/gcloud-slim
Step #6 - "build-e2e": 33e0b8928960: Already exists
Step #6 - "build-e2e": 422dc07b14c8: Already exists
Step #6 - "build-e2e": 3c2cba919283: Already exists
Step #6 - "build-e2e": c9736d7bc3b3: Already exists
Step #6 - "build-e2e": Digest: sha256:fb515f3f06deca2ed4a7fd77bcebb0d373466fdca07956215ef9c84b15a5cec1
Step #6 - "build-e2e": Status: Downloaded newer image for gcr.io/cloud-builders/gcloud-slim:latest
Step #6 - "build-e2e":  ---> 8588fdf1c6d7
Step #6 - "build-e2e": Step 2/20 : RUN apt-get update &&     apt-get install -y wget psmisc make python jq zip &&     apt-get clean
Step #6 - "build-e2e":  ---> Running in bb68d3b237ff
Finished Step #0
Starting Step #1
Step #1: Already have image (with digest): gcr.io/cloud-builders/docker
Step #6 - "build-e2e": Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
Step #6 - "build-e2e": Get:2 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Step #6 - "build-e2e": Get:3 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial InRelease [17.5 kB]
Step #6 - "build-e2e": Get:4 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main amd64 Packages [3328 B]
Step #6 - "build-e2e": Get:5 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Step #6 - "build-e2e": Get:6 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [530 kB]
Step #6 - "build-e2e": Get:7 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main Translation-en [2380 B]
Step #6 - "build-e2e": Get:8 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Step #6 - "build-e2e": Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1201 kB]
Step #1: Sending build context to Docker daemon  127.6MB

Step #1: Step 1/3 : FROM gcr.io/cloud-builders/docker
Step #1:  ---> d3d5efd4ad58
Step #1: Step 2/3 : RUN apt-get install make
Step #1:  ---> Running in fbb64f9c08be
Step #6 - "build-e2e": Get:10 http://archive.ubuntu.com/ubuntu xenial/main Translation-en [568 kB]
Step #6 - "build-e2e": Get:11 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [8344 B]
Step #6 - "build-e2e": Get:12 http://archive.ubuntu.com/ubuntu xenial/restricted Translation-en [2908 B]
Step #6 - "build-e2e": Get:13 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [7532 kB]
Step #6 - "build-e2e": Get:14 http://security.ubuntu.com/ubuntu xenial-security/main Translation-en [227 kB]
Step #1: Reading package lists...
Step #6 - "build-e2e": Get:15 http://archive.ubuntu.com/ubuntu xenial/universe Translation-en [4354 kB]
Step #6 - "build-e2e": Get:16 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [7204 B]
Step #6 - "build-e2e": Get:17 http://security.ubuntu.com/ubuntu xenial-security/restricted Translation-en [2152 B]
Step #6 - "build-e2e": Get:18 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [362 kB]
Step #1: Building dependency tree...
Step #1: Reading state information...
Step #6 - "build-e2e": Get:19 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [144 kB]
Step #6 - "build-e2e": Get:20 http://archive.ubuntu.com/ubuntu xenial/multiverse Translation-en [106 kB]
Step #6 - "build-e2e": Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [820 kB]
Step #6 - "build-e2e": Get:22 http://security.ubuntu.com/ubuntu xenial-security/universe Translation-en [136 kB]
Step #6 - "build-e2e": Get:23 http://archive.ubuntu.com/ubuntu xenial-updates/main Translation-en [338 kB]
Step #6 - "build-e2e": Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [7556 B]
Step #6 - "build-e2e": Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/restricted Translation-en [2272 B]
Step #6 - "build-e2e": Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [675 kB]
Step #6 - "build-e2e": Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [272 kB]
Step #6 - "build-e2e": Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [16.4 kB]
Step #1: make is already the newest version (4.1-6).
Step #1: 0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
Step #6 - "build-e2e": Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse Translation-en [8344 B]
Step #6 - "build-e2e": Get:30 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [6744 B]
Step #6 - "build-e2e": Get:31 http://archive.ubuntu.com/ubuntu xenial-backports/main Translation-en [4180 B]
Step #6 - "build-e2e": Get:32 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7420 B]
Step #6 - "build-e2e": Get:33 http://archive.ubuntu.com/ubuntu xenial-backports/universe Translation-en [3996 B]
Step #6 - "build-e2e": Get:34 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3456 B]
Step #6 - "build-e2e": Get:35 http://security.ubuntu.com/ubuntu xenial-security/multiverse Translation-en [1744 B]
Step #1: Removing intermediate container fbb64f9c08be
Step #1:  ---> dfd251e00190
Step #1: Step 3/3 : ENTRYPOINT ["/usr/bin/make"]
Step #1:  ---> Running in 24d155b1e6ec
Step #1: Removing intermediate container 24d155b1e6ec
Step #1:  ---> 733cf090bab0
Step #1: Successfully built 733cf090bab0
Step #1: Successfully tagged make-docker:latest
Finished Step #1
Starting Step #2
Step #2: Already have image: make-docker
Step #2: docker pull gcr.io/agones-images/agones-build:050f6666cd && docker tag gcr.io/agones-images/agones-build:050f6666cd agones-build:050f6666cd
Step #2: Error response from daemon: manifest for gcr.io/agones-images/agones-build:050f6666cd not found
Step #2: make: [pull-build-image] Error 1 (ignored)
Step #2: Makefile:252: recipe for target 'pull-build-image' failed
Finished Step #2
Starting Step #3 - "lint"
Step #3 - "lint": Already have image: make-docker
Step #3 - "lint": mkdir -p ~/.kube
Step #3 - "lint": mkdir -p /workspace/build//.config/gcloud
Step #3 - "lint": Could not find agones-build:050f6666cd image. Building...
Step #3 - "lint": make[1]: Entering directory '/workspace/build'
Step #3 - "lint": docker build --tag=agones-build:050f6666cd /workspace/build//build-image 
Step #3 - "lint": Sending build context to Docker daemon  18.43kB

Step #3 - "lint": Step 1/30 : FROM gcr.io/agones-images/grpc-cxx:1.12
Step #3 - "lint": 1.12: Pulling from agones-images/grpc-cxx
Step #3 - "lint": cc1a78bfd46b: Pulling fs layer
Step #3 - "lint": 65ec5fb8fee4: Pulling fs layer
Step #3 - "lint": f792a8d67267: Pulling fs layer
Step #6 - "build-e2e": Fetched 17.9 MB in 3s (4492 kB/s)
Step #3 - "lint": cc1a78bfd46b: Verifying Checksum
Step #3 - "lint": cc1a78bfd46b: Download complete
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Building dependency tree...
Step #6 - "build-e2e": Reading state information...
Step #3 - "lint": 65ec5fb8fee4: Verifying Checksum
Step #3 - "lint": 65ec5fb8fee4: Download complete
Step #6 - "build-e2e": python is already the newest version (2.7.12-1~16.04).
Step #6 - "build-e2e": python set to manually installed.
Step #6 - "build-e2e": The following packages were automatically installed and are no longer required:
Step #6 - "build-e2e":   cpp cpp-5 gcc-5 libasan2 libatomic1 libc-dev-bin libc6-dev libcc1-0
Step #6 - "build-e2e":   libcilkrts5 libexpat1-dev libgcc-5-dev libgomp1 libisl15 libitm1 liblsan0
Step #6 - "build-e2e":   libmpc3 libmpfr4 libmpx0 libpython-dev libpython2.7 libpython2.7-dev
Step #6 - "build-e2e":   libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
Step #6 - "build-e2e":   python-pkg-resources python2.7-dev
Step #6 - "build-e2e": Use 'apt autoremove' to remove them.
Step #6 - "build-e2e": The following additional packages will be installed:
Step #6 - "build-e2e":   libonig2 unzip
Step #6 - "build-e2e": Suggested packages:
Step #6 - "build-e2e":   make-doc
Step #6 - "build-e2e": The following NEW packages will be installed:
Step #6 - "build-e2e":   jq libonig2 make psmisc unzip wget zip
Step #6 - "build-e2e": 0 upgraded, 7 newly installed, 0 to remove and 15 not upgraded.
Step #6 - "build-e2e": Need to get 746 kB/1046 kB of archives.
Step #6 - "build-e2e": After this operation, 3429 kB of additional disk space will be used.
Step #6 - "build-e2e": Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 psmisc amd64 22.21-2.1build1 [48.0 kB]
Step #6 - "build-e2e": Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libonig2 amd64 5.9.6-1ubuntu0.1 [86.7 kB]
Step #6 - "build-e2e": Get:3 http://archive.ubuntu.com/ubuntu xenial/universe amd64 jq amd64 1.5+dfsg-1 [144 kB]
Step #6 - "build-e2e": Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB]
Step #6 - "build-e2e": Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 unzip amd64 6.0-20ubuntu1 [158 kB]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 zip amd64 3.0-11 [158 kB]
Step #6 - "build-e2e": Fetched 746 kB in 0s (837 kB/s)
Step #6 - "build-e2e": Selecting previously unselected package psmisc.
Step #3 - "lint": cc1a78bfd46b: Pull complete
Step #6 - "build-e2e": (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 ... 17410 files and directories currently installed.)
Step #6 - "build-e2e": Preparing to unpack .../psmisc_22.21-2.1build1_amd64.deb ...
Step #6 - "build-e2e": Unpacking psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Selecting previously unselected package wget.
Step #6 - "build-e2e": Preparing to unpack .../wget_1.17.1-1ubuntu1.4_amd64.deb ...
Step #6 - "build-e2e": Unpacking wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Selecting previously unselected package libonig2:amd64.
Step #6 - "build-e2e": Preparing to unpack .../libonig2_5.9.6-1ubuntu0.1_amd64.deb ...
Step #6 - "build-e2e": Unpacking libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Selecting previously unselected package jq.
Step #6 - "build-e2e": Preparing to unpack .../jq_1.5+dfsg-1_amd64.deb ...
Step #6 - "build-e2e": Unpacking jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Selecting previously unselected package make.
Step #6 - "build-e2e": Preparing to unpack .../archives/make_4.1-6_amd64.deb ...
Step #6 - "build-e2e": Unpacking make (4.1-6) ...
Step #6 - "build-e2e": Selecting previously unselected package unzip.
Step #6 - "build-e2e": Preparing to unpack .../unzip_6.0-20ubuntu1_amd64.deb ...
Step #6 - "build-e2e": Unpacking unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Selecting previously unselected package zip.
Step #6 - "build-e2e": Preparing to unpack .../archives/zip_3.0-11_amd64.deb ...
Step #6 - "build-e2e": Unpacking zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #6 - "build-e2e": Processing triggers for mime-support (3.59ubuntu1) ...
Step #6 - "build-e2e": Setting up psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Setting up wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Setting up libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Setting up jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Setting up make (4.1-6) ...
Step #6 - "build-e2e": Setting up unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Setting up zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #3 - "lint": f792a8d67267: Verifying Checksum
Step #3 - "lint": f792a8d67267: Download complete
Step #6 - "build-e2e": Removing intermediate container bb68d3b237ff
Step #6 - "build-e2e":  ---> f0d6daaf3193
Step #6 - "build-e2e": Step 3/20 : WORKDIR /usr/local
Step #6 - "build-e2e": Removing intermediate container 146a0517039a
Step #6 - "build-e2e":  ---> e2c3253d1948
Step #6 - "build-e2e": Step 4/20 : ENV GO_VERSION=1.10.3
Step #6 - "build-e2e":  ---> Running in e8b3b94ad526
Step #6 - "build-e2e": Removing intermediate container e8b3b94ad526
Step #6 - "build-e2e":  ---> 39739a639e1e
Step #6 - "build-e2e": Step 5/20 : ENV GOPATH /go
Step #6 - "build-e2e":  ---> Running in 18e344c32bd2
Step #6 - "build-e2e": Removing intermediate container 18e344c32bd2
Step #6 - "build-e2e":  ---> 06bd609f3d2a
Step #6 - "build-e2e": Step 6/20 : RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz &&     tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}
Step #6 - "build-e2e":  ---> Running in 544380b3596b
Step #3 - "lint": 65ec5fb8fee4: Pull complete
Step #3 - "lint": f792a8d67267: Pull complete
Step #3 - "lint": Digest: sha256:d2b291925338cd368a17fc2e31b8d8fde6e80aa43eaf1bbad399634da5d8c57e
Step #3 - "lint": Status: Downloaded newer image for gcr.io/agones-images/grpc-cxx:1.12
Step #3 - "lint":  ---> 0dbae8794445
Step #3 - "lint": Step 2/30 : RUN apt-get update &&     apt-get install -y wget psmisc rsync make python bash-completion zip nano jq &&     apt-get clean
Step #3 - "lint":  ---> Running in 643112ed2e36
Step #3 - "lint": Get:1 http://security.debian.org/debian-security stretch/updates InRelease [94.3 kB]
Step #3 - "lint": Ign:2 http://deb.debian.org/debian stretch InRelease
Step #3 - "lint": Get:3 http://deb.debian.org/debian stretch-updates InRelease [91.0 kB]
Step #3 - "lint": Get:4 http://deb.debian.org/debian stretch Release [118 kB]
Step #3 - "lint": Get:5 http://deb.debian.org/debian stretch Release.gpg [2434 B]
Step #3 - "lint": Get:6 http://deb.debian.org/debian stretch-updates/main amd64 Packages.diff/Index [5164 B]
Step #3 - "lint": Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages 2018-07-20-2027.50.pdiff [1134 B]
Step #3 - "lint": Get:8 http://deb.debian.org/debian stretch-updates/main amd64 Packages 2018-07-31-2010.17.pdiff [1388 B]
Step #3 - "lint": Get:8 http://deb.debian.org/debian stretch-updates/main amd64 Packages 2018-07-31-2010.17.pdiff [1388 B]
Step #3 - "lint": Get:9 http://deb.debian.org/debian stretch/main amd64 Packages [9500 kB]
Step #3 - "lint": Get:10 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [468 kB]
Step #3 - "lint": Fetched 10.3 MB in 1s (7069 kB/s)
Step #3 - "lint": Reading package lists...
Step #3 - "lint": Reading package lists...
Step #3 - "lint": Building dependency tree...
Step #3 - "lint": Reading state information...
Step #3 - "lint": make is already the newest version (4.1-9.1).
Step #3 - "lint": rsync is already the newest version (3.1.2-1+deb9u1).
Step #3 - "lint": rsync set to manually installed.
Step #3 - "lint": The following additional packages will be installed:
Step #3 - "lint":   libjq1 libonig4 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib
Step #3 - "lint":   mime-support python-minimal python2.7 python2.7-minimal
Step #3 - "lint": Suggested packages:
Step #3 - "lint":   spell python-doc python-tk python2.7-doc binfmt-support
Step #3 - "lint": The following NEW packages will be installed:
Step #3 - "lint":   bash-completion jq libjq1 libonig4 libpython-stdlib libpython2.7-minimal
Step #3 - "lint":   libpython2.7-stdlib mime-support nano psmisc python python-minimal python2.7
Step #3 - "lint":   python2.7-minimal wget zip
Step #3 - "lint": 0 upgraded, 16 newly installed, 0 to remove and 22 not upgraded.
Step #3 - "lint": Need to get 6349 kB of archives.
Step #3 - "lint": After this operation, 25.4 MB of additional disk space will be used.
Step #3 - "lint": Get:1 http://deb.debian.org/debian stretch/main amd64 bash-completion all 1:2.1-4.3 [178 kB]
Step #3 - "lint": Get:2 http://deb.debian.org/debian stretch/main amd64 libpython2.7-minimal amd64 2.7.13-2+deb9u2 [389 kB]
Step #3 - "lint": Get:3 http://deb.debian.org/debian stretch/main amd64 python2.7-minimal amd64 2.7.13-2+deb9u2 [1382 kB]
Step #3 - "lint": Get:4 http://deb.debian.org/debian stretch/main amd64 python-minimal amd64 2.7.13-2 [40.5 kB]
Step #3 - "lint": Get:5 http://deb.debian.org/debian stretch/main amd64 mime-support all 3.60 [36.7 kB]
Step #3 - "lint": Get:6 http://deb.debian.org/debian stretch/main amd64 libpython2.7-stdlib amd64 2.7.13-2+deb9u2 [1896 kB]
Step #3 - "lint": Get:7 http://deb.debian.org/debian stretch/main amd64 python2.7 amd64 2.7.13-2+deb9u2 [285 kB]
Step #3 - "lint": Get:8 http://deb.debian.org/debian stretch/main amd64 libpython-stdlib amd64 2.7.13-2 [20.0 kB]
Step #3 - "lint": Get:9 http://deb.debian.org/debian stretch/main amd64 python amd64 2.7.13-2 [154 kB]
Step #3 - "lint": Get:10 http://deb.debian.org/debian stretch/main amd64 nano amd64 2.7.4-1 [485 kB]
Step #3 - "lint": Get:11 http://deb.debian.org/debian stretch/main amd64 wget amd64 1.18-5+deb9u2 [799 kB]
Step #3 - "lint": Get:12 http://deb.debian.org/debian stretch/main amd64 libonig4 amd64 6.1.3-2 [146 kB]
Step #3 - "lint": Get:13 http://deb.debian.org/debian stretch/main amd64 libjq1 amd64 1.5+dfsg-1.3 [123 kB]
Step #3 - "lint": Get:14 http://deb.debian.org/debian stretch/main amd64 jq amd64 1.5+dfsg-1.3 [58.6 kB]
Step #3 - "lint": Get:15 http://deb.debian.org/debian stretch/main amd64 psmisc amd64 22.21-2.1+b2 [123 kB]
Step #3 - "lint": Get:16 http://deb.debian.org/debian stretch/main amd64 zip amd64 3.0-11+b1 [234 kB]
Step #3 - "lint": �[91mdebconf: delaying package configuration, since apt-utils is not installed
Step #3 - "lint": �[0mFetched 6349 kB in 0s (17.2 MB/s)
Step #3 - "lint": Selecting previously unselected package bash-completion.
Step #3 - "lint": (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 ... 17165 files and directories currently installed.)
Step #3 - "lint": Preparing to unpack .../0-bash-completion_1%3a2.1-4.3_all.deb ...
Step #3 - "lint": Unpacking bash-completion (1:2.1-4.3) ...
Step #3 - "lint": Selecting previously unselected package libpython2.7-minimal:amd64.
Step #3 - "lint": Preparing to unpack .../1-libpython2.7-minimal_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking libpython2.7-minimal:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package python2.7-minimal.
Step #3 - "lint": Preparing to unpack .../2-python2.7-minimal_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking python2.7-minimal (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package python-minimal.
Step #3 - "lint": Preparing to unpack .../3-python-minimal_2.7.13-2_amd64.deb ...
Step #3 - "lint": Unpacking python-minimal (2.7.13-2) ...
Step #3 - "lint": Selecting previously unselected package mime-support.
Step #3 - "lint": Preparing to unpack .../4-mime-support_3.60_all.deb ...
Step #3 - "lint": Unpacking mime-support (3.60) ...
Step #3 - "lint": Selecting previously unselected package libpython2.7-stdlib:amd64.
Step #3 - "lint": Preparing to unpack .../5-libpython2.7-stdlib_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking libpython2.7-stdlib:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package python2.7.
Step #3 - "lint": Preparing to unpack .../6-python2.7_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking python2.7 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package libpython-stdlib:amd64.
Step #3 - "lint": Preparing to unpack .../7-libpython-stdlib_2.7.13-2_amd64.deb ...
Step #3 - "lint": Unpacking libpython-stdlib:amd64 (2.7.13-2) ...
Step #3 - "lint": Setting up libpython2.7-minimal:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Setting up python2.7-minimal (2.7.13-2+deb9u2) ...
Step #3 - "lint": Linking and byte-compiling packages for runtime python2.7...
Step #3 - "lint": Setting up python-minimal (2.7.13-2) ...
Step #3 - "lint": Selecting previously unselected package python.
Step #3 - "lint": (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 ... 18513 files and directories currently installed.)
Step #3 - "lint": Preparing to unpack .../0-python_2.7.13-2_amd64.deb ...
Step #3 - "lint": Unpacking python (2.7.13-2) ...
Step #3 - "lint": Selecting previously unselected package nano.
Step #3 - "lint": Preparing to unpack .../1-nano_2.7.4-1_amd64.deb ...
Step #3 - "lint": Unpacking nano (2.7.4-1) ...
Step #3 - "lint": Selecting previously unselected package wget.
Step #3 - "lint": Preparing to unpack .../2-wget_1.18-5+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking wget (1.18-5+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package libonig4:amd64.
Step #3 - "lint": Preparing to unpack .../3-libonig4_6.1.3-2_amd64.deb ...
Step #3 - "lint": Unpacking libonig4:amd64 (6.1.3-2) ...
Step #3 - "lint": Selecting previously unselected package libjq1:amd64.
Step #3 - "lint": Preparing to unpack .../4-libjq1_1.5+dfsg-1.3_amd64.deb ...
Step #3 - "lint": Unpacking libjq1:amd64 (1.5+dfsg-1.3) ...
Step #3 - "lint": Selecting previously unselected package jq.
Step #3 - "lint": Preparing to unpack .../5-jq_1.5+dfsg-1.3_amd64.deb ...
Step #3 - "lint": Unpacking jq (1.5+dfsg-1.3) ...
Step #3 - "lint": Selecting previously unselected package psmisc.
Step #3 - "lint": Preparing to unpack .../6-psmisc_22.21-2.1+b2_amd64.deb ...
Step #3 - "lint": Unpacking psmisc (22.21-2.1+b2) ...
Step #3 - "lint": Selecting previously unselected package zip.
Step #3 - "lint": Preparing to unpack .../7-zip_3.0-11+b1_amd64.deb ...
Step #3 - "lint": Unpacking zip (3.0-11+b1) ...
Step #3 - "lint": Setting up psmisc (22.21-2.1+b2) ...
Step #3 - "lint": Setting up mime-support (3.60) ...
Step #3 - "lint": Setting up bash-completion (1:2.1-4.3) ...
Step #3 - "lint": Setting up libonig4:amd64 (6.1.3-2) ...
Step #3 - "lint": Setting up zip (3.0-11+b1) ...
Step #3 - "lint": Setting up libjq1:amd64 (1.5+dfsg-1.3) ...
Step #3 - "lint": Setting up nano (2.7.4-1) ...
Step #3 - "lint": update-alternatives: using /bin/nano to provide /usr/bin/editor (editor) in auto mode
Step #3 - "lint": update-alternatives: using /bin/nano to provide /usr/bin/pico (pico) in auto mode
Step #3 - "lint": Processing triggers for libc-bin (2.24-11+deb9u3) ...
Step #3 - "lint": Setting up wget (1.18-5+deb9u2) ...
Step #3 - "lint": Setting up libpython2.7-stdlib:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Setting up jq (1.5+dfsg-1.3) ...
Step #3 - "lint": Setting up python2.7 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Setting up libpython-stdlib:amd64 (2.7.13-2) ...
Step #3 - "lint": Setting up python (2.7.13-2) ...
Step #3 - "lint": Removing intermediate container 643112ed2e36
Step #3 - "lint":  ---> f37b36108415
Step #3 - "lint": Step 3/30 : WORKDIR /usr/local
Step #3 - "lint": Removing intermediate container d545bfb704c6
Step #3 - "lint":  ---> c3ca65920a83
Step #3 - "lint": Step 4/30 : ENV GO_VERSION=1.10.3
Step #3 - "lint":  ---> Running in f04d59bc5959
Step #3 - "lint": Removing intermediate container f04d59bc5959
Step #3 - "lint":  ---> 50142c2bf5b3
Step #3 - "lint": Step 5/30 : ENV GOPATH /go
Step #3 - "lint":  ---> Running in ed8ace40fcb0
Step #3 - "lint": Removing intermediate container ed8ace40fcb0
Step #3 - "lint":  ---> 08e1007d6cf2
Step #3 - "lint": Step 6/30 : RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz &&     tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}
Step #3 - "lint":  ---> Running in 5ab787ec23ff
Step #6 - "build-e2e": Removing intermediate container 544380b3596b
Step #6 - "build-e2e":  ---> c8061e279015
Step #6 - "build-e2e": Step 7/20 : ENV PATH /usr/local/go/bin:/go/bin:$PATH
Step #6 - "build-e2e":  ---> Running in abf3a7aad90d
Step #3 - "lint": Removing intermediate container 5ab787ec23ff
Step #3 - "lint":  ---> 1fb0b56457e6
Step #3 - "lint": Step 7/30 : WORKDIR /opt
Step #6 - "build-e2e": Removing intermediate container abf3a7aad90d
Step #6 - "build-e2e":  ---> 21594d2f8dd8
Step #6 - "build-e2e": Step 8/20 : ENV KUBECTL_VER 1.11.0
Step #6 - "build-e2e":  ---> Running in 33b8dc84ae72
Step #3 - "lint": Removing intermediate container 599876c3e119
Step #3 - "lint":  ---> 59095a1eb0f5
Step #3 - "lint": Step 8/30 : RUN wget -q https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.zip && unzip -q google-cloud-sdk.zip &&     rm google-cloud-sdk.zip &&     /opt/google-cloud-sdk/install.sh --usage-reporting=true --path-update=true --bash-completion=true --rc-path=/root/.bashrc
Step #3 - "lint":  ---> Running in 0ea8880473b8
Step #6 - "build-e2e": Removing intermediate container 33b8dc84ae72
Step #6 - "build-e2e":  ---> 2d7355fdd1d9
Step #6 - "build-e2e": Step 9/20 : RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &&     chmod go+rx ./kubectl &&     mv ./kubectl /usr/local/bin/kubectl
Step #6 - "build-e2e":  ---> Running in b6cca286ffed
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  D�[0m�[91mload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": �[0m�[91m
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 52.8M  100 52.8M    0     0  78.3M      0 --:--:-- --:--:-- --:--:-- 78.4M
Step #6 - "build-e2e": �[0mRemoving intermediate container b6cca286ffed
Step #6 - "build-e2e":  ---> b46330858cb3
Step #6 - "build-e2e": Step 10/20 : ENV HELM_VER 2.9.1
Step #6 - "build-e2e":  ---> Running in b6f4f7b44fb0
Step #6 - "build-e2e": Removing intermediate container b6f4f7b44fb0
Step #6 - "build-e2e":  ---> 5c4eab6c41e8
Step #6 - "build-e2e": Step 11/20 : ENV HELM_URL https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VER}-linux-amd64.tar.gz
Step #6 - "build-e2e":  ---> Running in be91ba68c8c0
Step #6 - "build-e2e": Removing intermediate container be91ba68c8c0
Step #6 - "build-e2e":  ---> 2e1b98ca7f3d
Step #6 - "build-e2e": Step 12/20 : RUN curl -L  ${HELM_URL} > /tmp/helm.tar.gz     && tar -zxvf /tmp/helm.tar.gz -C /tmp     && mv /tmp/linux-amd64/helm /usr/local/bin/helm     && chmod go+rx /usr/local/bin/helm     && rm /tmp/helm.tar.gz && rm -rf /tmp/linux-amd64
Step #6 - "build-e2e":  ---> Running in 2afea080e4bb
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":       �[0m�[91m                           Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0     �[0m�[91m 0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 8946k  100 8946k    0     0  24.0M      0 --:--:-- --:--:-- --:--:-- 24.1M
Step #6 - "build-e2e": �[0mlinux-amd64/
Step #6 - "build-e2e": linux-amd64/README.md
Step #6 - "build-e2e": linux-amd64/helm
Step #3 - "lint": Welcome to the Google Cloud SDK!
Step #3 - "lint": WARNING: You appear to be running this script as root. This may cause 
Step #3 - "lint": the installation to be inaccessible to users other than the root user.
Step #6 - "build-e2e": linux-amd64/LICENSE
Step #6 - "build-e2e": Removing intermediate container 2afea080e4bb
Step #6 - "build-e2e":  ---> f45bdc36c62f
Step #6 - "build-e2e": Step 13/20 : ENV CONSUL_VERSION=1.2.1
Step #6 - "build-e2e":  ---> Running in 3897e0c265a9
Step #6 - "build-e2e": Removing intermediate container 3897e0c265a9
Step #6 - "build-e2e":  ---> e1c77eb852a1
Step #6 - "build-e2e": Step 14/20 : ENV HASHICORP_RELEASES=https://releases.hashicorp.com
Step #6 - "build-e2e":  ---> Running in eab2c04378bb
Step #6 - "build-e2e": Removing intermediate container eab2c04378bb
Step #6 - "build-e2e":  ---> 739300347b3a
Step #6 - "build-e2e": Step 15/20 : RUN mkdir -p /tmp/build &&     wget ${HASHICORP_RELEASES}/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip     -P /tmp/build/  &&     unzip -d /usr/local/bin/ /tmp/build/consul_${CONSUL_VERSION}_linux_amd64.zip &&     cd /tmp &&     rm -rf /tmp/build &&     chmod go+rx /usr/local/bin/consul &&     consul version
Step #6 - "build-e2e":  ---> Running in 60459d5d937e
Step #6 - "build-e2e": �[91m--2018-08-03 01:56:47--  https://releases.hashicorp.com/consul/1.2.1/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e": �[0m�[91mResolving releases.hashicorp.com (releases.hashicorp.com)... �[0m�[91m151.101.1.183, 151.101.65.183, 151.101.129.183, ...
Step #6 - "build-e2e": Connecting to releases.hashicorp.com (releases.hashicorp.com)|151.101.1.183|:443... �[0m�[91mconnected.
Step #6 - "build-e2e": �[0m�[91mHTTP request sent, awaiting response... �[0m�[91m200 OK
Step #6 - "build-e2e": Length: 14529496 (14M) [application/zip]
Step #6 - "build-e2e": Saving to: '/tmp/build/consul_1.2.1_linux_amd64.zip'
Step #6 - "build-e2e": �[0m�[91m
Step #6 - "build-e2e":      0K ..........�[0m�[91m ...�[0m�[91m...�[0m�[91m..�[0m�[91m.. ....�[0m�[91m..�[0m�[91m.... ..�[0m�[91m........ ........�[0m�[91m..  0% 2.01M 7s
Step #6 - "build-e2e":     50K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  0% 5.22M 5s
Step #6 - "build-e2e":    100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  1% 5.71M 4s
Step #6 - "build-e2e":    150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  1% 6.13M 4s
Step #6 - "build-e2e":    200K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  1% 5.90M 3s
Step #6 - "build-e2e":    250K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  2% 5.98M 3s
Step #6 - "build-e2e":    300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........  2% 6.16M 3s�[0m�[91m
Step #6 - "build-e2e":    350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  2% 5.32M 3s
Step #6 - "build-e2e":    400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m....  3% 8.55M 3s
Step #6 - "build-e2e":    450K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  3% 6.78M 3s
Step #6 - "build-e2e":    500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  3% 7.15M 3s
Step #6 - "build-e2e":    550K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  4% 7.08M 2s
Step #6 - "build-e2e":    600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  4% 8.73M 2s
Step #6 - "build-e2e":    650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  4% 7.43M 2s
Step #6 - "build-e2e":    700K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........  5% 8.99M 2s�[0m�[91m
Step #6 - "build-e2e":    750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  5% 6.76M 2s
Step #6 - "build-e2e":    800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m....  5% 8.36M 2s
Step #6 - "build-e2e":    850K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  6% 9.58M 2s
Step #6 - "build-e2e":    900K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  6% 7.37M 2s
Step #6 - "build-e2e":    950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  7% 12.9M 2s
Step #6 - "build-e2e":   1000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ..........  7% 7.69M 2s
Step #6 - "build-e2e":   1050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ..........  7% 12.1M 2s
Step #6 - "build-e2e":   1100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........  8% 8.10M 2s�[0m�[91m
Step #6 - "build-e2e":   1150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m..  8% 9.51M 2s
Step #6 - "build-e2e":   1200K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m....  8% 9.90M 2s
Step #6 - "build-e2e":   1250K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m......  9% 14.7M 2s
Step #6 - "build-e2e":   1300K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........  9% 10.7M 2s
Step #6 - "build-e2e":   1350K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m ..........  9% 9.77M 2s
Step #6 - "build-e2e":   1400K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 10% 15.0M 2s
Step #6 - "build-e2e":   1450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 10% 9.25M 2s
Step #6 - "build-e2e":   1500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 10% 12.5M 2s�[0m�[91m
Step #6 - "build-e2e":   1550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 11% 8.01M 2s
Step #6 - "build-e2e":   1600K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 11% 22.4M 2s
Step #6 - "build-e2e":   1650K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 11% 14.1M 2s
Step #6 - "build-e2e":   1700K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 12% 10.0M 2s
Step #6 - "build-e2e":   1750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 12% 17.9M 2s
Step #6 - "build-e2e":   1800K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 13% 14.5M 2s
Step #6 - "build-e2e":   1850K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 13% 10.5M 2s
Step #6 - "build-e2e":   1900K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 13% 18.2M 1s�[0m�[91m
Step #6 - "build-e2e":   1950K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 14% 8.73M 1s
Step #6 - "build-e2e":   2000K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 14% 18.2M 1s
Step #6 - "build-e2e":   2050K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 14% 20.3M 1s
Step #6 - "build-e2e":   2100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 15% 10.5M 1s
Step #6 - "build-e2e":   2150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 15% 12.1M 1s
Step #6 - "build-e2e":   2200K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 15% 33.7M 1s
Step #6 - "build-e2e":   2250K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 16% 10.3M 1s
Step #6 - "build-e2e":   2300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........ 16% 23.0M 1s�[0m�[91m
Step #6 - "build-e2e":   2350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 16% 14.6M 1s
Step #6 - "build-e2e":   2400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 17% 9.08M 1s
Step #6 - "build-e2e":   2450K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 17% 33.1M 1s
Step #6 - "build-e2e":   2500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 17% 19.8M 1s
Step #6 - "build-e2e":   2550K ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... ........�[0m�[91m.. 18% 21.4M 1s
Step #6 - "build-e2e":   2600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 18% 10.3M 1s
Step #6 - "build-e2e":   2650K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 19% 24.9M 1s
Step #6 - "build-e2e":   2700K ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... ..�[0m�[91m........ 19% 22.0M 1s�[0m�[91m
Step #6 - "build-e2e":   2750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 19% 9.50M 1s
Step #6 - "build-e2e":   2800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 20% 18.6M 1s
Step #6 - "build-e2e":   2850K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 20% 22.3M 1s
Step #6 - "build-e2e":   2900K ..........�[0m�[91m .......... .......... .......... ..�[0m�[91m........ 20% 25.6M 1s
Step #6 - "build-e2e":   2950K ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... .......... 21%�[0m�[91m 14.3M 1s
Step #6 - "build-e2e":   3000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 21% 18.2M 1s
Step #6 - "build-e2e":   3050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 21% 22.1M 1s
Step #6 - "build-e2e":   3100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 22% 26.4M 1s�[0m�[91m
Step #6 - "build-e2e":   3150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 22% 12.3M 1s
Step #6 - "build-e2e":   3200K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 22%�[0m�[91m 24.1M 1s
Step #6 - "build-e2e":   3250K .........�[0m�[91m. ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 23% 15.8M 1s
Step #6 - "build-e2e":   3300K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 23% 15.0M 1s
Step #6 - "build-e2e":   3350K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 23% 31.0M 1s
Step #6 - "build-e2e":   3400K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 24% 23.6M 1s
Step #6 - "build-e2e":   3450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 24% 21.3M 1s
Step #6 - "build-e2e":   3500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 25% 27.1M 1s�[0m�[91m
Step #6 - "build-e2e":   3550K .......... .......... .......... ..�[0m�[91m........ ........�[0m�[91m.. 25% 12.5M 1s
Step #6 - "build-e2e":   3600K .......... ....�[0m�[91m...... .......... ........�[0m�[91m.. ......�[0m�[91m.... 25% 25.4M 1s
Step #6 - "build-e2e":   3650K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 26% 20.5M 1s
Step #6 - "build-e2e":   3700K .......... ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 26% 24.1M 1s
Step #6 - "build-e2e":   3750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 26% 22.1M 1s
Step #6 - "build-e2e":   3800K ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 27% 18.5M 1s
Step #6 - "build-e2e":   3850K .......... ..�[0m�[91m........ .......... .......... �[0m�[91m....�[0m�[91m...... 27% 36.5M 1s
Step #6 - "build-e2e":   3900K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 27% 17.4M 1s
Step #6 - "build-e2e":   3950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 28%�[0m�[91m 40.9M 1s
Step #6 - "build-e2e":   4000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 28% 13.2M 1s
Step #6 - "build-e2e":   4050K ....�[0m�[91m...... ..........�[0m�[91m .......... .......... ....�[0m�[91m...... 28% 45.2M 1s
Step #6 - "build-e2e":   4100K ..�[0m�[91m........ .......... .......... ....�[0m�[91m...... .......... 29% 31.3M 1s�[0m�[91m
Step #6 - "build-e2e":   4150K .......... ....�[0m�[91m..�[0m�[91m.... .......... ..........�[0m�[91m ........�[0m�[91m.. 29% 15.8M 1s
Step #6 - "build-e2e":   4200K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... .......... 29% 18.2M 1s
Step #6 - "build-e2e":   4250K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 30% 28.0M 1s
Step #6 - "build-e2e":   4300K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 30% 36.7M 1s
Step #6 - "build-e2e":   4350K ........�[0m�[91m.. .......... .......... ..�[0m�[91m........�[0m�[91m .......... 31% 27.6M 1s
Step #6 - "build-e2e":   4400K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 31% 19.2M 1s
Step #6 - "build-e2e":   4450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 31% 18.4M 1s
Step #6 - "build-e2e":   4500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 32% 51.1M 1s�[0m�[91m
Step #6 - "build-e2e":   4550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 32% 22.3M 1s
Step #6 - "build-e2e":   4600K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 32% 29.7M 1s
Step #6 - "build-e2e":   4650K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... 33% 23.3M 1s
Step #6 - "build-e2e":   4700K ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 33% 14.8M 1s
Step #6 - "build-e2e":   4750K .......... .......... ....�[0m�[91m...... .......... .......... 33% 80.5M 1s
Step #6 - "build-e2e":   4800K ....�[0m�[91m..�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 34% 20.6M 1s
Step #6 - "build-e2e":   4850K .......... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 34%�[0m�[91m 62.4M 1s
Step #6 - "build-e2e":   4900K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 34% 25.5M 1s
Step #6 - "build-e2e":   4950K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..........�[0m�[91m ........�[0m�[91m.. 35% 24.8M 1s
Step #6 - "build-e2e":   5000K .......... .......... ..�[0m�[91m........�[0m�[91m .......... .......... 35% 19.2M 1s
Step #6 - "build-e2e":   5050K .......... ..�[0m�[91m........ .......... .......... ....�[0m�[91m...... 35% 31.8M 1s
Step #6 - "build-e2e":   5100K .......... .......... ......�[0m�[91m.... .......... .......... 36% 36.0M 1s
Step #6 - "build-e2e":   5150K ........�[0m�[91m.. .......... .......... ........�[0m�[91m..�[0m�[91m .......... 36% 29.5M 1s
Step #6 - "build-e2e":   5200K ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. .......... 37% 21.3M 1s
Step #6 - "build-e2e":   5250K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 37% 66.4M 1s
Step #6 - "build-e2e":   5300K ..�[0m�[91m........ .......... .......... ....�[0m�[91m...... .......... 37% 15.9M 1s�[0m�[91m
Step #6 - "build-e2e":   5350K .......... ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. 38% 42.5M 1s
Step #6 - "build-e2e":   5400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 38% 27.4M 1s
Step #6 - "build-e2e":   5450K ....�[0m�[91m...... �[0m�[91m..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 38% 23.5M 1s
Step #6 - "build-e2e":   5500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 39%  108M 1s
Step #6 - "build-e2e":   5550K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 39% 29.8M 1s
Step #6 - "build-e2e":   5600K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 39% 17.9M 1s
Step #6 - "build-e2e":   5650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 40% 36.4M 1s
Step #6 - "build-e2e":   5700K ..�[0m�[91m........ .......... ......�[0m�[91m.... ....�[0m�[91m...... .......... 40% 44.0M 1s�[0m�[91m
Step #6 - "build-e2e":   5750K .......... .......... .....�[0m�[91m..... ..�[0m�[91m........ ........�[0m�[91m.. 40% 28.6M 1s
Step #6 - "build-e2e":   5800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 41% 38.8M 1s
Step #6 - "build-e2e":   5850K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... 41% 25.2M 1s
Step #6 - "build-e2e":   5900K ..�[0m�[91m........ .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 41% 18.4M 1s
Step #6 - "build-e2e":   5950K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m .......... 42% 86.0M 1s
Step #6 - "build-e2e":   6000K ......�[0m�[91m.... .......... .......... .�[0m�[91m.......�[0m�[91m.. .......... 42% 25.1M 1s
Step #6 - "build-e2e":   6050K ....�[0m�[91m...... ..........�[0m�[91m .......... .......... ....�[0m�[91m...... 42% 67.2M�[0m�[91m 1s
Step #6 - "build-e2e":   6100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 43% 21.7M 1s�[0m�[91m
Step #6 - "build-e2e":   6150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 43% 24.6M 1s
Step #6 - "build-e2e":   6200K .......... ....�[0m�[91m...... .......... .......... ......�[0m�[91m.... 44%  107M 1s
Step #6 - "build-e2e":   6250K .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 44% 18.7M 1s
Step #6 - "build-e2e":   6300K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... .......... 44% 49.6M 1s�[0m�[91m
Step #6 - "build-e2e":   6350K ........�[0m�[91m.. .......... .......... .....�[0m�[91m.....�[0m�[91m .......... 45% 28.9M 1s
Step #6 - "build-e2e":   6400K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. .......... 45% 72.0M 1s
Step #6 - "build-e2e":   6450K ....�[0m�[91m...... ..........�[0m�[91m .......... .......... ....�[0m�[91m...... 45% 27.4M 1s
Step #6 - "build-e2e":   6500K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 46% 82.2M 1s�[0m�[91m
Step #6 - "build-e2e":   6550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... 46% 26.0M 1s
Step #6 - "build-e2e":   6600K ......�[0m�[91m.... ....�[0m�[91m...... .......... .......... ......�[0m�[91m.... 46% 19.9M 1s
Step #6 - "build-e2e":   6650K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 47% 53.4M 0s
Step #6 - "build-e2e":   6700K ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 47% 26.9M 0s
Step #6 - "build-e2e":   6750K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 47%�[0m�[91m 66.2M 0s
Step #6 - "build-e2e":   6800K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 48% 30.0M 0s
Step #6 - "build-e2e":   6850K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... .......... ....�[0m�[91m...... 48% 86.9M 0s
Step #6 - "build-e2e":   6900K ..�[0m�[91m........ .......... .......... ....�[0m�[91m...... .......... 48% 27.4M 0s
Step #6 - "build-e2e":   6950K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 49% 23.1M 0s
Step #6 - "build-e2e":   7000K .......... .......... ..........�[0m�[91m .......... .......... 49% 69.2M 0s
Step #6 - "build-e2e":   7050K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 50% 22.8M 0s
Step #6 - "build-e2e":   7100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 50% 68.8M 0s�[0m�[91m
Step #6 - "build-e2e":   7150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 50% 39.0M 0s
Step #6 - "build-e2e":   7200K .......... .......... ..�[0m�[91m........ .......... .......... 51% 55.9M 0s
Step #6 - "build-e2e":   7250K ....�[0m�[91m...... .......... ........�[0m�[91m.. ......�[0m�[91m.... .......... 51% 27.8M 0s
Step #6 - "build-e2e":   7300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 51% 41.9M 0s�[0m�[91m
Step #6 - "build-e2e":   7350K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 52% 22.8M 0s
Step #6 - "build-e2e":   7400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 52% 98.8M 0s
Step #6 - "build-e2e":   7450K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... 52% 26.5M 0s
Step #6 - "build-e2e":   7500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... .......... 53% 57.3M 0s�[0m�[91m
Step #6 - "build-e2e":   7550K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... 53% 29.4M 0s
Step #6 - "build-e2e":   7600K ......�[0m�[91m.... .......... ..........�[0m�[91m ........�[0m�[91m.. .......... 53%  112M 0s
Step #6 - "build-e2e":   7650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 54% 29.9M 0s
Step #6 - "build-e2e":   7700K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 54% 45.5M 0s�[0m�[91m
Step #6 - "build-e2e":   7750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 54% 49.1M 0s
Step #6 - "build-e2e":   7800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 55% 24.5M 0s
Step #6 - "build-e2e":   7850K .......... ..�[0m�[91m........ .......... ......�[0m�[91m.... ....�[0m�[91m...... 55% 36.2M 0s
Step #6 - "build-e2e":   7900K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... .�[0m�[91m.�[0m�[91m........ 56% 84.6M 0s�[0m�[91m
Step #6 - "build-e2e":   7950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 56% 33.9M 0s
Step #6 - "build-e2e":   8000K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 56% 49.0M 0s
Step #6 - "build-e2e":   8050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 57% 33.4M 0s
Step #6 - "build-e2e":   8100K ..�[0m�[91m........ .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 57% 78.5M 0s�[0m�[91m
Step #6 - "build-e2e":   8150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. 57% 30.9M 0s
Step #6 - "build-e2e":   8200K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... .......... 58% 38.5M 0s
Step #6 - "build-e2e":   8250K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 58% 56.5M 0s
Step #6 - "build-e2e":   8300K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 58% 40.1M 0s
Step #6 - "build-e2e":   8350K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 59% 70.9M 0s
Step #6 - "build-e2e":   8400K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 59% 36.7M 0s
Step #6 - "build-e2e":   8450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 59% 44.5M 0s
Step #6 - "build-e2e":   8500K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 60% 35.0M 0s�[0m�[91m
Step #6 - "build-e2e":   8550K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 60% 45.0M 0s
Step #6 - "build-e2e":   8600K .......... ....�[0m�[91m...... .......... ........�[0m�[91m.. ......�[0m�[91m.... 60% 39.3M 0s
Step #6 - "build-e2e":   8650K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... 61% 38.8M 0s
Step #6 - "build-e2e":   8700K .......... ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 61% 54.5M 0s
Step #6 - "build-e2e":   8750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 62% 67.7M 0s
Step #6 - "build-e2e":   8800K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. ......�[0m�[91m.... 62% 39.3M 0s�[0m�[91m
Step #6 - "build-e2e":   8850K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... .......... 62% 39.4M 0s�[0m�[91m
Step #6 - "build-e2e":   8900K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 63% 49.4M 0s�[0m�[91m
Step #6 - "build-e2e":   8950K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 63% 29.4M 0s
Step #6 - "build-e2e":   9000K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 63%  132M 0s
Step #6 - "build-e2e":   9050K ....�[0m�[91m...... ..�[0m�[91m........ .......... .......... ....�[0m�[91m...... 64% 30.8M 0s
Step #6 - "build-e2e":   9100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... .......... 64% 36.5M 0s�[0m�[91m
Step #6 - "build-e2e":   9150K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 64% 48.4M 0s
Step #6 - "build-e2e":   9200K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 65% 76.7M 0s
Step #6 - "build-e2e":   9250K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 65% 47.1M 0s
Step #6 - "build-e2e":   9300K ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... ..�[0m�[91m........ 65% 35.0M 0s�[0m�[91m
Step #6 - "build-e2e":   9350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... 66% 45.9M 0s
Step #6 - "build-e2e":   9400K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... ......�[0m�[91m.... 66% 80.2M 0s
Step #6 - "build-e2e":   9450K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 66% 32.4M 0s
Step #6 - "build-e2e":   9500K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ........�[0m�[91m.. 67%  244M 0s
Step #6 - "build-e2e":   9550K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 67%�[0m�[91m 29.1M 0s
Step #6 - "build-e2e":   9600K ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... ......�[0m�[91m.... 68% 35.7M 0s
Step #6 - "build-e2e":   9650K ....�[0m�[91m...... .......... .......... ......�[0m�[91m.... .......... 68% 81.6M 0s
Step #6 - "build-e2e":   9700K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 68%  300M 0s�[0m�[91m
Step #6 - "build-e2e":   9750K .......... .......... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 69% 30.5M 0s
Step #6 - "build-e2e":   9800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... .......... 69%�[0m�[91m 32.9M 0s
Step #6 - "build-e2e":   9850K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 69% 51.9M 0s
Step #6 - "build-e2e":   9900K ..�[0m�[91m........�[0m�[91m .......... .......... .......... ..�[0m�[91m........ 70% 77.3M 0s
Step #6 - "build-e2e":   9950K ........�[0m�[91m.. .......... ..�[0m�[91m..�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 70%  239M 0s
Step #6 - "build-e2e":  10000K ......�[0m�[91m.... .......... ..........�[0m�[91m ........�[0m�[91m.. .......... 70% 32.8M 0s
Step #6 - "build-e2e":  10050K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 71% 30.5M 0s
Step #6 - "build-e2e":  10100K �[0m�[91m..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 71% 25.2M 0s
Step #6 - "build-e2e":  10150K ........�[0m�[91m.. ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. 71% 54.4M 0s
Step #6 - "build-e2e":  10200K .......... .......... ..........�[0m�[91m .......... ......�[0m�[91m.... 72%  307M 0s
Step #6 - "build-e2e":  10250K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 72% 55.5M 0s
Step #6 - "build-e2e":  10300K ..�[0m�[91m........ .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 72% 38.9M 0s
Step #6 - "build-e2e":  10350K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 73% 52.7M 0s
Step #6 - "build-e2e":  10400K ...�[0m�[91m...�[0m�[91m.... .......... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... 73%  139M 0s
Step #6 - "build-e2e":  10450K ..�[0m�[91m..�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 74% 76.5M 0s
Step #6 - "build-e2e":  10500K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 74% 37.5M 0s�[0m�[91m
Step #6 - "build-e2e":  10550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 74% 67.7M 0s
Step #6 - "build-e2e":  10600K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 75% 17.1M 0s
Step #6 - "build-e2e":  10650K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... .......... 75%  230M 0s
Step #6 - "build-e2e":  10700K ..........�[0m�[91m .......... .......... ....�[0m�[91m...... .......... 75% 31.4M 0s
Step #6 - "build-e2e":  10750K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..........�[0m�[91m .......... 76% 74.2M 0s
Step #6 - "build-e2e":  10800K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 76% 57.5M 0s
Step #6 - "build-e2e":  10850K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 76%  287M 0s
Step #6 - "build-e2e":  10900K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 77%�[0m�[91m 55.0M 0s�[0m�[91m
Step #6 - "build-e2e":  10950K ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 77% 49.1M 0s
Step #6 - "build-e2e":  11000K .......... .......... ..........�[0m�[91m .......... ......�[0m�[91m.... 77% 43.4M 0s
Step #6 - "build-e2e":  11050K .......... ..�[0m�[91m........�[0m�[91m .......... .......... ....�[0m�[91m...... 78% 70.8M 0s
Step #6 - "build-e2e":  11100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 78%  288M 0s
Step #6 - "build-e2e":  11150K ........�[0m�[91m.. .......... .......... ........�[0m�[91m.. .......... 78%�[0m�[91m 50.5M 0s
Step #6 - "build-e2e":  11200K ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 79% 23.7M 0s
Step #6 - "build-e2e":  11250K .......... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 79% 34.4M 0s
Step #6 - "build-e2e":  11300K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 79%  251M 0s�[0m�[91m
Step #6 - "build-e2e":  11350K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 80% 75.8M 0s
Step #6 - "build-e2e":  11400K .......... ....�[0m�[91m...... .......... ........�[0m�[91m.. ......�[0m�[91m.... 80% 36.0M 0s
Step #6 - "build-e2e":  11450K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 81%  118M 0s
Step #6 - "build-e2e":  11500K ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 81% 56.0M 0s
Step #6 - "build-e2e":  11550K ........�[0m�[91m.. ......�[0m�[91m.... .......... .�[0m�[91m.�[0m�[91m........�[0m�[91m .......... 81% 37.6M 0s
Step #6 - "build-e2e":  11600K ......�[0m�[91m.... ..........�[0m�[91m ..�[0m�[91m........ .......... ......�[0m�[91m.... 82%  267M 0s
Step #6 - "build-e2e":  11650K ....�[0m�[91m...... .......... ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... 82% 82.2M 0s
Step #6 - "build-e2e":  11700K �[0m�[91m..�[0m�[91m.......�[0m�[91m.�[0m�[91m ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 82% 26.7M 0s�[0m�[91m
Step #6 - "build-e2e":  11750K .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 83% 42.5M 0s
Step #6 - "build-e2e":  11800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 83% 33.2M 0s
Step #6 - "build-e2e":  11850K .......... ..�[0m�[91m........ .......... .......... ....�[0m�[91m......�[0m�[91m 83%  251M 0s
Step #6 - "build-e2e":  11900K ..�[0m�[91m........�[0m�[91m .......... .�[0m�[91m.....�[0m�[91m.... .......... .......... 84% 69.2M 0s
Step #6 - "build-e2e":  11950K ........�[0m�[91m.. ....�[0m�[91m...... ....�[0m�[91m...... ..........�[0m�[91m .......... 84% 66.5M 0s
Step #6 - "build-e2e":  12000K �[0m�[91m.......... ...�[0m�[91m.�[0m�[91m...... .......... ........�[0m�[91m.. .......... 84% 47.4M 0s
Step #6 - "build-e2e":  12050K .......... .......... .......... ......�[0m�[91m.... .......... 85%  302M 0s
Step #6 - "build-e2e":  12100K ..�[0m�[91m........ ........�[0m�[91m.. .......... �[0m�[91m....�[0m�[91m...... .......... 85% 65.1M 0s�[0m�[91m
Step #6 - "build-e2e":  12150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ .......... 85% 35.9M 0s
Step #6 - "build-e2e":  12200K .......... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... 86%  133M 0s
Step #6 - "build-e2e":  12250K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 86% 55.9M 0s
Step #6 - "build-e2e":  12300K .......... ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 87%  252M 0s�[0m�[91m
Step #6 - "build-e2e":  12350K ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... .......... 87% 42.0M 0s
Step #6 - "build-e2e":  12400K �[0m�[91m......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 87% 44.2M 0s
Step #6 - "build-e2e":  12450K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 88% 31.5M 0s
Step #6 - "build-e2e":  12500K ..�[0m�[91m........ .......... ......�[0m�[91m.... ..........�[0m�[91m .......... 88%�[0m�[91m  262M 0s�[0m�[91m
Step #6 - "build-e2e":  12550K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 88% 69.2M 0s
Step #6 - "build-e2e":  12600K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 89% 64.8M 0s
Step #6 - "build-e2e":  12650K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 89% 53.2M 0s
Step #6 - "build-e2e":  12700K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 89% 59.5M 0s
Step #6 - "build-e2e":  12750K .......... .......�[0m�[91m... ....�[0m�[91m...... ..........�[0m�[91m .......... 90%  277M 0s�[0m�[91m
Step #6 - "build-e2e":  12800K ......�[0m�[91m.... .......... .......... ........�[0m�[91m.. .......... 90% 36.6M 0s
Step #6 - "build-e2e":  12850K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... 90%  105M 0s�[0m�[91m
Step #6 - "build-e2e":  12900K ..�[0m�[91m........ .......... ......�[0m�[91m.... ....�[0m�[91m...... .......... 91% 61.3M 0s
Step #6 - "build-e2e":  12950K ........�[0m�[91m.. ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. 91% 44.7M 0s
Step #6 - "build-e2e":  13000K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... .......... 91%  274M 0s
Step #6 - "build-e2e":  13050K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 92% 31.9M 0s
Step #6 - "build-e2e":  13100K ..........�[0m�[91m .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ 92% 40.4M 0s
Step #6 - "build-e2e":  13150K ........�[0m�[91m.. .......... .......... ..........�[0m�[91m .......... 93% 76.4M 0s
Step #6 - "build-e2e":  13200K ....�[0m�[91m..�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... 93%  208M 0s
Step #6 - "build-e2e":  13250K ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... 93% 74.4M 0s
Step #6 - "build-e2e":  13300K .......... ........�[0m�[91m.. .......... .......... .......... 94% 53.8M 0s�[0m�[91m
Step #6 - "build-e2e":  13350K .......... .......... ....�[0m�[91m...... ..�[0m�[91m........ .......... 94% 55.2M 0s
Step #6 - "build-e2e":  13400K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 94% 38.7M 0s
Step #6 - "build-e2e":  13450K .......... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 95%  257M 0s
Step #6 - "build-e2e":  13500K ..........�[0m�[91m .......... ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ 95% 96.7M 0s�[0m�[91m
Step #6 - "build-e2e":  13550K ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... ........�[0m�[91m.. 95% 73.2M 0s
Step #6 - "build-e2e":  13600K ......�[0m�[91m.... ....�[0m�[91m...... ..........�[0m�[91m ........�[0m�[91m.. .......... 96% 67.7M 0s
Step #6 - "build-e2e":  13650K ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... .......... 96% 65.6M 0s
Step #6 - "build-e2e":  13700K .......... ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 96%  111M 0s�[0m�[91m
Step #6 - "build-e2e":  13750K .......... ......�[0m�[91m.... .......... ..�[0m�[91m........ ........�[0m�[91m.. 97% 35.5M 0s
Step #6 - "build-e2e":  13800K .......... ....�[0m�[91m...... ..........�[0m�[91m .......... ......�[0m�[91m.... 97% 51.7M 0s
Step #6 - "build-e2e":  13850K ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... 97% 92.3M 0s
Step #6 - "build-e2e":  13900K ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. ......�[0m�[91m.... .......... ..�[0m�[91m........ 98% 64.5M 0s
Step #6 - "build-e2e":  13950K ........�[0m�[91m.. .......... ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m .......... 98%  204M 0s
Step #6 - "build-e2e":  14000K ......�[0m�[91m.... ....�[0m�[91m...... ..�[0m�[91m........ ........�[0m�[91m.. .......... 99% 48.9M 0s
Step #6 - "build-e2e":  14050K ....�[0m�[91m...... ..�[0m�[91m........�[0m�[91m ........�[0m�[91m.. .......... .......... 99% 69.5M 0s
Step #6 - "build-e2e":  14100K ..�[0m�[91m........ ........�[0m�[91m.. .......... ....�[0m�[91m...... .......... 99% 39.0M 0s�[0m�[91m
Step #6 - "build-e2e":  14150K .......... ......�[0m�[91m.... .......... ..�[0m�[91m......             100%  305M=0.6s
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0m�[91m2018-08-03 01:56:47 (23.3 MB/s) - '/tmp/build/consul_1.2.1_linux_amd64.zip' saved [14529496/14529496]
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0mArchive:  /tmp/build/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e":   inflating: /usr/local/bin/consul   
Step #6 - "build-e2e": Consul v1.2.1
Step #6 - "build-e2e": Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents)
Step #6 - "build-e2e": Removing intermediate container 60459d5d937e
Step #6 - "build-e2e":  ---> 404edd766bef
Step #6 - "build-e2e": Step 16/20 : RUN echo "export PATH=/usr/local/go/bin:/go/bin/:\$PATH" >> /root/.bashrc
Step #6 - "build-e2e":  ---> Running in 71e90fdb5d8e
Step #6 - "build-e2e": Removing intermediate container 71e90fdb5d8e
Step #6 - "build-e2e":  ---> 8570c8243a30
Step #6 - "build-e2e": Step 17/20 : COPY *.sh /root/
Step #6 - "build-e2e":  ---> adcf1cbe716b
Step #6 - "build-e2e": Step 18/20 : RUN chmod +x /root/*.sh
Step #6 - "build-e2e":  ---> Running in 61d2d1647426
Step #6 - "build-e2e": Removing intermediate container 61d2d1647426
Step #6 - "build-e2e":  ---> faf393197064
Step #6 - "build-e2e": Step 19/20 : WORKDIR /go
Step #6 - "build-e2e": Removing intermediate container c189a30d3de4
Step #6 - "build-e2e":  ---> f05307bfa3a8
Step #6 - "build-e2e": Step 20/20 : ENTRYPOINT [ "/root/entrypoint.sh" ]
Step #6 - "build-e2e":  ---> Running in 4374a79c5c8a
Step #6 - "build-e2e": Removing intermediate container 4374a79c5c8a
Step #6 - "build-e2e":  ---> 55d823d19e05
Step #6 - "build-e2e": Successfully built 55d823d19e05
Step #6 - "build-e2e": Successfully tagged e2e-runner:latest
Finished Step #6 - "build-e2e"
Step #3 - "lint": �[91mERROR: (gcloud.components.update) Failed to fetch component listing from server. Check your network settings and try again.
Step #3 - "lint": �[0m
Step #3 - "lint": This will install all the core command line tools necessary for working with
Step #3 - "lint": the Google Cloud Platform.
Step #3 - "lint": 
Step #3 - "lint": The command '/bin/sh -c wget -q https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.zip && unzip -q google-cloud-sdk.zip &&     rm google-cloud-sdk.zip &&     /opt/google-cloud-sdk/install.sh --usage-reporting=true --path-update=true --bash-completion=true --rc-path=/root/.bashrc' returned a non-zero code: 1
Step #3 - "lint": make[1]: *** [build-build-image] Error 1
Step #3 - "lint": Makefile:232: recipe for target 'build-build-image' failed
Step #3 - "lint": make[1]: Leaving directory '/workspace/build'
Step #3 - "lint": make: *** [ensure-build-image] Error 2
Step #3 - "lint": Makefile:244: recipe for target 'ensure-build-image' failed
Finished Step #3 - "lint"
ERROR
ERROR: build step 3 "make-docker" failed: exit status 2

@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: aa2af5c0-2b6b-4850-9a0a-72987c1e9f7a

Build Logs
starting build "aa2af5c0-2b6b-4850-9a0a-72987c1e9f7a"

FETCHSOURCE
Initialized empty Git repository in /workspace/.git/
From https://source.developers.google.com/p/agones-images/r/agones
 * branch            d4b1cf5008370f32c61dea661aa18ced428a45a3 -> FETCH_HEAD
HEAD is now at d4b1cf5 removes consul,add make target test-e2e-minikube,fix framework canonical import
BUILD
Starting Step #0
Starting Step #6 - "build-e2e"
Step #6 - "build-e2e": Already have image (with digest): gcr.io/cloud-builders/docker
Step #0: Already have image (with digest): ubuntu
Step #6 - "build-e2e": Sending build context to Docker daemon  7.168kB

Step #6 - "build-e2e": Step 1/20 : FROM gcr.io/cloud-builders/gcloud-slim
Step #6 - "build-e2e": latest: Pulling from cloud-builders/gcloud-slim
Step #6 - "build-e2e": 33e0b8928960: Already exists
Step #6 - "build-e2e": 422dc07b14c8: Already exists
Step #6 - "build-e2e": 3c2cba919283: Already exists
Step #6 - "build-e2e": c9736d7bc3b3: Already exists
Step #6 - "build-e2e": Digest: sha256:fb515f3f06deca2ed4a7fd77bcebb0d373466fdca07956215ef9c84b15a5cec1
Step #6 - "build-e2e": Status: Downloaded newer image for gcr.io/cloud-builders/gcloud-slim:latest
Step #6 - "build-e2e":  ---> 8588fdf1c6d7
Step #6 - "build-e2e": Step 2/20 : RUN apt-get update &&     apt-get install -y wget psmisc make python jq zip &&     apt-get clean
Finished Step #0
Starting Step #1
Step #1: Already have image (with digest): gcr.io/cloud-builders/docker
Step #6 - "build-e2e":  ---> Running in 7d6b991fa114
Step #6 - "build-e2e": Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
Step #6 - "build-e2e": Get:2 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial InRelease [17.5 kB]
Step #6 - "build-e2e": Get:3 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Step #6 - "build-e2e": Get:4 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main amd64 Packages [3328 B]
Step #6 - "build-e2e": Get:5 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [530 kB]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Step #6 - "build-e2e": Get:7 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Step #6 - "build-e2e": Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1201 kB]
Step #6 - "build-e2e": Get:9 http://security.ubuntu.com/ubuntu xenial-security/main Translation-en [227 kB]
Step #6 - "build-e2e": Get:10 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [7204 B]
Step #6 - "build-e2e": Get:11 http://security.ubuntu.com/ubuntu xenial-security/restricted Translation-en [2152 B]
Step #6 - "build-e2e": Get:12 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [362 kB]
Step #6 - "build-e2e": Get:13 http://archive.ubuntu.com/ubuntu xenial/main Translation-en [568 kB]
Step #1: Sending build context to Docker daemon  127.6MB

Step #6 - "build-e2e": Get:14 http://security.ubuntu.com/ubuntu xenial-security/universe Translation-en [136 kB]
Step #1: Step 1/3 : FROM gcr.io/cloud-builders/docker
Step #1:  ---> d3d5efd4ad58
Step #1: Step 2/3 : RUN apt-get install make
Step #6 - "build-e2e": Get:15 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [8344 B]
Step #6 - "build-e2e": Get:16 http://archive.ubuntu.com/ubuntu xenial/restricted Translation-en [2908 B]
Step #6 - "build-e2e": Get:17 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [7532 kB]
Step #6 - "build-e2e": Get:18 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3456 B]
Step #6 - "build-e2e": Get:19 http://security.ubuntu.com/ubuntu xenial-security/multiverse Translation-en [1744 B]
Step #1:  ---> Running in 6877223c5d39
Step #6 - "build-e2e": Get:20 http://archive.ubuntu.com/ubuntu xenial/universe Translation-en [4354 kB]
Step #6 - "build-e2e": Get:21 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [144 kB]
Step #6 - "build-e2e": Get:22 http://archive.ubuntu.com/ubuntu xenial/multiverse Translation-en [106 kB]
Step #6 - "build-e2e": Get:23 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [820 kB]
Step #6 - "build-e2e": Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main Translation-en [338 kB]
Step #6 - "build-e2e": Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [7556 B]
Step #6 - "build-e2e": Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/restricted Translation-en [2272 B]
Step #6 - "build-e2e": Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [675 kB]
Step #6 - "build-e2e": Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [272 kB]
Step #6 - "build-e2e": Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [16.4 kB]
Step #6 - "build-e2e": Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse Translation-en [8344 B]
Step #6 - "build-e2e": Get:31 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [6744 B]
Step #6 - "build-e2e": Get:32 http://archive.ubuntu.com/ubuntu xenial-backports/main Translation-en [4180 B]
Step #6 - "build-e2e": Get:33 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7420 B]
Step #6 - "build-e2e": Get:34 http://archive.ubuntu.com/ubuntu xenial-backports/universe Translation-en [3996 B]
Step #1: Reading package lists...
Step #1: Building dependency tree...
Step #1: Reading state information...
Step #1: make is already the newest version (4.1-6).
Step #1: 0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.
Step #1: Removing intermediate container 6877223c5d39
Step #1:  ---> 199d756e03d1
Step #1: Step 3/3 : ENTRYPOINT ["/usr/bin/make"]
Step #1:  ---> Running in 978f611544b2
Step #1: Removing intermediate container 978f611544b2
Step #1:  ---> 744ce4c8ac03
Step #1: Successfully built 744ce4c8ac03
Step #1: Successfully tagged make-docker:latest
Finished Step #1
Starting Step #2
Step #2: Already have image: make-docker
Step #2: docker pull gcr.io/agones-images/agones-build:6a4e0e6230 && docker tag gcr.io/agones-images/agones-build:6a4e0e6230 agones-build:6a4e0e6230
Step #2: Error response from daemon: manifest for gcr.io/agones-images/agones-build:6a4e0e6230 not found
Step #2: make: [pull-build-image] Error 1 (ignored)
Step #2: Makefile:250: recipe for target 'pull-build-image' failed
Finished Step #2
Starting Step #3 - "lint"
Step #3 - "lint": Already have image: make-docker
Step #3 - "lint": mkdir -p ~/.kube
Step #3 - "lint": mkdir -p /workspace/build//.config/gcloud
Step #3 - "lint": Could not find agones-build:6a4e0e6230 image. Building...
Step #3 - "lint": make[1]: Entering directory '/workspace/build'
Step #3 - "lint": docker build --tag=agones-build:6a4e0e6230 /workspace/build//build-image 
Step #3 - "lint": Sending build context to Docker daemon  18.43kB

Step #3 - "lint": Step 1/30 : FROM gcr.io/agones-images/grpc-cxx:1.12
Step #3 - "lint": 1.12: Pulling from agones-images/grpc-cxx
Step #3 - "lint": cc1a78bfd46b: Pulling fs layer
Step #3 - "lint": 65ec5fb8fee4: Pulling fs layer
Step #3 - "lint": f792a8d67267: Pulling fs layer
Step #3 - "lint": cc1a78bfd46b: Verifying Checksum
Step #3 - "lint": cc1a78bfd46b: Download complete
Step #3 - "lint": 65ec5fb8fee4: Verifying Checksum
Step #3 - "lint": 65ec5fb8fee4: Download complete
Step #3 - "lint": cc1a78bfd46b: Pull complete
Step #3 - "lint": f792a8d67267: Verifying Checksum
Step #3 - "lint": f792a8d67267: Download complete
Step #3 - "lint": 65ec5fb8fee4: Pull complete
Step #3 - "lint": f792a8d67267: Pull complete
Step #3 - "lint": Digest: sha256:d2b291925338cd368a17fc2e31b8d8fde6e80aa43eaf1bbad399634da5d8c57e
Step #3 - "lint": Status: Downloaded newer image for gcr.io/agones-images/grpc-cxx:1.12
Step #3 - "lint":  ---> 0dbae8794445
Step #3 - "lint": Step 2/30 : RUN apt-get update &&     apt-get install -y wget psmisc rsync make python bash-completion zip nano jq &&     apt-get clean
Step #3 - "lint":  ---> Running in a4ac80a76423
Step #3 - "lint": Ign:1 http://deb.debian.org/debian stretch InRelease
Step #3 - "lint": Get:2 http://deb.debian.org/debian stretch-updates InRelease [91.0 kB]
Step #3 - "lint": Get:3 http://deb.debian.org/debian stretch Release [118 kB]
Step #3 - "lint": Get:4 http://deb.debian.org/debian stretch Release.gpg [2434 B]
Step #3 - "lint": Get:5 http://deb.debian.org/debian stretch-updates/main amd64 Packages.diff/Index [5164 B]
Step #3 - "lint": Get:6 http://deb.debian.org/debian stretch-updates/main amd64 Packages 2018-07-20-2027.50.pdiff [1134 B]
Step #3 - "lint": Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages 2018-07-31-2010.17.pdiff [1388 B]
Step #3 - "lint": Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages 2018-07-31-2010.17.pdiff [1388 B]
Step #3 - "lint": Get:8 http://deb.debian.org/debian stretch/main amd64 Packages [9500 kB]
Step #3 - "lint": Get:9 http://security.debian.org/debian-security stretch/updates InRelease [94.3 kB]
Step #3 - "lint": Get:10 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [468 kB]
Step #3 - "lint": Fetched 10.3 MB in 5s (1769 kB/s)
Step #3 - "lint": Reading package lists...
Step #3 - "lint": Reading package lists...
Step #3 - "lint": Building dependency tree...
Step #3 - "lint": Reading state information...
Step #3 - "lint": make is already the newest version (4.1-9.1).
Step #3 - "lint": rsync is already the newest version (3.1.2-1+deb9u1).
Step #3 - "lint": rsync set to manually installed.
Step #3 - "lint": The following additional packages will be installed:
Step #3 - "lint":   libjq1 libonig4 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib
Step #3 - "lint":   mime-support python-minimal python2.7 python2.7-minimal
Step #3 - "lint": Suggested packages:
Step #3 - "lint":   spell python-doc python-tk python2.7-doc binfmt-support
Step #3 - "lint": The following NEW packages will be installed:
Step #3 - "lint":   bash-completion jq libjq1 libonig4 libpython-stdlib libpython2.7-minimal
Step #3 - "lint":   libpython2.7-stdlib mime-support nano psmisc python python-minimal python2.7
Step #3 - "lint":   python2.7-minimal wget zip
Step #3 - "lint": 0 upgraded, 16 newly installed, 0 to remove and 22 not upgraded.
Step #3 - "lint": Need to get 6349 kB of archives.
Step #3 - "lint": After this operation, 25.4 MB of additional disk space will be used.
Step #3 - "lint": Get:1 http://deb.debian.org/debian stretch/main amd64 bash-completion all 1:2.1-4.3 [178 kB]
Step #3 - "lint": Get:2 http://deb.debian.org/debian stretch/main amd64 libpython2.7-minimal amd64 2.7.13-2+deb9u2 [389 kB]
Step #3 - "lint": Get:3 http://deb.debian.org/debian stretch/main amd64 python2.7-minimal amd64 2.7.13-2+deb9u2 [1382 kB]
Step #3 - "lint": Get:4 http://deb.debian.org/debian stretch/main amd64 python-minimal amd64 2.7.13-2 [40.5 kB]
Step #3 - "lint": Get:5 http://deb.debian.org/debian stretch/main amd64 mime-support all 3.60 [36.7 kB]
Step #3 - "lint": Get:6 http://deb.debian.org/debian stretch/main amd64 libpython2.7-stdlib amd64 2.7.13-2+deb9u2 [1896 kB]
Step #3 - "lint": Get:7 http://deb.debian.org/debian stretch/main amd64 python2.7 amd64 2.7.13-2+deb9u2 [285 kB]
Step #3 - "lint": Get:8 http://deb.debian.org/debian stretch/main amd64 libpython-stdlib amd64 2.7.13-2 [20.0 kB]
Step #3 - "lint": Get:9 http://deb.debian.org/debian stretch/main amd64 python amd64 2.7.13-2 [154 kB]
Step #3 - "lint": Get:10 http://deb.debian.org/debian stretch/main amd64 nano amd64 2.7.4-1 [485 kB]
Step #3 - "lint": Get:11 http://deb.debian.org/debian stretch/main amd64 wget amd64 1.18-5+deb9u2 [799 kB]
Step #3 - "lint": Get:12 http://deb.debian.org/debian stretch/main amd64 libonig4 amd64 6.1.3-2 [146 kB]
Step #3 - "lint": Get:13 http://deb.debian.org/debian stretch/main amd64 libjq1 amd64 1.5+dfsg-1.3 [123 kB]
Step #3 - "lint": Get:14 http://deb.debian.org/debian stretch/main amd64 jq amd64 1.5+dfsg-1.3 [58.6 kB]
Step #3 - "lint": Get:15 http://deb.debian.org/debian stretch/main amd64 psmisc amd64 22.21-2.1+b2 [123 kB]
Step #3 - "lint": Get:16 http://deb.debian.org/debian stretch/main amd64 zip amd64 3.0-11+b1 [234 kB]
Step #3 - "lint": �[91mdebconf: delaying package configuration, since apt-utils is not installed
Step #3 - "lint": �[0mFetched 6349 kB in 0s (16.6 MB/s)
Step #3 - "lint": Selecting previously unselected package bash-completion.
Step #3 - "lint": (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 ... 17165 files and directories currently installed.)
Step #3 - "lint": Preparing to unpack .../0-bash-completion_1%3a2.1-4.3_all.deb ...
Step #3 - "lint": Unpacking bash-completion (1:2.1-4.3) ...
Step #3 - "lint": Selecting previously unselected package libpython2.7-minimal:amd64.
Step #3 - "lint": Preparing to unpack .../1-libpython2.7-minimal_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking libpython2.7-minimal:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package python2.7-minimal.
Step #3 - "lint": Preparing to unpack .../2-python2.7-minimal_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking python2.7-minimal (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package python-minimal.
Step #3 - "lint": Preparing to unpack .../3-python-minimal_2.7.13-2_amd64.deb ...
Step #3 - "lint": Unpacking python-minimal (2.7.13-2) ...
Step #3 - "lint": Selecting previously unselected package mime-support.
Step #3 - "lint": Preparing to unpack .../4-mime-support_3.60_all.deb ...
Step #3 - "lint": Unpacking mime-support (3.60) ...
Step #3 - "lint": Selecting previously unselected package libpython2.7-stdlib:amd64.
Step #3 - "lint": Preparing to unpack .../5-libpython2.7-stdlib_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking libpython2.7-stdlib:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package python2.7.
Step #3 - "lint": Preparing to unpack .../6-python2.7_2.7.13-2+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking python2.7 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package libpython-stdlib:amd64.
Step #3 - "lint": Preparing to unpack .../7-libpython-stdlib_2.7.13-2_amd64.deb ...
Step #3 - "lint": Unpacking libpython-stdlib:amd64 (2.7.13-2) ...
Step #3 - "lint": Setting up libpython2.7-minimal:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Setting up python2.7-minimal (2.7.13-2+deb9u2) ...
Step #3 - "lint": Linking and byte-compiling packages for runtime python2.7...
Step #3 - "lint": Setting up python-minimal (2.7.13-2) ...
Step #3 - "lint": Selecting previously unselected package python.
Step #3 - "lint": (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 ... 18513 files and directories currently installed.)
Step #3 - "lint": Preparing to unpack .../0-python_2.7.13-2_amd64.deb ...
Step #3 - "lint": Unpacking python (2.7.13-2) ...
Step #3 - "lint": Selecting previously unselected package nano.
Step #3 - "lint": Preparing to unpack .../1-nano_2.7.4-1_amd64.deb ...
Step #3 - "lint": Unpacking nano (2.7.4-1) ...
Step #3 - "lint": Selecting previously unselected package wget.
Step #3 - "lint": Preparing to unpack .../2-wget_1.18-5+deb9u2_amd64.deb ...
Step #3 - "lint": Unpacking wget (1.18-5+deb9u2) ...
Step #3 - "lint": Selecting previously unselected package libonig4:amd64.
Step #3 - "lint": Preparing to unpack .../3-libonig4_6.1.3-2_amd64.deb ...
Step #3 - "lint": Unpacking libonig4:amd64 (6.1.3-2) ...
Step #3 - "lint": Selecting previously unselected package libjq1:amd64.
Step #3 - "lint": Preparing to unpack .../4-libjq1_1.5+dfsg-1.3_amd64.deb ...
Step #3 - "lint": Unpacking libjq1:amd64 (1.5+dfsg-1.3) ...
Step #3 - "lint": Selecting previously unselected package jq.
Step #3 - "lint": Preparing to unpack .../5-jq_1.5+dfsg-1.3_amd64.deb ...
Step #3 - "lint": Unpacking jq (1.5+dfsg-1.3) ...
Step #3 - "lint": Selecting previously unselected package psmisc.
Step #3 - "lint": Preparing to unpack .../6-psmisc_22.21-2.1+b2_amd64.deb ...
Step #3 - "lint": Unpacking psmisc (22.21-2.1+b2) ...
Step #3 - "lint": Selecting previously unselected package zip.
Step #3 - "lint": Preparing to unpack .../7-zip_3.0-11+b1_amd64.deb ...
Step #3 - "lint": Unpacking zip (3.0-11+b1) ...
Step #3 - "lint": Setting up psmisc (22.21-2.1+b2) ...
Step #3 - "lint": Setting up mime-support (3.60) ...
Step #3 - "lint": Setting up bash-completion (1:2.1-4.3) ...
Step #3 - "lint": Setting up libonig4:amd64 (6.1.3-2) ...
Step #3 - "lint": Setting up zip (3.0-11+b1) ...
Step #3 - "lint": Setting up libjq1:amd64 (1.5+dfsg-1.3) ...
Step #3 - "lint": Setting up nano (2.7.4-1) ...
Step #3 - "lint": update-alternatives: using /bin/nano to provide /usr/bin/editor (editor) in auto mode
Step #3 - "lint": update-alternatives: using /bin/nano to provide /usr/bin/pico (pico) in auto mode
Step #3 - "lint": Processing triggers for libc-bin (2.24-11+deb9u3) ...
Step #3 - "lint": Setting up wget (1.18-5+deb9u2) ...
Step #3 - "lint": Setting up libpython2.7-stdlib:amd64 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Setting up jq (1.5+dfsg-1.3) ...
Step #3 - "lint": Setting up python2.7 (2.7.13-2+deb9u2) ...
Step #3 - "lint": Setting up libpython-stdlib:amd64 (2.7.13-2) ...
Step #3 - "lint": Setting up python (2.7.13-2) ...
Step #3 - "lint": Removing intermediate container a4ac80a76423
Step #3 - "lint":  ---> f67e7e728e01
Step #3 - "lint": Step 3/30 : WORKDIR /usr/local
Step #3 - "lint": Removing intermediate container 37f25ffd89fb
Step #3 - "lint":  ---> e5ab7fd35f57
Step #3 - "lint": Step 4/30 : ENV GO_VERSION=1.10.3
Step #3 - "lint":  ---> Running in a5c6e52b8fa7
Step #3 - "lint": Removing intermediate container a5c6e52b8fa7
Step #3 - "lint":  ---> 91ca2f645a2c
Step #3 - "lint": Step 5/30 : ENV GOPATH /go
Step #3 - "lint":  ---> Running in fd7fa39333a0
Step #3 - "lint": Removing intermediate container fd7fa39333a0
Step #3 - "lint":  ---> dca5e795582f
Step #3 - "lint": Step 6/30 : RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz &&     tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}
Step #3 - "lint":  ---> Running in eb4432203713
Step #3 - "lint": Removing intermediate container eb4432203713
Step #3 - "lint":  ---> b1649b96af09
Step #3 - "lint": Step 7/30 : WORKDIR /opt
Step #3 - "lint": Removing intermediate container b265c71a4b08
Step #3 - "lint":  ---> 192caadf40bd
Step #3 - "lint": Step 8/30 : RUN wget -q https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.zip && unzip -q google-cloud-sdk.zip &&     rm google-cloud-sdk.zip &&     /opt/google-cloud-sdk/install.sh --usage-reporting=true --path-update=true --bash-completion=true --rc-path=/root/.bashrc
Step #3 - "lint":  ---> Running in 06d907bde6f4
Step #6 - "build-e2e": Get:35 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main Translation-en [2380 B]
Step #6 - "build-e2e": Fetched 17.9 MB in 1min 3s (280 kB/s)
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Building dependency tree...
Step #6 - "build-e2e": Reading state information...
Step #6 - "build-e2e": python is already the newest version (2.7.12-1~16.04).
Step #6 - "build-e2e": python set to manually installed.
Step #6 - "build-e2e": The following packages were automatically installed and are no longer required:
Step #6 - "build-e2e":   cpp cpp-5 gcc-5 libasan2 libatomic1 libc-dev-bin libc6-dev libcc1-0
Step #6 - "build-e2e":   libcilkrts5 libexpat1-dev libgcc-5-dev libgomp1 libisl15 libitm1 liblsan0
Step #6 - "build-e2e":   libmpc3 libmpfr4 libmpx0 libpython-dev libpython2.7 libpython2.7-dev
Step #6 - "build-e2e":   libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
Step #6 - "build-e2e":   python-pkg-resources python2.7-dev
Step #6 - "build-e2e": Use 'apt autoremove' to remove them.
Step #6 - "build-e2e": The following additional packages will be installed:
Step #6 - "build-e2e":   libonig2 unzip
Step #6 - "build-e2e": Suggested packages:
Step #6 - "build-e2e":   make-doc
Step #6 - "build-e2e": The following NEW packages will be installed:
Step #6 - "build-e2e":   jq libonig2 make psmisc unzip wget zip
Step #6 - "build-e2e": 0 upgraded, 7 newly installed, 0 to remove and 15 not upgraded.
Step #6 - "build-e2e": Need to get 746 kB/1046 kB of archives.
Step #6 - "build-e2e": After this operation, 3429 kB of additional disk space will be used.
Step #6 - "build-e2e": Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 psmisc amd64 22.21-2.1build1 [48.0 kB]
Step #6 - "build-e2e": Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libonig2 amd64 5.9.6-1ubuntu0.1 [86.7 kB]
Step #6 - "build-e2e": Get:3 http://archive.ubuntu.com/ubuntu xenial/universe amd64 jq amd64 1.5+dfsg-1 [144 kB]
Step #6 - "build-e2e": Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB]
Step #6 - "build-e2e": Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 unzip amd64 6.0-20ubuntu1 [158 kB]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 zip amd64 3.0-11 [158 kB]
Step #3 - "lint": Welcome to the Google Cloud SDK!
Step #3 - "lint": WARNING: You appear to be running this script as root. This may cause 
Step #3 - "lint": the installation to be inaccessible to users other than the root user.
Step #6 - "build-e2e": Fetched 746 kB in 0s (835 kB/s)
Step #6 - "build-e2e": Selecting previously unselected package psmisc.
Step #6 - "build-e2e": (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 ... 17410 files and directories currently installed.)
Step #6 - "build-e2e": Preparing to unpack .../psmisc_22.21-2.1build1_amd64.deb ...
Step #6 - "build-e2e": Unpacking psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Selecting previously unselected package wget.
Step #6 - "build-e2e": Preparing to unpack .../wget_1.17.1-1ubuntu1.4_amd64.deb ...
Step #6 - "build-e2e": Unpacking wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Selecting previously unselected package libonig2:amd64.
Step #6 - "build-e2e": Preparing to unpack .../libonig2_5.9.6-1ubuntu0.1_amd64.deb ...
Step #6 - "build-e2e": Unpacking libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Selecting previously unselected package jq.
Step #6 - "build-e2e": Preparing to unpack .../jq_1.5+dfsg-1_amd64.deb ...
Step #6 - "build-e2e": Unpacking jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Selecting previously unselected package make.
Step #6 - "build-e2e": Preparing to unpack .../archives/make_4.1-6_amd64.deb ...
Step #6 - "build-e2e": Unpacking make (4.1-6) ...
Step #6 - "build-e2e": Selecting previously unselected package unzip.
Step #6 - "build-e2e": Preparing to unpack .../unzip_6.0-20ubuntu1_amd64.deb ...
Step #6 - "build-e2e": Unpacking unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Selecting previously unselected package zip.
Step #6 - "build-e2e": Preparing to unpack .../archives/zip_3.0-11_amd64.deb ...
Step #6 - "build-e2e": Unpacking zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #6 - "build-e2e": Processing triggers for mime-support (3.59ubuntu1) ...
Step #6 - "build-e2e": Setting up psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Setting up wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Setting up libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Setting up jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Setting up make (4.1-6) ...
Step #6 - "build-e2e": Setting up unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Setting up zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #3 - "lint": �[91m
Step #3 - "lint": �[0m�[91m
Step #3 - "lint": Your current Cloud SDK version is: 210.0.0
Step #3 - "lint": �[0m�[91mInstalling components from version: 210.0.0
Step #3 - "lint": �[0m�[91m
Step #3 - "lint": �[0m�[91m+----------------------------------------------------------------------------+�[0m�[91m
Step #3 - "lint": �[0m�[91m|                    These components will be installed.                     |
Step #3 - "lint": �[0m�[91m+-----------------------------------------------------+------------+---------+�[0m�[91m
Step #3 - "lint": �[0m�[91m|                         Name                        |  Version   |   Size  |�[0m�[91m
Step #3 - "lint": �[0m�[91m+-----------------------------------------------------+------------+---------+�[0m�[91m
Step #3 - "lint": �[0m�[91m| �[0m�[91mBigQuery Command Line Tool                         �[0m�[91m | �[0m�[91m    2.0.34�[0m�[91m �[0m�[91m| �[0m�[91m< 1 MiB�[0m�[91m �[0m�[91m|�[0m�[91m
Step #3 - "lint": �[0m�[91m| �[0m�[91mBigQuery Command Line Tool (Platform Specific)     �[0m�[91m �[0m�[91m| �[0m�[91m    2.0.34�[0m�[91m �[0m�[91m| �[0m�[91m< 1 MiB �[0m�[91m|�[0m�[91m
Step #3 - "lint": �[0m�[91m| �[0m�[91mCloud SDK Core Libraries (Platform Specific)       �[0m�[91m �[0m�[91m| �[0m�[91m2018.06.18�[0m�[91m �[0m�[91m| �[0m�[91m< 1 MiB�[0m�[91m �[0m�[91m|
Step #3 - "lint": �[0m�[91m| �[0m�[91mCloud Storage Command Line Tool                    �[0m�[91m �[0m�[91m| �[0m�[91m      4.33�[0m�[91m �[0m�[91m| �[0m�[91m3.5 MiB�[0m�[91m �[0m�[91m|�[0m�[91m
Step #3 - "lint": | �[0m�[91mCloud Storage Command Line Tool (Platform Specific)�[0m�[91m | �[0m�[91m      4.32�[0m�[91m �[0m�[91m| �[0m�[91m< 1 MiB�[0m�[91m �[0m�[91m|�[0m�[91m
Step #3 - "lint": �[0m�[91m| �[0m�[91mDefault set of gcloud commands                     �[0m�[91m �[0m�[91m| �[0m�[91m          �[0m�[91m �[0m�[91m| �[0m�[91m       �[0m�[91m �[0m�[91m|
Step #3 - "lint": �[0m�[91m| �[0m�[91mgcloud cli dependencies                            �[0m�[91m �[0m�[91m| �[0m�[91m2017.10.20�[0m�[91m �[0m�[91m| �[0m�[91m5.1 MiB�[0m�[91m �[0m�[91m|�[0m�[91m
Step #3 - "lint": �[0m�[91m+-----------------------------------------------------+------------+---------+�[0m�[91m
Step #3 - "lint": �[0m�[91m
Step #3 - "lint": �[0m�[91mFor the latest full release notes, please visit:
Step #3 - "lint":   https://cloud.google.com/sdk/release_notes
Step #3 - "lint": 
Step #3 - "lint": �[0m�[91m#============================================================#
Step #3 - "lint": �[0m�[91m#= Creating update staging area                             =#
Step #6 - "build-e2e": Removing intermediate container 7d6b991fa114
Step #6 - "build-e2e":  ---> 259dda169b7c
Step #6 - "build-e2e": Step 3/20 : WORKDIR /usr/local
Step #6 - "build-e2e": Removing intermediate container 59f0bfcf28d3
Step #6 - "build-e2e":  ---> 1822e51dd46a
Step #6 - "build-e2e": Step 4/20 : ENV GO_VERSION=1.10.3
Step #6 - "build-e2e":  ---> Running in 929ac6e2e954
Step #3 - "lint": �[0m�[91m#�[0m�[91m======�[0m�[91m======�[0m�[91m======�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=#
Step #3 - "lint": �[0m�[91m#= Installing: BigQuery Command Line Tool                   =#
Step #6 - "build-e2e": Removing intermediate container 929ac6e2e954
Step #6 - "build-e2e":  ---> 07441e17f2f7
Step #6 - "build-e2e": Step 5/20 : ENV GOPATH /go
Step #6 - "build-e2e":  ---> Running in e6d2eeeaa2a2
Step #6 - "build-e2e": Removing intermediate container e6d2eeeaa2a2
Step #6 - "build-e2e":  ---> 240a344f8d9c
Step #6 - "build-e2e": Step 6/20 : RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz &&     tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}
Step #6 - "build-e2e":  ---> Running in 420412212be2
Step #3 - "lint": �[0m�[91m#�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=#
Step #3 - "lint": �[0m�[91m#= Installing: BigQuery Command Line Tool (Platform Spec... =#
Step #3 - "lint": �[0m�[91m#�[0m�[91m==============================�[0m�[91m===============�[0m�[91m===============#
Step #3 - "lint": �[0m�[91m#= Installing: Cloud SDK Core Libraries (Platform Specific) =#
Step #3 - "lint": #�[0m�[91m==============================�[0m�[91m==========�[0m�[91m=========�[0m�[91m===========#
Step #3 - "lint": �[0m�[91m#= Installing: Cloud Storage Command Line Tool              =#
Step #3 - "lint": �[0m�[91m#�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=#
Step #3 - "lint": �[0m�[91m#= Installing: Cloud Storage Command Line Tool (Platform... =#
Step #3 - "lint": #�[0m�[91m==============================�[0m�[91m===============�[0m�[91m===============#
Step #3 - "lint": �[0m�[91m#= Installing: Default set of gcloud commands               =#
Step #3 - "lint": #�[0m�[91m============================================================#
Step #3 - "lint": �[0m�[91m#= Installing: gcloud cli dependencies                      =#
Step #3 - "lint": �[0m�[91m#�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m==�[0m�[91m=�[0m�[91m=�[0m�[91m=�[0m�[91m#
Step #3 - "lint": �[0m�[91m#= Creating backup and activating new installation          =#
Step #3 - "lint": #�[0m�[91m==============================�[0m�[91m==============================�[0m�[91m#
Step #3 - "lint": �[0m�[91m
Step #3 - "lint": �[0m�[91mPerforming post processing steps...
Step #6 - "build-e2e": Removing intermediate container 420412212be2
Step #6 - "build-e2e":  ---> 6c3e24a77caa
Step #6 - "build-e2e": Step 7/20 : ENV PATH /usr/local/go/bin:/go/bin:$PATH
Step #6 - "build-e2e":  ---> Running in e4d757389733
Step #6 - "build-e2e": Removing intermediate container e4d757389733
Step #6 - "build-e2e":  ---> 14f78837a7e6
Step #6 - "build-e2e": Step 8/20 : ENV KUBECTL_VER 1.11.0
Step #6 - "build-e2e":  ---> Running in e2c964c44279
Step #6 - "build-e2e": Removing intermediate container e2c964c44279
Step #6 - "build-e2e":  ---> 8cd9be449824
Step #6 - "build-e2e": Step 9/20 : RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &&     chmod go+rx ./kubectl &&     mv ./kubectl /usr/local/bin/kubectl
Step #6 - "build-e2e":  ---> Running in 5405df5b556f
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Left  Speed
Step #3 - "lint": �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91mdone.
Step #3 - "lint": �[0m�[91m
Step #3 - "lint": Update done!
Step #3 - "lint": 
Step #3 - "lint": �[0m
Step #3 - "lint": This will install all the core command line tools necessary for working with
Step #3 - "lint": the Google Cloud Platform.
Step #3 - "lint": 
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 52.8M  100 52.8M    0     0  80.6M      0 --:--:-- --:--:-- --:--:-- 80.6M
Step #3 - "lint": Backing up [/root/.bashrc] to [/root/.bashrc.backup].
Step #3 - "lint": [/root/.bashrc] has been updated.
Step #3 - "lint": 
Step #3 - "lint": ==> Start a new shell for the changes to take effect.
Step #3 - "lint": 
Step #3 - "lint": 
Step #3 - "lint": For more information on how to get started, please visit:
Step #3 - "lint":   https://cloud.google.com/sdk/docs/quickstarts
Step #3 - "lint": 
Step #3 - "lint": 
Step #6 - "build-e2e": �[0mRemoving intermediate container 5405df5b556f
Step #6 - "build-e2e":  ---> 6f8a81020565
Step #6 - "build-e2e": Step 10/20 : ENV HELM_VER 2.9.1
Step #6 - "build-e2e":  ---> Running in 288ee0d95370
Step #6 - "build-e2e": Removing intermediate container 288ee0d95370
Step #6 - "build-e2e":  ---> 4c1d19b60a45
Step #6 - "build-e2e": Step 11/20 : ENV HELM_URL https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VER}-linux-amd64.tar.gz
Step #6 - "build-e2e":  ---> Running in 3ed193fdd0e8
Step #6 - "build-e2e": Removing intermediate container 3ed193fdd0e8
Step #6 - "build-e2e":  ---> b747f42caab4
Step #6 - "build-e2e": Step 12/20 : RUN curl -L  ${HELM_URL} > /tmp/helm.tar.gz     && tar -zxvf /tmp/helm.tar.gz -C /tmp     && mv /tmp/linux-amd64/helm /usr/local/bin/helm     && chmod go+rx /usr/local/bin/helm     && rm /tmp/helm.tar.gz && rm -rf /tmp/linux-amd64
Step #6 - "build-e2e":  ---> Running in 5cabf0122db7
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 8946k  100 8946k    0     0  29.8M      0 --:--:-- --:--:-- --:--:-- 29.9M
Step #6 - "build-e2e": �[0mlinux-amd64/
Step #6 - "build-e2e": linux-amd64/README.md
Step #6 - "build-e2e": linux-amd64/helm
Step #6 - "build-e2e": linux-amd64/LICENSE
Step #6 - "build-e2e": Removing intermediate container 5cabf0122db7
Step #6 - "build-e2e":  ---> a5cbd5036c03
Step #6 - "build-e2e": Step 13/20 : ENV CONSUL_VERSION=1.2.1
Step #6 - "build-e2e":  ---> Running in 5eef794c7b18
Step #6 - "build-e2e": Removing intermediate container 5eef794c7b18
Step #6 - "build-e2e":  ---> 17b46f92d5ca
Step #6 - "build-e2e": Step 14/20 : ENV HASHICORP_RELEASES=https://releases.hashicorp.com
Step #6 - "build-e2e":  ---> Running in 2c3dcfd86076
Step #6 - "build-e2e": Removing intermediate container 2c3dcfd86076
Step #6 - "build-e2e":  ---> 46c6bc87f82c
Step #6 - "build-e2e": Step 15/20 : RUN mkdir -p /tmp/build &&     wget ${HASHICORP_RELEASES}/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip     -P /tmp/build/  &&     unzip -d /usr/local/bin/ /tmp/build/consul_${CONSUL_VERSION}_linux_amd64.zip &&     cd /tmp &&     rm -rf /tmp/build &&     chmod go+rx /usr/local/bin/consul &&     consul version
Step #6 - "build-e2e":  ---> Running in 67e5344289da
Step #6 - "build-e2e": �[91m--2018-08-03 02:22:06--  https://releases.hashicorp.com/consul/1.2.1/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e": �[0m�[91mResolving releases.hashicorp.com (releases.hashicorp.com)... �[0m�[91m151.101.1.183, 151.101.65.183, 151.101.129.183, ...
Step #6 - "build-e2e": Connecting to releases.hashicorp.com (releases.hashicorp.com)|151.101.1.183|:443... �[0m�[91mconnected.
Step #6 - "build-e2e": �[0m�[91mHTTP request sent, awaiting response... �[0m�[91m200 OK
Step #6 - "build-e2e": Length: 14529496 (14M) [application/zip]
Step #6 - "build-e2e": Saving to: '/tmp/build/consul_1.2.1_linux_amd64.zip'
Step #6 - "build-e2e": 
Step #6 - "build-e2e":      0K .�[0m�[91m.....�[0m�[91m..�[0m�[91m.. .�[0m�[91m...�[0m�[91m....�[0m�[91m.. .�[0m�[91m.....�[0m�[91m.�[0m�[91m... ..�[0m�[91m.....�[0m�[91m.�[0m�[91m.. ...�[0m�[91m..�[0m�[91m...�[0m�[91m..  0% 2.24M 6s�[0m�[91m
Step #6 - "build-e2e":     50K ...�[0m�[91m.....�[0m�[91m.. .�[0m�[91m.....�[0m�[91m.... .......... .�[0m�[91m...�[0m�[91m..�[0m�[91m...�[0m�[91m. ....�[0m�[91m......  0% 5.48M 4s
Step #6 - "build-e2e":    100K ..�[0m�[91m........�[0m�[91m ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m.....  1% 10.9M 3s
Step #6 - "build-e2e":    150K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m.......  1% 8.68M 3s
Step #6 - "build-e2e":    200K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m.........  1% 23.5M 2s
Step #6 - "build-e2e":    250K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. ..........  2% 26.3M 2s
Step #6 - "build-e2e":    300K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... ..........  2% 56.2M 2s
Step #6 - "build-e2e":    350K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m.......  2% 8.93M 2s
Step #6 - "build-e2e":    400K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m.  3% 16.7M 2s
Step #6 - "build-e2e":    450K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m...  3% 29.8M 2s
Step #6 - "build-e2e":    500K .......... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m.....  3% 26.4M 1s
Step #6 - "build-e2e":    550K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m.......  4% 13.0M�[0m�[91m 1s
Step #6 - "build-e2e":    600K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m.........  4% 16.6M 1s
Step #6 - "build-e2e":    650K .......�[0m�[91m...�[0m�[91m .......... ...�[0m�[91m....... .........�[0m�[91m. ..........  4% 33.0M 1s
Step #6 - "build-e2e":    700K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... ..........  5% 24.3M 1s
Step #6 - "build-e2e":    750K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .......... ..........  5% 32.0M 1s
Step #6 - "build-e2e":    800K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... ..........  5% 12.1M 1s
Step #6 - "build-e2e":    850K .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m...  6% 19.2M 1s
Step #6 - "build-e2e":    900K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m.....  6% 24.5M 1s
Step #6 - "build-e2e":    950K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m.......  7% 35.0M 1s
Step #6 - "build-e2e":   1000K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m.........  7% 14.1M 1s
Step #6 - "build-e2e":   1050K�[0m�[91m .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. ..........  7% 19.2M 1s
Step #6 - "build-e2e":   1100K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... ..........  8% 26.5M 1s
Step #6 - "build-e2e":   1150K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... ..........  8% 26.9M 1s
Step #6 - "build-e2e":   1200K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m.  8% 17.4M 1s
Step #6 - "build-e2e":   1250K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m...  9% 15.7M 1s
Step #6 - "build-e2e":   1300K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m.....  9% 28.2M 1s
Step #6 - "build-e2e":   1350K .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m.......  9% 25.1M 1s
Step #6 - "build-e2e":   1400K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 10% 32.3M 1s
Step #6 - "build-e2e":   1450K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... 10% 16.6M 1s
Step #6 - "build-e2e":   1500K .......... .......... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... 10% 19.8M 1s
Step #6 - "build-e2e":   1550K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... 11% 31.4M 1s
Step #6 - "build-e2e":   1600K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 11% 21.8M 1s
Step #6 - "build-e2e":   1650K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 11% 35.1M 1s
Step #6 - "build-e2e":   1700K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 12% 36.2M 1s
Step #6 - "build-e2e":   1750K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 12% 13.9M 1s
Step #6 - "build-e2e":   1800K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 13% 32.6M 1s
Step #6 - "build-e2e":   1850K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... 13% 27.1M 1s�[0m�[91m
Step #6 - "build-e2e":   1900K .....�[0m�[91m..... .......... .�[0m�[91m......... .......... .......... 13% 39.2M 1s
Step #6 - "build-e2e":   1950K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 14% 24.1M 1s
Step #6 - "build-e2e":   2000K .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 14% 13.7M 1s
Step #6 - "build-e2e":   2050K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 14% 34.6M 1s
Step #6 - "build-e2e":   2100K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .......... 15% 49.8M�[0m�[91m 1s
Step #6 - "build-e2e":   2150K ...�[0m�[91m....... .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... 15% 23.6M 1s
Step #6 - "build-e2e":   2200K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 15% 43.8M 1s
Step #6 - "build-e2e":   2250K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 16% 18.5M 1s
Step #6 - "build-e2e":   2300K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 16%�[0m�[91m 23.6M 1s
Step #6 - "build-e2e":   2350K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 16% 22.4M 1s
Step #6 - "build-e2e":   2400K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 17% 32.3M 1s
Step #6 - "build-e2e":   2450K .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 17% 54.3M 1s
Step #6 - "build-e2e":   2500K .......... ...�[0m�[91m....... .......... .......�[0m�[91m... .....�[0m�[91m..... 17% 26.8M 1s
Step #6 - "build-e2e":   2550K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 18% 32.2M 1s
Step #6 - "build-e2e":   2600K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 18% 16.1M 1s
Step #6 - "build-e2e":   2650K .......�[0m�[91m... .......... ...�[0m�[91m....... .......... .......�[0m�[91m... 19% 34.8M 1s
Step #6 - "build-e2e":   2700K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... 19%�[0m�[91m 32.7M 1s
Step #6 - "build-e2e":   2750K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 19% 54.6M 1s
Step #6 - "build-e2e":   2800K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .......... 20% 27.2M 1s
Step #6 - "build-e2e":   2850K .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 20% 13.2M 1s
Step #6 - "build-e2e":   2900K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 20% 57.6M 1s
Step #6 - "build-e2e":   2950K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 21% 36.3M 1s
Step #6 - "build-e2e":   3000K .�[0m�[91m......... ...�[0m�[91m....�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 21%�[0m�[91m 44.3M 1s
Step #6 - "build-e2e":   3050K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 21% 29.2M 1s
Step #6 - "build-e2e":   3100K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 22% 65.5M 1s
Step #6 - "build-e2e":   3150K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 22% 28.9M 1s
Step #6 - "build-e2e":   3200K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 22% 14.5M 1s
Step #6 - "build-e2e":   3250K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 23% 57.4M 1s
Step #6 - "build-e2e":   3300K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 23% 27.4M 1s
Step #6 - "build-e2e":   3350K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 23% 63.4M 1s
Step #6 - "build-e2e":   3400K .�[0m�[91m........�[0m�[91m. .......... .......... .......... .�[0m�[91m......... 24% 28.9M 1s
Step #6 - "build-e2e":   3450K .......�[0m�[91m... .......... ...�[0m�[91m....... .......... .......... 24% 52.0M 1s�[0m�[91m
Step #6 - "build-e2e":   3500K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 25% 14.3M 1s
Step #6 - "build-e2e":   3550K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 25% 63.8M 1s
Step #6 - "build-e2e":   3600K .�[0m�[91m......... ..�[0m�[91m.....�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 25% 27.0M 1s
Step #6 - "build-e2e":   3650K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 26% 33.3M 1s
Step #6 - "build-e2e":   3700K .....�[0m�[91m..... �[0m�[91m...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 26% 13.6M 1s
Step #6 - "build-e2e":   3750K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 26% 40.0M 1s
Step #6 - "build-e2e":   3800K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 27% 72.1M 0s
Step #6 - "build-e2e":   3850K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 27% 33.8M 0s
Step #6 - "build-e2e":   3900K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 27% 46.3M 0s
Step #6 - "build-e2e":   3950K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 28% 32.4M 0s
Step #6 - "build-e2e":   4000K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 28% 32.8M 0s
Step #6 - "build-e2e":   4050K .......... .......... .......... .�[0m�[91m......... .......�[0m�[91m... 28% 71.7M 0s
Step #6 - "build-e2e":   4100K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 29% 15.1M 0s
Step #6 - "build-e2e":   4150K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 29% 79.4M 0s
Step #6 - "build-e2e":   4200K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 29% 29.9M 0s
Step #6 - "build-e2e":   4250K ..�[0m�[91m.....�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 30%�[0m�[91m 61.1M 0s
Step #6 - "build-e2e":   4300K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 30% 28.1M 0s
Step #6 - "build-e2e":   4350K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. ....�[0m�[91m...... .....�[0m�[91m..... .......... 31% 37.7M 0s
Step #6 - "build-e2e":   4400K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 31% 30.8M 0s
Step #6 - "build-e2e":   4450K .......... .......... .......... .......... .......�[0m�[91m... 31% 51.6M 0s
Step #6 - "build-e2e":   4500K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 32% 27.7M 0s
Step #6 - "build-e2e":   4550K ...�[0m�[91m....... .�[0m�[91m......... ....�[0m�[91m...�[0m�[91m... .......... ...�[0m�[91m....... 32% 44.5M 0s
Step #6 - "build-e2e":   4600K .�[0m�[91m......... .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 32% 29.9M 0s
Step #6 - "build-e2e":   4650K .....�[0m�[91m..�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... 33% 61.7M 0s
Step #6 - "build-e2e":   4700K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 33% 43.6M 0s
Step #6 - "build-e2e":   4750K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 33%�[0m�[91m 38.2M 0s
Step #6 - "build-e2e":   4800K .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 34% 31.0M 0s
Step #6 - "build-e2e":   4850K .......�[0m�[91m... .......... .......... .�[0m�[91m......... .......�[0m�[91m... 34% 19.4M 0s
Step #6 - "build-e2e":   4900K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 34%  129M 0s
Step #6 - "build-e2e":   4950K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... .......... 35% 57.0M 0s
Step #6 - "build-e2e":   5000K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. 35% 28.3M 0s
Step #6 - "build-e2e":   5050K .......�[0m�[91m... .....�[0m�[91m...�[0m�[91m.. ...�[0m�[91m....... .........�[0m�[91m. .......... 35% 64.2M 0s
Step #6 - "build-e2e":   5100K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 36% 52.7M 0s
Step #6 - "build-e2e":   5150K ...�[0m�[91m....... .�[0m�[91m......... .......... .....�[0m�[91m..... .......... 36% 49.2M 0s
Step #6 - "build-e2e":   5200K .�[0m�[91m......... .......�[0m�[91m... .......... .......... .......... 37% 24.3M 0s
Step #6 - "build-e2e":   5250K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 37% 60.0M 0s
Step #6 - "build-e2e":   5300K ...�[0m�[91m..�[0m�[91m..... .......... .........�[0m�[91m. .......... .....�[0m�[91m..... 37% 24.4M 0s
Step #6 - "build-e2e":   5350K ...�[0m�[91m....... .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... 38% 60.0M 0s
Step #6 - "build-e2e":   5400K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 38% 45.4M 0s�[0m�[91m
Step #6 - "build-e2e":   5450K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 38% 36.4M 0s
Step #6 - "build-e2e":   5500K .......... .......... .�[0m�[91m......... .......... .......... 39% 46.9M 0s
Step #6 - "build-e2e":   5550K .......... .......... .......... .....�[0m�[91m..... .......... 39% 59.7M 0s
Step #6 - "build-e2e":   5600K .�[0m�[91m......... .......�[0m�[91m... .......... .......... .........�[0m�[91m. 39% 43.4M 0s
Step #6 - "build-e2e":   5650K .......... .....�[0m�[91m..... .......... .......... .......... 40% 39.7M 0s
Step #6 - "build-e2e":   5700K ...�[0m�[91m....... ...�[0m�[91m....... .........�[0m�[91m. .......... .......... 40% 69.5M 0s
Step #6 - "build-e2e":   5750K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 40% 24.4M 0s
Step #6 - "build-e2e":   5800K .........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... 41% 65.9M 0s
Step #6 - "build-e2e":   5850K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. ..........�[0m�[91m 41% 42.8M 0s
Step #6 - "build-e2e":   5900K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 41% 38.0M 0s
Step #6 - "build-e2e":   5950K ...�[0m�[91m....... .......... .......... .....�[0m�[91m..... .......... 42% 43.0M 0s
Step #6 - "build-e2e":   6000K .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 42% 36.4M 0s
Step #6 - "build-e2e":   6050K .......�[0m�[91m... ..........�[0m�[91m .......... .�[0m�[91m......... .......�[0m�[91m... 42% 79.9M 0s
Step #6 - "build-e2e":   6100K .......... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .......... 43% 42.3M 0s
Step #6 - "build-e2e":   6150K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 43% 62.1M 0s
Step #6 - "build-e2e":   6200K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 44% 23.1M 0s
Step #6 - "build-e2e":   6250K .......... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 44%  132M 0s
Step #6 - "build-e2e":   6300K .....�[0m�[91m..... ...�[0m�[91m....... .......... .......�[0m�[91m... .......... 44% 43.4M 0s
Step #6 - "build-e2e":   6350K ...�[0m�[91m....... .........�[0m�[91m. .......... .......... ...�[0m�[91m....... 45% 30.7M 0s
Step #6 - "build-e2e":   6400K .......... .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 45% 42.4M 0s
Step #6 - "build-e2e":   6450K .......�[0m�[91m... .......... .......... .�[0m�[91m......... .......�[0m�[91m... 45% 80.2M 0s
Step #6 - "build-e2e":   6500K .....�[0m�[91m..... .......... .........�[0m�[91m. .......... .....�[0m�[91m..... 46% 22.2M 0s
Step #6 - "build-e2e":   6550K .......... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 46%  205M 0s
Step #6 - "build-e2e":   6600K .........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 46% 72.5M 0s
Step #6 - "build-e2e":   6650K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 47% 49.1M 0s
Step #6 - "build-e2e":   6700K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 47% 32.6M 0s
Step #6 - "build-e2e":   6750K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 47%  283M 0s
Step #6 - "build-e2e":   6800K .�[0m�[91m......... .......... .......... .......... .......... 48% 44.8M 0s
Step #6 - "build-e2e":   6850K .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 48% 24.9M 0s
Step #6 - "build-e2e":   6900K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 48% 43.9M 0s
Step #6 - "build-e2e":   6950K .......... .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... 49% 66.3M 0s
Step #6 - "build-e2e":   7000K .�[0m�[91m......... .......... ...�[0m�[91m..�[0m�[91m..... .......... .�[0m�[91m......... 49%  184M 0s
Step #6 - "build-e2e":   7050K .......�[0m�[91m... .......... .......... .�[0m�[91m........�[0m�[91m. .......... 50% 30.0M 0s
Step #6 - "build-e2e":   7100K .�[0m�[91m....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... 50% 64.5M 0s
Step #6 - "build-e2e":   7150K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 50% 46.6M 0s
Step #6 - "build-e2e":   7200K .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 51% 38.5M 0s
Step #6 - "build-e2e":   7250K .......... .......... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 51%  140M 0s
Step #6 - "build-e2e":   7300K .......... .�[0m�[91m..�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 51% 45.3M 0s
Step #6 - "build-e2e":   7350K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 52% 26.3M 0s
Step #6 - "build-e2e":   7400K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... 52% 45.2M 0s
Step #6 - "build-e2e":   7450K .......�[0m�[91m... .....�[0m�[91m..... .�[0m�[91m..�[0m�[91m....... .....�[0m�[91m....�[0m�[91m. .......�[0m�[91m... 52%  139M 0s
Step #6 - "build-e2e":   7500K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... 53% 84.2M 0s�[0m�[91m
Step #6 - "build-e2e":   7550K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 53% 26.2M 0s
Step #6 - "build-e2e":   7600K .......... .......... .......... ...�[0m�[91m....... .�[0m�[91m......... 53% 84.7M 0s
Step #6 - "build-e2e":   7650K .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 54% 56.5M 0s
Step #6 - "build-e2e":   7700K .......... .......... .........�[0m�[91m. .......... .....�[0m�[91m..... 54% 70.6M 0s
Step #6 - "build-e2e":   7750K�[0m�[91m ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .�[0m�[91m......... .......�[0m�[91m... 54% 46.6M 0s
Step #6 - "build-e2e":   7800K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 55% 40.3M 0s
Step #6 - "build-e2e":   7850K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 55% 93.0M 0s
Step #6 - "build-e2e":   7900K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 56% 20.2M 0s
Step #6 - "build-e2e":   7950K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 56%  208M 0s
Step #6 - "build-e2e":   8000K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... 56% 58.1M 0s
Step #6 - "build-e2e":   8050K .�[0m�[91m..�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 57%�[0m�[91m 72.6M 0s
Step #6 - "build-e2e":   8100K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 57% 30.0M 0s
Step #6 - "build-e2e":   8150K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 57% 66.3M 0s
Step #6 - "build-e2e":   8200K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 58%  169M 0s
Step #6 - "build-e2e":   8250K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 58% 72.3M 0s
Step #6 - "build-e2e":   8300K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. 58% 66.7M 0s
Step #6 - "build-e2e":   8350K .......�[0m�[91m... .......... .�[0m�[91m......... .�[0m�[91m........�[0m�[91m. .......... 59% 35.9M 0s
Step #6 - "build-e2e":   8400K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 59%  198M 0s
Step #6 - "build-e2e":   8450K ...�[0m�[91m....... .........�[0m�[91m. .......... .......... ...�[0m�[91m....... 59% 28.0M 0s
Step #6 - "build-e2e":   8500K .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. 60% 42.3M 0s
Step #6 - "build-e2e":   8550K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 60% 62.1M 0s
Step #6 - "build-e2e":   8600K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 60% 52.8M 0s
Step #6 - "build-e2e":   8650K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... .......... 61%  184M 0s
Step #6 - "build-e2e":   8700K .........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... 61% 36.8M 0s
Step #6 - "build-e2e":   8750K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... 62% 58.5M 0s
Step #6 - "build-e2e":   8800K ...�[0m�[91m....... �[0m�[91m...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... 62% 64.9M 0s
Step #6 - "build-e2e":   8850K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 62%  316M 0s
Step #6 - "build-e2e":   8900K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m......... 63% 40.3M 0s
Step #6 - "build-e2e":   8950K .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 63% 51.1M 0s
Step #6 - "build-e2e":   9000K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 63%  184M 0s
Step #6 - "build-e2e":   9050K .......... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 64% 19.1M 0s
Step #6 - "build-e2e":   9100K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 64%  171M 0s
Step #6 - "build-e2e":   9150K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 64% 60.4M 0s
Step #6 - "build-e2e":   9200K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 65% 58.1M 0s
Step #6 - "build-e2e":   9250K ...�[0m�[91m....... .�[0m�[91m....�[0m�[91m....�[0m�[91m. .......... .....�[0m�[91m..... .......... 65% 36.0M 0s
Step #6 - "build-e2e":   9300K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 65% 58.9M 0s
Step #6 - "build-e2e":   9350K .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......... 66%  207M 0s
Step #6 - "build-e2e":   9400K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 66% 65.8M 0s
Step #6 - "build-e2e":   9450K ...�[0m�[91m....... .......... .......�[0m�[91m... .......... ...�[0m�[91m....... 66%  110M 0s
Step #6 - "build-e2e":   9500K .......... .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 67% 29.4M 0s
Step #6 - "build-e2e":   9550K .......�[0m�[91m... .......... .......... .�[0m�[91m......... .......... 67%  278M 0s
Step #6 - "build-e2e":   9600K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... 68%  114M 0s
Step #6 - "build-e2e":   9650K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 68% 36.9M 0s
Step #6 - "build-e2e":   9700K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 68% 45.7M 0s
Step #6 - "build-e2e":   9750K .......�[0m�[91m... .......... .......... .........�[0m�[91m. .......�[0m�[91m... 69% 51.3M 0s
Step #6 - "build-e2e":   9800K .......... ...�[0m�[91m....... .......... .......... .......... 69%  207M 0s
Step #6 - "build-e2e":   9850K .......... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 69% 69.7M 0s
Step #6 - "build-e2e":   9900K .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 70% 35.4M 0s
Step #6 - "build-e2e":   9950K .......�[0m�[91m... .....�[0m�[91m.....�[0m�[91m ...�[0m�[91m....... .........�[0m�[91m. .......... 70% 51.8M 0s
Step #6 - "build-e2e":  10000K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... 70% 68.7M 0s
Step #6 - "build-e2e":  10050K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 71%  216M 0s
Step #6 - "build-e2e":  10100K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 71% 93.5M 0s
Step #6 - "build-e2e":  10150K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......... 71% 34.2M 0s
Step #6 - "build-e2e":  10200K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 72% 84.4M 0s
Step #6 - "build-e2e":  10250K .......... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 72% 36.0M 0s
Step #6 - "build-e2e":  10300K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 72%  243M 0s
Step #6 - "build-e2e":  10350K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 73% 48.2M 0s
Step #6 - "build-e2e":  10400K .......... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 73% 48.5M 0s
Step #6 - "build-e2e":  10450K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ........�[0m�[91m.. 74% 78.4M 0s
Step #6 - "build-e2e":  10500K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... .......... .........�[0m�[91m. 74% 33.9M 0s
Step #6 - "build-e2e":  10550K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 74%  250M 0s
Step #6 - "build-e2e":  10600K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... 75% 48.8M 0s
Step #6 - "build-e2e":  10650K .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 75% 85.8M 0s
Step #6 - "build-e2e":  10700K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 75% 89.0M 0s
Step #6 - "build-e2e":  10750K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 76%  281M 0s
Step #6 - "build-e2e":  10800K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 76% 31.5M 0s
Step #6 - "build-e2e":  10850K .......... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 76%  109M 0s
Step #6 - "build-e2e":  10900K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 77% 80.9M 0s
Step #6 - "build-e2e":  10950K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 77% 64.6M 0s
Step #6 - "build-e2e":  11000K .......... ...�[0m�[91m....... .�[0m�[91m......... .......... .....�[0m�[91m..... 77% 77.6M 0s
Step #6 - "build-e2e":  11050K ...�[0m�[91m....... .�[0m�[91m......... .......... .......... ...�[0m�[91m....... 78% 47.7M 0s
Step #6 - "build-e2e":  11100K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .........�[0m�[91m. 78% 75.5M 0s
Step #6 - "build-e2e":  11150K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... 78% 94.6M 0s
Step #6 - "build-e2e":  11200K .�[0m�[91m....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 79%  151M 0s
Step #6 - "build-e2e":  11250K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... 79% 35.6M�[0m�[91m 0s
Step #6 - "build-e2e":  11300K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 79% 49.7M 0s
Step #6 - "build-e2e":  11350K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 80% 87.9M 0s
Step #6 - "build-e2e":  11400K�[0m�[91m .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 80% 72.8M 0s
Step #6 - "build-e2e":  11450K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 81%  265M 0s
Step #6 - "build-e2e":  11500K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... ......�[0m�[91m.... 81% 35.3M 0s
Step #6 - "build-e2e":  11550K .......... ..�[0m�[91m........ ...�[0m�[91m....... .........�[0m�[91m. .......... 81% 90.6M 0s
Step #6 - "build-e2e":  11600K ...�[0m�[91m..�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 82% 76.0M 0s
Step #6 - "build-e2e":  11650K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 82%  300M 0s
Step #6 - "build-e2e":  11700K .�[0m�[91m......... .......... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. 82% 62.7M 0s
Step #6 - "build-e2e":  11750K .......�[0m�[91m... .....�[0m�[91m..... .......... .......... .......... 83% 34.3M 0s
Step #6 - "build-e2e":  11800K .......... .......... .........�[0m�[91m. .......... .....�[0m�[91m..... 83%  189M 0s
Step #6 - "build-e2e":  11850K .......... .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m....... 83% 52.0M 0s
Step #6 - "build-e2e":  11900K .......... .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m......... 84%  171M 0s
Step #6 - "build-e2e":  11950K .......�[0m�[91m... .......... .......... .........�[0m�[91m. .......... 84% 36.9M 0s
Step #6 - "build-e2e":  12000K .......... ...�[0m�[91m....... .�[0m�[91m......... .......... .......... 84% 46.1M 0s
Step #6 - "build-e2e":  12050K ...�[0m�[91m....... .......... .......... .....�[0m�[91m..... .......... 85%  113M 0s
Step #6 - "build-e2e":  12100K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .......... 85% 55.6M 0s
Step #6 - "build-e2e":  12150K .......... .......... .......... .�[0m�[91m......... .......�[0m�[91m... 85% 38.5M 0s
Step #6 - "build-e2e":  12200K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m...�[0m�[91m.. 86%  183M 0s
Step #6 - "build-e2e":  12250K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 86%  163M 0s
Step #6 - "build-e2e":  12300K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 87% 86.4M 0s
Step #6 - "build-e2e":  12350K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... 87% 73.8M 0s
Step #6 - "build-e2e":  12400K .....�[0m�[91m..... ...�[0m�[91m....... .......... .......�[0m�[91m... .......... 87%  165M 0s
Step #6 - "build-e2e":  12450K ...�[0m�[91m....... .........�[0m�[91m. .......... .......... .......... 88% 81.6M 0s
Step #6 - "build-e2e":  12500K .......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 88% 46.5M 0s
Step #6 - "build-e2e":  12550K .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m.......�[0m�[91m.. .......�[0m�[91m... 88% 65.3M 0s
Step #6 - "build-e2e":  12600K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... 89%  124M 0s
Step #6 - "build-e2e":  12650K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 89%  204M 0s
Step #6 - "build-e2e":  12700K .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 89% 37.1M 0s
Step #6 - "build-e2e":  12750K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... 90% 43.0M 0s
Step #6 - "build-e2e":  12800K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 90% 98.4M 0s
Step #6 - "build-e2e":  12850K .......... .......... .......... .......... .......... 90%  301M 0s
Step #6 - "build-e2e":  12900K .......... .......... .......... .......... .......... 91% 65.0M 0s
Step #6 - "build-e2e":  12950K .......... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......... 91% 38.4M 0s
Step #6 - "build-e2e":  13000K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......... .......... 91%  128M 0s
Step #6 - "build-e2e":  13050K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 92% 74.7M 0s
Step #6 - "build-e2e":  13100K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 92%  175M 0s
Step #6 - "build-e2e":  13150K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 93% 90.9M 0s
Step #6 - "build-e2e":  13200K .....�[0m�[91m..... .......... .�[0m�[91m......... .......... .....�[0m�[91m..... 93% 73.2M 0s
Step #6 - "build-e2e":  13250K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 93%�[0m�[91m 52.2M 0s
Step #6 - "build-e2e":  13300K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 94% 57.9M 0s
Step #6 - "build-e2e":  13350K .......... .....�[0m�[91m..... .......... �[0m�[91m.�[0m�[91m......... .......�[0m�[91m... 94%  213M 0s
Step #6 - "build-e2e":  13400K .......... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 94%  109M 0s
Step #6 - "build-e2e":  13450K .......... .�[0m�[91m......�[0m�[91m... .......�[0m�[91m... .......... ...�[0m�[91m....... 95% 35.9M 0s
Step #6 - "build-e2e":  13500K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m.�[0m�[91m........ 95% 46.3M 0s
Step #6 - "build-e2e":  13550K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. ......�[0m�[91m.�[0m�[91m... 95%  233M 0s
Step #6 - "build-e2e":  13600K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......... .......... 96%  160M 0s
Step #6 - "build-e2e":  13650K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 96% 81.3M 0s
Step #6 - "build-e2e":  13700K .......... .......... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 96% 73.6M 0s
Step #6 - "build-e2e":  13750K .......... .......... .......... .......... .......�[0m�[91m... 97% 57.7M 0s
Step #6 - "build-e2e":  13800K .......... ...�[0m�[91m....... .......... .......... .�[0m�[91m....�[0m�[91m..... 97%  203M 0s
Step #6 - "build-e2e":  13850K .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... .......... 97%  118M 0s
Step #6 - "build-e2e":  13900K .......... .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... 98% 75.3M 0s
Step #6 - "build-e2e":  13950K ...�[0m�[91m....�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 98% 83.6M 0s
Step #6 - "build-e2e":  14000K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 99%  330M 0s
Step #6 - "build-e2e":  14050K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 99% 62.6M 0s
Step #6 - "build-e2e":  14100K .......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 99% 52.9M 0s
Step #6 - "build-e2e":  14150K .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m.......             100% 59.0M=0.4s
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0m�[91m2018-08-03 02:22:06 (37.0 MB/s) - '/tmp/build/consul_1.2.1_linux_amd64.zip' saved [14529496/14529496]
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0mArchive:  /tmp/build/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e":   inflating: /usr/local/bin/consul   
Step #6 - "build-e2e": Consul v1.2.1
Step #6 - "build-e2e": Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents)
Step #3 - "lint": Removing intermediate container 06d907bde6f4
Step #3 - "lint":  ---> 2b7d29ad1d03
Step #3 - "lint": Step 9/30 : ENV PATH /usr/local/go/bin:/go/bin:/opt/google-cloud-sdk/bin:$PATH
Step #3 - "lint":  ---> Running in 62a13acac29b
Step #3 - "lint": Removing intermediate container 62a13acac29b
Step #3 - "lint":  ---> c0e497e733ac
Step #3 - "lint": Step 10/30 : RUN gcloud components update
Step #3 - "lint":  ---> Running in 795a7552d972
Step #6 - "build-e2e": Removing intermediate container 67e5344289da
Step #6 - "build-e2e":  ---> 518d3124e868
Step #6 - "build-e2e": Step 16/20 : RUN echo "export PATH=/usr/local/go/bin:/go/bin/:\$PATH" >> /root/.bashrc
Step #6 - "build-e2e":  ---> Running in 7c0063a5107c
Step #3 - "lint": �[91m
Step #3 - "lint": �[0m�[91mAll components are up to date.
Step #6 - "build-e2e": Removing intermediate container 7c0063a5107c
Step #6 - "build-e2e":  ---> 695ad56fa52d
Step #6 - "build-e2e": Step 17/20 : COPY *.sh /root/
Step #6 - "build-e2e":  ---> b8ed4b657f92
Step #6 - "build-e2e": Step 18/20 : RUN chmod +x /root/*.sh
Step #6 - "build-e2e":  ---> Running in 4d6e0286881f
Step #3 - "lint": �[0mRemoving intermediate container 795a7552d972
Step #3 - "lint":  ---> ee4f39eb9c98
Step #3 - "lint": Step 11/30 : ENV KUBECTL_VER 1.11.0
Step #3 - "lint":  ---> Running in 1a32e19bd120
Step #3 - "lint": Removing intermediate container 1a32e19bd120
Step #3 - "lint":  ---> 92ce1a996489
Step #3 - "lint": Step 12/30 : RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &&     chmod go+rx ./kubectl &&     mv ./kubectl /usr/local/bin/kubectl
Step #3 - "lint":  ---> Running in 3f90c3c23e86
Step #3 - "lint": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #3 - "lint":                                  Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": Removing intermediate container 4d6e0286881f
Step #6 - "build-e2e":  ---> ed9c451c84e5
Step #6 - "build-e2e": Step 19/20 : WORKDIR /go
Step #6 - "build-e2e": Removing intermediate container e7dc8a184c7e
Step #6 - "build-e2e":  ---> 69f744bc0bea
Step #6 - "build-e2e": Step 20/20 : ENTRYPOINT [ "/root/entrypoint.sh" ]
Step #3 - "lint": 
  0     0    0    �[0m�[91m 0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 52.8M  100 52.8M    0     0   143M      0 --:--:-- --:--:-- --:--:--  143M
Step #6 - "build-e2e":  ---> Running in a003bb09d03a
Step #6 - "build-e2e": Removing intermediate container a003bb09d03a
Step #6 - "build-e2e":  ---> f710e36f962c
Step #6 - "build-e2e": Successfully built f710e36f962c
Step #6 - "build-e2e": Successfully tagged e2e-runner:latest
Finished Step #6 - "build-e2e"
Step #3 - "lint": �[0mRemoving intermediate container 3f90c3c23e86
Step #3 - "lint":  ---> 091373a8afc6
Step #3 - "lint": Step 13/30 : RUN echo "source <(kubectl completion bash)" >> /root/.bashrc
Step #3 - "lint":  ---> Running in 1778c47df04c
Step #3 - "lint": Removing intermediate container 1778c47df04c
Step #3 - "lint":  ---> d9c1d33bc85a
Step #3 - "lint": Step 14/30 : ENV HELM_VER 2.9.1
Step #3 - "lint":  ---> Running in 73f9cebe519c
Step #3 - "lint": Removing intermediate container 73f9cebe519c
Step #3 - "lint":  ---> 0a6524761c4c
Step #3 - "lint": Step 15/30 : ENV HELM_URL https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VER}-linux-amd64.tar.gz
Step #3 - "lint":  ---> Running in 527b2d782ed5
Step #3 - "lint": Removing intermediate container 527b2d782ed5
Step #3 - "lint":  ---> 5011e3b80deb
Step #3 - "lint": Step 16/30 : RUN curl -L  ${HELM_URL} > /tmp/helm.tar.gz     && tar -zxvf /tmp/helm.tar.gz -C /tmp     && mv /tmp/linux-amd64/helm /usr/local/bin/helm     && chmod go+rx /usr/local/bin/helm     && rm /tmp/helm.tar.gz && rm -rf /tmp/linux-amd64
Step #3 - "lint":  ---> Running in de453186fb0c
Step #3 - "lint": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #3 - "lint":                                  Dload  Upload   Total   Spent    Left  Speed
Step #3 - "lint": 
  0     0    0     0    0    �[0m�[91m 0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 8946k  100 8946k    0     0  71.5M      0 --:--:-- --:--:-- --:--:-- 71.6M
Step #3 - "lint": �[0mlinux-amd64/
Step #3 - "lint": linux-amd64/README.md
Step #3 - "lint": linux-amd64/helm
Step #3 - "lint": linux-amd64/LICENSE
Step #3 - "lint": Removing intermediate container de453186fb0c
Step #3 - "lint":  ---> a4069c73a0c0
Step #3 - "lint": Step 17/30 : RUN echo "source <(helm completion bash)" >> /root/.bashrc
Step #3 - "lint":  ---> Running in 459833e6921a
Step #3 - "lint": Removing intermediate container 459833e6921a
Step #3 - "lint":  ---> 2691f6f8314c
Step #3 - "lint": Step 18/30 : RUN mkdir -p /go/src/github.com/golang && cd /go/src/github.com/golang &&     git clone https://github.com/golang/protobuf.git &&      cd protobuf && git checkout v1.1.0 &&     go install github.com/golang/protobuf/protoc-gen-go
Step #3 - "lint":  ---> Running in 9fa4b8300750
Step #3 - "lint": �[91mCloning into 'protobuf'...
Step #3 - "lint": �[0m�[91mNote: checking out 'v1.1.0'.
Step #3 - "lint": 
Step #3 - "lint": You are in 'detached HEAD' state. You can look around, make experimental
Step #3 - "lint": changes and commit them, and you can discard any commits you make in this
Step #3 - "lint": state without impacting any branches by performing another checkout.
Step #3 - "lint": 
Step #3 - "lint": If you want to create a new branch to retain commits you create, you may
Step #3 - "lint": do so (now or later) by using -b with the checkout command again. Example:
Step #3 - "lint": 
Step #3 - "lint":   git checkout -b <new-branch-name>
Step #3 - "lint": 
Step #3 - "lint": HEAD is now at b4deda0... Merge pull request #591 from golang/master-merge
Step #3 - "lint": �[0mRemoving intermediate container 9fa4b8300750
Step #3 - "lint":  ---> eb38661382f5
Step #3 - "lint": Step 19/30 : RUN go get -u github.com/golang/dep/cmd/dep &&     go get -u github.com/alecthomas/gometalinter &&     /go/bin/gometalinter --install
Step #3 - "lint":  ---> Running in 5e06a75fafdf
Step #3 - "lint": Installing:
Step #3 - "lint":   deadcode
Step #3 - "lint":   dupl
Step #3 - "lint":   errcheck
Step #3 - "lint":   gochecknoglobals
Step #3 - "lint":   gochecknoinits
Step #3 - "lint":   goconst
Step #3 - "lint":   gocyclo
Step #3 - "lint":   goimports
Step #3 - "lint":   golint
Step #3 - "lint":   gosec
Step #3 - "lint":   gosimple
Step #3 - "lint":   gotype
Step #3 - "lint":   gotypex
Step #3 - "lint":   ineffassign
Step #3 - "lint":   interfacer
Step #3 - "lint":   lll
Step #3 - "lint":   maligned
Step #3 - "lint":   megacheck
Step #3 - "lint":   misspell
Step #3 - "lint":   nakedret
Step #3 - "lint":   safesql
Step #3 - "lint":   staticcheck
Step #3 - "lint":   structcheck
Step #3 - "lint":   unconvert
Step #3 - "lint":   unparam
Step #3 - "lint":   unused
Step #3 - "lint":   varcheck
Step #3 - "lint": Removing intermediate container 5e06a75fafdf
Step #3 - "lint":  ---> ba3179191bbb
Step #3 - "lint": Step 20/30 : RUN mkdir -p /go/src && cd /go/src && mkdir -p k8s.io && cd k8s.io &&     git clone -b kubernetes-1.10.5 --depth=3 https://github.com/kubernetes/code-generator.git
Step #3 - "lint":  ---> Running in 22407ff6e692
Step #3 - "lint": �[91mCloning into 'code-generator'...
Step #3 - "lint": �[0m�[91mNote: checking out '9de8e796a74d16d2a285165727d04c185ebca6dc'.
Step #3 - "lint": 
Step #3 - "lint": You are in 'detached HEAD' state. You can look around, make experimental
Step #3 - "lint": changes and commit them, and you can discard any commits you make in this
Step #3 - "lint": state without impacting any branches by performing another checkout.
Step #3 - "lint": 
Step #3 - "lint": If you want to create a new branch to retain commits you create, you may
Step #3 - "lint": do so (now or later) by using -b with the checkout command again. Example:
Step #3 - "lint": 
Step #3 - "lint":   git checkout -b <new-branch-name>
Step #3 - "lint": 
Step #3 - "lint": �[0mRemoving intermediate container 22407ff6e692
Step #3 - "lint":  ---> 70fa6b50b59e
Step #3 - "lint": Step 21/30 : ENV RUSTUP_HOME=/usr/local/rustup     CARGO_HOME=/usr/local/cargo     PATH=/usr/local/cargo/bin:$PATH     RUST_VERSION=1.26.1
Step #3 - "lint":  ---> Running in cff4a5e2f66c
Step #3 - "lint": Removing intermediate container cff4a5e2f66c
Step #3 - "lint":  ---> 4029e1e681e5
Step #3 - "lint": Step 22/30 : ENV RUST_ARCH=x86_64-unknown-linux-gnu     RUSTUP_SHA256=c9837990bce0faab4f6f52604311a19bb8d2cde989bea6a7b605c8e526db6f02
Step #3 - "lint":  ---> Running in b7a998066a1e
Step #3 - "lint": Removing intermediate container b7a998066a1e
Step #3 - "lint":  ---> 34182bc0485b
Step #3 - "lint": Step 23/30 : RUN wget -q https://static.rust-lang.org/rustup/archive/1.11.0/${RUST_ARCH}/rustup-init &&     echo "${RUSTUP_SHA256} *rustup-init" | sha256sum -c - &&     chmod +x rustup-init &&     ./rustup-init -y --no-modify-path --default-toolchain $RUST_VERSION &&     rm rustup-init &&     rustup --version;     cargo --version;     rustc --version;
Step #3 - "lint":  ---> Running in dd2acb52c9ef
Step #3 - "lint": rustup-init: OK
Step #3 - "lint": �[91minfo: syncing channel updates for '1.26.1-x86_64-unknown-linux-gnu'
Step #3 - "lint": �[0m�[91minfo: latest update on 2018-05-29, rust version 1.26.1 (827013a31 2018-05-25)
Step #3 - "lint": info: downloading component 'rustc'
Step #3 - "lint": �[0m�[91minfo: downloading component 'rust-std'
Step #3 - "lint": �[0m�[91minfo: downloading component 'cargo'
Step #3 - "lint": �[0m�[91minfo: downloading component 'rust-docs'
Step #3 - "lint": �[0m�[91minfo: installing component 'rustc'
Step #3 - "lint": �[0m�[91minfo: installing component 'rust-std'
Step #3 - "lint": �[0m�[91minfo: installing component 'cargo'
Step #3 - "lint": �[0m�[91minfo: installing component 'rust-docs'
Step #3 - "lint": �[0m�[91minfo: default toolchain set to '1.26.1'
Step #3 - "lint": �[0m
Step #3 - "lint":   1.26.1 installed - rustc 1.26.1 (827013a31 2018-05-25)
Step #3 - "lint": 
Step #3 - "lint": rustup 1.11.0 (e751ff9f8 2018-02-13)
Step #3 - "lint": cargo 1.26.0 (0e7c5a931 2018-04-06)
Step #3 - "lint": rustc 1.26.1 (827013a31 2018-05-25)
Step #3 - "lint": Removing intermediate container dd2acb52c9ef
Step #3 - "lint":  ---> 55e5044f5b0d
Step #3 - "lint": Step 24/30 : RUN cargo install protobuf-codegen --vers 2.0.2
Step #3 - "lint":  ---> Running in bf73b485bcdb
Step #3 - "lint": �[91m    Updating registry `https://github.com/rust-lang/crates.io-index`
Step #3 - "lint": �[0m�[91m Downloading protobuf-codegen v2.0.2
Step #3 - "lint": �[0m�[91m  Installing protobuf-codegen v2.0.2
Step #3 - "lint": �[0m�[91m Downloading protobuf v2.0.2
Step #3 - "lint": �[0m�[91m   Compiling protobuf v2.0.2
Step #3 - "lint": �[0m�[91m   Compiling protobuf-codegen v2.0.2
Step #3 - "lint": �[0m�[91m    Finished release [optimized] target(s) in 37.13 secs
Step #3 - "lint": �[0m�[91m  Installing /usr/local/cargo/bin/protoc-gen-rust
Step #3 - "lint":   Installing /usr/local/cargo/bin/protobuf-bin-gen-rust-do-not-use
Step #3 - "lint": �[0mRemoving intermediate container bf73b485bcdb
Step #3 - "lint":  ---> 412a514b62cb
Step #3 - "lint": Step 25/30 : RUN cargo install grpcio-compiler --vers 0.3.0
Step #3 - "lint":  ---> Running in 58208f61e50d
Step #3 - "lint": �[91m    Updating registry `https://github.com/rust-lang/crates.io-index`
Step #3 - "lint": �[0m�[91m Downloading grpcio-compiler v0.3.0
Step #3 - "lint": �[0m�[91m  Installing grpcio-compiler v0.3.0
Step #3 - "lint": �[0m�[91m Downloading protobuf-codegen v2.0.4
Step #3 - "lint": �[0m�[91m Downloading protobuf v2.0.4
Step #3 - "lint": �[0m�[91m   Compiling protobuf v2.0.4
Step #3 - "lint": �[0m�[91m   Compiling protobuf-codegen v2.0.4
Step #3 - "lint": �[0m�[91m   Compiling grpcio-compiler v0.3.0
Step #3 - "lint": �[0m�[91m    Finished release [optimized] target(s) in 38.15 secs
Step #3 - "lint": �[0m�[91m  Installing /usr/local/cargo/bin/grpc_rust_plugin
Step #3 - "lint": �[0mRemoving intermediate container 58208f61e50d
Step #3 - "lint":  ---> 3a6f9c8dd55b
Step #3 - "lint": Step 26/30 : RUN echo "export PATH=/usr/local/go/bin:/go/bin/:\$PATH" >> /root/.bashrc
Step #3 - "lint":  ---> Running in e690f7f80c81
Step #3 - "lint": Removing intermediate container e690f7f80c81
Step #3 - "lint":  ---> 5198c586ac7b
Step #3 - "lint": Step 27/30 : RUN echo "export EDITOR=nano" >> /root/.bashrc
Step #3 - "lint":  ---> Running in 1b0505774f5e
Step #3 - "lint": Removing intermediate container 1b0505774f5e
Step #3 - "lint":  ---> 0603f772dbff
Step #3 - "lint": Step 28/30 : COPY *.sh /root/
Step #3 - "lint":  ---> 46a83c0e8517
Step #3 - "lint": Step 29/30 : RUN chmod +x /root/*.sh
Step #3 - "lint":  ---> Running in b2b506c613ff
Step #3 - "lint": Removing intermediate container b2b506c613ff
Step #3 - "lint":  ---> a1e456204b72
Step #3 - "lint": Step 30/30 : WORKDIR /go
Step #3 - "lint": Removing intermediate container d0a6f2284b90
Step #3 - "lint":  ---> 1a12f6570fbf
Step #3 - "lint": Successfully built 1a12f6570fbf
Step #3 - "lint": Successfully tagged agones-build:6a4e0e6230
Step #3 - "lint": make[1]: Leaving directory '/workspace/build'
Step #3 - "lint": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones -w /go/src/agones.dev/agones  agones-build:6a4e0e6230 bash -c \
Step #3 - "lint": 	"/root/gen-lint-exclude.sh && gometalinter --config .exclude.gometalinter.json --deadline=15m -t --skip vendor ./..."
Step #3 - "lint": fatal error: runtime: out of memory
Step #3 - "lint": 
Step #3 - "lint": runtime stack:
Step #3 - "lint": runtime.throw(0x67d3ce, 0x16)
Step #3 - "lint": 	/usr/local/go/src/runtime/panic.go:616 +0x81
Step #3 - "lint": runtime.sysMap(0xc421a60000, 0x100000, 0x0, 0x7efd78)
Step #3 - "lint": 	/usr/local/go/src/runtime/mem_linux.go:216 +0x20a
Step #3 - "lint": runtime.(*mheap).sysAlloc(0x7d7660, 0x100000, 0x0)
Step #3 - "lint": 	/usr/local/go/src/runtime/malloc.go:470 +0xd4
Step #3 - "lint": runtime.(*mheap).grow(0x7d7660, 0x20, 0x0)
Step #3 - "lint": 	/usr/local/go/src/runtime/mheap.go:907 +0x60
Step #3 - "lint": runtime.(*mheap).allocSpanLocked(0x7d7660, 0x20, 0x7efd88, 0xc421377080)
Step #3 - "lint": 	/usr/local/go/src/runtime/mheap.go:820 +0x301
Step #3 - "lint": runtime.(*mheap).alloc_m(0x7d7660, 0x20, 0x410101, 0x7f7fc994ffa8)
Step #3 - "lint": 	/usr/local/go/src/runtime/mheap.go:686 +0x118
Step #3 - "lint": runtime.(*mheap).alloc.func1()
Step #3 - "lint": 	/usr/local/go/src/runtime/mheap.go:753 +0x4d
Step #3 - "lint": runtime.(*mheap).alloc(0x7d7660, 0x20, 0x7f7fc9010101, 0x7f7fc994ffa8)
Step #3 - "lint": 	/usr/local/go/src/runtime/mheap.go:752 +0x8a
Step #3 - "lint": runtime.largeAlloc(0x3fe00, 0x7f7fc9940101, 0x433001)
Step #3 - "lint": 	/usr/local/go/src/runtime/malloc.go:826 +0x94
Step #3 - "lint": runtime.mallocgc.func1()
Step #3 - "lint": 	/usr/local/go/src/runtime/malloc.go:721 +0x46
Step #3 - "lint": runtime.systemstack(0x0)
Step #3 - "lint": 	/usr/local/go/src/runtime/asm_amd64.s:409 +0x79
Step #3 - "lint": runtime.mstart()
Step #3 - "lint": 	/usr/local/go/src/runtime/proc.go:1175
Step #3 - "lint": 
Step #3 - "lint": goroutine 222 [running]:
Step #3 - "lint": runtime.systemstack_switch()
Step #3 - "lint": 	/usr/local/go/src/runtime/asm_amd64.s:363 fp=0xc420163ca0 sp=0xc420163c98 pc=0x452fd0
Step #3 - "lint": runtime.mallocgc(0x3fe00, 0x61f780, 0xc421661b01, 0xc420163d78)
Step #3 - "lint": 	/usr/local/go/src/runtime/malloc.go:720 +0x8a2 fp=0xc420163d40 sp=0xc420163ca0 pc=0x4116f2
Step #3 - "lint": runtime.makeslice(0x61f780, 0x3fe00, 0x3fe00, 0x4be17a, 0xc42000e728, 0xc421661be3)
Step #3 - "lint": 	/usr/local/go/src/runtime/slice.go:61 +0x77 fp=0xc420163d70 sp=0xc420163d40 pc=0x43fa57
Step #3 - "lint": bytes.makeSlice(0x3fe00, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:230 +0x6d fp=0xc420163db0 sp=0xc420163d70 pc=0x4951dd
Step #3 - "lint": bytes.(*Buffer).grow(0xc4202f6f50, 0x200, 0x21d)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:144 +0x151 fp=0xc420163e00 sp=0xc420163db0 pc=0x494b91
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4202f6f50, 0x6aa6a0, 0xc42000e728, 0x7f7fc99c6048, 0xc4202f6f50, 0xc420163e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:204 +0x48 fp=0xc420163e70 sp=0xc420163e00 pc=0x494ff8
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4202f6f50, 0x6aa6a0, 0xc42000e728, 0x0, 0x0, 0x0, 0xc420163f90, 0x5d3753, 0xc42020f1e0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a fp=0xc420163ee0 sp=0xc420163e70 pc=0x48faaa
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4202f6f50, 0x6aa6a0, 0xc42000e728, 0x404de5, 0xc421444ea0, 0x6a8711)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a fp=0xc420163f40 sp=0xc420163ee0 pc=0x48f74a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc421444ea0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d fp=0xc420163fa0 sp=0xc420163f40 pc=0x5d5cdd
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4200d8420, 0xc420100c20)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27 fp=0xc420163fd0 sp=0xc420163fa0 pc=0x5d5d57
Step #3 - "lint": runtime.goexit()
Step #3 - "lint": 	/usr/local/go/src/runtime/asm_amd64.s:2361 +0x1 fp=0xc420163fd8 sp=0xc420163fd0 pc=0x455b21
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 1 [chan receive]:
Step #3 - "lint": main.outputToConsole(0xc4200ea600, 0xc420222480)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/main.go:288 +0x49
Step #3 - "lint": main.main()
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/main.go:239 +0x6e9
Step #3 - "lint": 
Step #3 - "lint": goroutine 47 [syscall, 1 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x23, 0xc4200405d8, 0x1000004, 0x0, 0x0, 0xc420000180, 0x4, 0xc420040600)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc4202d6150, 0x0, 0xc4200ea480, 0xc420080c00)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc4202d6150, 0x1, 0xc420040768, 0x52299e)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc4202d6150, 0x1, 0x0, 0x6)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4200d8000, 0xc4200407c8, 0x523053)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4200d8000, 0xc420140080, 0xc42008c0c0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 224 [IO wait, 1 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f7fc9942830, 0x72, 0xc4201604e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc4200b1198, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc4200b1198, 0xc4201ec801, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc4200b1180, 0xc4201ec800, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42000e750, 0xc4201ec800, 0x200, 0x200, 0xc4201ec800, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42000e750, 0xc4201ec800, 0x200, 0x200, 0xc420160658, 0x4b874c, 0xc420160660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4202f6fc0, 0x6aa6a0, 0xc42000e750, 0x7f7fc99c6048, 0xc4202f6fc0, 0xc420160601)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4202f6fc0, 0x6aa6a0, 0xc42000e750, 0x0, 0x0, 0x0, 0xc4200b08c0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4202f6fc0, 0x6aa6a0, 0xc42000e750, 0x404de5, 0xc421448a20, 0xc4201607b0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc421448a20, 0xc4201607b0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4200d8580, 0xc420100ca0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 46 [runnable]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f7fc9942f80, 0x72, 0xc420040ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc42028a068, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc42028a068, 0xc42017e001, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc42028a050, 0xc42017e000, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc420144058, 0xc42017e000, 0x200, 0x200, 0xc42017e000, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc420144058, 0xc42017e000, 0x200, 0x200, 0xc420046c00, 0x67986e, 0xc420040e60)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc420228000, 0x6aa6a0, 0xc420144058, 0x7f7fc99c6048, 0xc420228000, 0xc420080d01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc420228000, 0x6aa6a0, 0xc420144058, 0x0, 0x0, 0x0, 0xc42008c420, 0xc420040f40, 0x677bc4)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc420228000, 0x6aa6a0, 0xc420144058, 0xc42008c478, 0x0, 0x52324c)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc42008c478, 0xc420040fc8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4200d8000, 0xc421274080)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 14 [chan receive]:
Step #3 - "lint": main.filterIssuesViaDirectives.func1(0xc4202f8a20, 0xc4200a1be0, 0xc4200ea600)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/directives.go:191 +0x42
Step #3 - "lint": created by main.filterIssuesViaDirectives
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/directives.go:190 +0x71
Step #3 - "lint": 
Step #3 - "lint": goroutine 16 [select, 1 minutes]:
Step #3 - "lint": main.executeLinter(0x1, 0xc420098a50, 0xc42007f400, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc420098a50, 0xc4202f89c0, 0xc4201fc0e0, 0xc42014a150, 0x1, 0xc42007f400, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 57 [select, 1 minutes]:
Step #3 - "lint": main.executeLinter(0x2c, 0xc4214c4bd0, 0xc42140d400, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc4214c4bd0, 0xc4202f89c0, 0xc4201fc0e0, 0xc42014a150, 0x2c, 0xc42140d400, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 59 [select, 1 minutes]:
Step #3 - "lint": main.executeLinter(0x30, 0xc42030d7d0, 0xc4217e0800, 0x65, 0x80, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc42030d7d0, 0xc4202f89c0, 0xc4201fc0e0, 0xc42014a150, 0x30, 0xc4217e0800, 0x65, 0x80)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 228 [syscall, 1 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x87b, 0xc4212ae5d8, 0x1000004, 0x0, 0x0, 0xc42022e900, 0xc42002b400, 0xc4212ae620)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc421431770, 0x4b885b, 0xc4201432e8, 0xc4212ae6d0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc421431770, 0x0, 0xc4212ae730, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc421431770, 0xc4212ae790, 0x5d5cff, 0xc42144a358)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4200d8c60, 0xc4212ae7b0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4200d8c60, 0xc420059b90, 0xc421445d40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 60 [select]:
Step #3 - "lint": main.executeLinter(0x57, 0xc4219147b0, 0xc4217fb800, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc4219147b0, 0xc4202f89c0, 0xc4201fc0e0, 0xc42014a150, 0x57, 0xc4217fb800, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 204 [select, 1 minutes]:
Step #3 - "lint": main.executeLinter(0x2d, 0xc42158c630, 0xc42007f400, 0x26, 0x40, 0x1, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc42158c630, 0xc4202f89c0, 0xc4201fc0e0, 0xc42014a150, 0x2d, 0xc42007f400, 0x26, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 226 [select, 1 minutes]:
Step #3 - "lint": main.executeLinter(0x2e, 0xc4214c5080, 0xc42140dc00, 0x25, 0x40, 0x0, 0x0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:165 +0x5b4
Step #3 - "lint": main.runLinters.func1(0xc4214c5080, 0xc4202f89c0, 0xc4201fc0e0, 0xc42014a150, 0x2e, 0xc42140dc00, 0x25, 0x40)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:121 +0x60
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:120 +0xa81
Step #3 - "lint": 
Step #3 - "lint": goroutine 223 [syscall, 1 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x77d, 0xc420160dd8, 0x1000004, 0x0, 0x0, 0xc421377200, 0xc42002b400, 0xc420160e20)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc4214311a0, 0x4b885b, 0xc4200b02f8, 0xc420160ed0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc4214311a0, 0x0, 0xc420160f30, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc4214311a0, 0xc420160f90, 0x5d5cff, 0xc4214489b8)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4200d8420, 0xc420160fb0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4200d8420, 0xc420059740, 0xc4214457a0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 232 [IO wait, 1 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f7fc9942d10, 0x72, 0xc4212b1ce8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc4217d6658, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc4217d6658, 0xc421864701, 0x163b, 0x163b)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc4217d6640, 0xc4218647c5, 0x163b, 0x163b, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42000ea10, 0xc4218647c5, 0x163b, 0x163b, 0x5e, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42000ea10, 0xc4218647c5, 0x163b, 0x163b, 0x5e, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc421796bd0, 0x6aa6a0, 0xc42000ea10, 0x7f7fc99c6048, 0xc421796bd0, 0xc4212b1e01)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc421796bd0, 0x6aa6a0, 0xc42000ea10, 0x0, 0x0, 0x0, 0xc421406550, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc421796bd0, 0x6aa6a0, 0xc42000ea10, 0x404de5, 0xc4213b92c0, 0xc4212b1fb0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc4213b92c0, 0xc4212b1fb0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4200d94a0, 0xc420101f60)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 227 [IO wait, 1 minutes]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f7fc9943120, 0x72, 0xc4212af4e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc4200b15a8, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc4200b15a8, 0xc42017f201, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc4200b1590, 0xc42017f200, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc42000e810, 0xc42017f200, 0x200, 0x200, 0xc42017f200, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc42000e810, 0xc42017f200, 0x200, 0x200, 0x631240, 0x4508f0, 0xc4212af660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc421730f50, 0x6aa6a0, 0xc42000e810, 0x7f7fc99c6048, 0xc421730f50, 0xc4212af601)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc421730f50, 0x6aa6a0, 0xc42000e810, 0x0, 0x0, 0x0, 0xc4212af790, 0x5d3790, 0x666f40)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc421730f50, 0x6aa6a0, 0xc42000e810, 0x404de5, 0xc42008c360, 0x6a8711)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc42008c360, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4200d8c60, 0xc420101280)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 225 [syscall, 1 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x80e, 0xc420043dd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc421431320, 0xc420043f20, 0x405d10, 0x61f500)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc421431320, 0xc420001638, 0xc4202f8a78, 0xc42001c570)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc421431320, 0xc4202f8a20, 0xc420043f90, 0x5f1720)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4200d8580, 0xc4202f89c0, 0xc4201fc0e0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4200d8580, 0xc4200597d0, 0xc421445860)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 233 [syscall, 1 minutes]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x897, 0xc420acedd8, 0x1000004, 0x0, 0x0, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc420166f00, 0x0, 0x0, 0x61f500)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc420166f00, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc420166f00, 0x0, 0xc420acef90, 0x5f1720)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4200d94a0, 0xc4202f89c0, 0xc4201fc0e0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4200d94a0, 0xc4217e81a0, 0xc4201523c0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 63 [syscall]:
Step #3 - "lint": syscall.Syscall6(0xf7, 0x1, 0x9d2, 0xc4218f4dd8, 0x1000004, 0x0, 0x0, 0xc4218e9980, 0xc420024500, 0xc4218f4e20)
Step #3 - "lint": 	/usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Step #3 - "lint": os.(*Process).blockUntilWaitable(0xc4214301e0, 0x4b885b, 0xc4218fcb68, 0xc4218f4ed0)
Step #3 - "lint": 	/usr/local/go/src/os/wait_waitid.go:31 +0x98
Step #3 - "lint": os.(*Process).wait(0xc4214301e0, 0x0, 0xc4218f4f30, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/exec_unix.go:22 +0x3c
Step #3 - "lint": os.(*Process).Wait(0xc4214301e0, 0xc4218f4f90, 0x5d5cff, 0xc4218dac58)
Step #3 - "lint": 	/usr/local/go/src/os/exec.go:123 +0x2b
Step #3 - "lint": os/exec.(*Cmd).Wait(0xc4200d8160, 0xc4218f4fb0, 0x4329f8)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:461 +0x5c
Step #3 - "lint": main.executeLinter.func1(0xc4200d8160, 0xc420058090, 0xc421444060)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:160 +0x2b
Step #3 - "lint": created by main.executeLinter
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:159 +0x506
Step #3 - "lint": 
Step #3 - "lint": goroutine 62 [IO wait]:
Step #3 - "lint": internal/poll.runtime_pollWait(0x7f7fc9942c40, 0x72, 0xc4218f64e8)
Step #3 - "lint": 	/usr/local/go/src/runtime/netpoll.go:173 +0x57
Step #3 - "lint": internal/poll.(*pollDesc).wait(0xc420148338, 0x72, 0xffffffffffffff01, 0x6aaa60, 0x7b9498)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
Step #3 - "lint": internal/poll.(*pollDesc).waitRead(0xc420148338, 0xc42017e401, 0x200, 0x200)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
Step #3 - "lint": internal/poll.(*FD).Read(0xc420148320, 0xc42017e400, 0x200, 0x200, 0x0, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
Step #3 - "lint": os.(*File).read(0xc421404018, 0xc42017e400, 0x200, 0x200, 0xc42017e400, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/os/file_unix.go:226 +0x4e
Step #3 - "lint": os.(*File).Read(0xc421404018, 0xc42017e400, 0x200, 0x200, 0xc4218f6658, 0x4b874c, 0xc4218f6660)
Step #3 - "lint": 	/usr/local/go/src/os/file.go:107 +0x6a
Step #3 - "lint": bytes.(*Buffer).ReadFrom(0xc4200ec000, 0x6aa6a0, 0xc421404018, 0x7f7fc99c6048, 0xc4200ec000, 0xc4218f6601)
Step #3 - "lint": 	/usr/local/go/src/bytes/buffer.go:205 +0xa0
Step #3 - "lint": io.copyBuffer(0x6aa3c0, 0xc4200ec000, 0x6aa6a0, 0xc421404018, 0x0, 0x0, 0x0, 0xc4219f6050, 0x0, 0x0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:386 +0x31a
Step #3 - "lint": io.Copy(0x6aa3c0, 0xc4200ec000, 0x6aa6a0, 0xc421404018, 0x404de5, 0xc420074240, 0xc4218f67b0)
Step #3 - "lint": 	/usr/local/go/src/io/io.go:362 +0x5a
Step #3 - "lint": os/exec.(*Cmd).writerDescriptor.func1(0xc420074240, 0xc4218f67b0)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:275 +0x4d
Step #3 - "lint": os/exec.(*Cmd).Start.func1(0xc4200d8160, 0xc420100080)
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:396 +0x27
Step #3 - "lint": created by os/exec.(*Cmd).Start
Step #3 - "lint": 	/usr/local/go/src/os/exec/exec.go:395 +0x5df
Step #3 - "lint": 
Step #3 - "lint": goroutine 61 [semacquire]:
Step #3 - "lint": sync.runtime_Semacquire(0xc42014a15c)
Step #3 - "lint": 	/usr/local/go/src/runtime/sema.go:56 +0x39
Step #3 - "lint": sync.(*WaitGroup).Wait(0xc42014a150)
Step #3 - "lint": 	/usr/local/go/src/sync/waitgroup.go:129 +0x72
Step #3 - "lint": main.runLinters.func2(0xc42014a150, 0xc4202f8a20, 0xc4202f89c0)
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:133 +0x2b
Step #3 - "lint": created by main.runLinters
Step #3 - "lint": 	/go/src/github.com/alecthomas/gometalinter/execute.go:132 +0xce1
Step #3 - "lint": make: *** [lint] Error 2
Step #3 - "lint": Makefile:157: recipe for target 'lint' failed
Finished Step #3 - "lint"
ERROR
ERROR: build step 3 "make-docker" failed: exit status 2

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: aea83784-0413-4075-8214-03dde74b5ade

The following development artifacts have been built, and will exist for the next 30 days:

@markmandel
Copy link
Member

Can also confirm that minikube test worked!

➜  build git:(pr_315) make minikube-test-e2e
minikube profile default
minikube profile was successfully set to minikube
docker run --rm -v /home/markmandel/workspace/agones/src/agones.dev/agones/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /home/markmandel/workspace/agones/src/agones.dev/agones:/go/src/agones.dev/agones --network=host -v ~/.minikube:/home/markmandel/.minikube agones-build:6a4e0e6230 go test -v agones.dev/agones/test/e2e/... \
        --kubeconfig /root/.kube/config \
        --gameserver-image=gcr.io/agones-images/cpp-simple-server:0.2
=== RUN   TestCreateConnect
=== PAUSE TestCreateConnect
=== CONT  TestCreateConnect
--- PASS: TestCreateConnect (6.09s)
PASS
ok      agones.dev/agones/test/e2e      6.213s
?       agones.dev/agones/test/e2e/framework    [no test files]
➜  build git:(pr_315)

@markmandel markmandel added this to the 0.4.0 milestone Aug 13, 2018
@markmandel markmandel added area/build-tools Development tooling. I.e. pretty much everything in the `build` directory. kind/feature New features for Agones labels Aug 13, 2018
@agones-bot
Copy link
Collaborator

Build Failed 😱

Build Id: e8fd7db5-7926-450e-8a95-3ec997a6290f

Build Logs
starting build "e8fd7db5-7926-450e-8a95-3ec997a6290f"

FETCHSOURCE
Initialized empty Git repository in /workspace/.git/
From https://source.developers.google.com/p/agones-images/r/agones
 * branch            d753d3d606c86b7e22480061d572bdafef06770b -> FETCH_HEAD
HEAD is now at d753d3d adds the first e2e test This test creates a gameserver and connect to it
BUILD
Starting Step #0
Step #0: Already have image (with digest): ubuntu
Finished Step #0
Starting Step #1
Step #1: Already have image (with digest): gcr.io/cloud-builders/docker
Step #1: Sending build context to Docker daemon  127.6MB

Step #1: Step 1/3 : FROM gcr.io/cloud-builders/docker
Step #1:  ---> 77bb0a205920
Step #1: Step 2/3 : RUN apt-get install make
Step #1:  ---> Running in 353537ff2ef3
Step #1: Reading package lists...
Step #1: Building dependency tree...
Step #1: Reading state information...
Step #1: make is already the newest version (4.1-6).
Step #1: 0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
Step #1: Removing intermediate container 353537ff2ef3
Step #1:  ---> 04ddebab1b64
Step #1: Step 3/3 : ENTRYPOINT ["/usr/bin/make"]
Step #1:  ---> Running in 95448ad275dd
Step #1: Removing intermediate container 95448ad275dd
Step #1:  ---> 260c111fda9e
Step #1: Successfully built 260c111fda9e
Step #1: Successfully tagged make-docker:latest
Finished Step #1
Starting Step #2
Step #2: Already have image: make-docker
Step #2: docker pull gcr.io/agones-images/agones-build:6a4e0e6230 && docker tag gcr.io/agones-images/agones-build:6a4e0e6230 agones-build:6a4e0e6230
Step #2: 6a4e0e6230: Pulling from agones-images/agones-build
Step #2: cc1a78bfd46b: Pulling fs layer
Step #2: 65ec5fb8fee4: Pulling fs layer
Step #2: f792a8d67267: Pulling fs layer
Step #2: a806cd8cee4a: Pulling fs layer
Step #2: 1c552fc46208: Pulling fs layer
Step #2: d8784de2edcd: Pulling fs layer
Step #2: 6e1e0e294bf8: Pulling fs layer
Step #2: 963b588be427: Pulling fs layer
Step #2: 82f798f84091: Pulling fs layer
Step #2: 6e1e0e294bf8: Waiting
Step #2: 963b588be427: Waiting
Step #2: d8784de2edcd: Waiting
Step #2: 1c552fc46208: Waiting
Step #2: 82f798f84091: Waiting
Step #2: 441ce83697ac: Pulling fs layer
Step #2: 0fe11350c3a2: Pulling fs layer
Step #2: 3f8d72c2ec76: Pulling fs layer
Step #2: 441ce83697ac: Waiting
Step #2: 073db6dba58e: Pulling fs layer
Step #2: 041bbcc3d77a: Pulling fs layer
Step #2: f1d8de8e2321: Pulling fs layer
Step #2: 073db6dba58e: Waiting
Step #2: 82d28db58226: Pulling fs layer
Step #2: 3f8d72c2ec76: Waiting
Step #2: 3365267d035f: Pulling fs layer
Step #2: 7a1f047daee2: Pulling fs layer
Step #2: 4b15427fedbd: Pulling fs layer
Step #2: 7a1f047daee2: Waiting
Step #2: 3365267d035f: Waiting
Step #2: 325e5a9b46f9: Pulling fs layer
Step #2: c5817176734b: Pulling fs layer
Step #2: 4b15427fedbd: Waiting
Step #2: c5817176734b: Waiting
Step #2: cc1a78bfd46b: Verifying Checksum
Step #2: cc1a78bfd46b: Download complete
Step #2: a806cd8cee4a: Verifying Checksum
Step #2: a806cd8cee4a: Download complete
Step #2: 65ec5fb8fee4: Verifying Checksum
Step #2: 65ec5fb8fee4: Download complete
Step #2: d8784de2edcd: Verifying Checksum
Step #2: d8784de2edcd: Download complete
Step #2: 6e1e0e294bf8: Download complete
Step #2: 1c552fc46208: Verifying Checksum
Step #2: 1c552fc46208: Download complete
Step #2: 82f798f84091: Download complete
Step #2: 963b588be427: Verifying Checksum
Step #2: 963b588be427: Download complete
Step #2: 0fe11350c3a2: Verifying Checksum
Step #2: 0fe11350c3a2: Download complete
Step #2: 441ce83697ac: Verifying Checksum
Step #2: 441ce83697ac: Download complete
Step #2: cc1a78bfd46b: Pull complete
Step #2: 3f8d72c2ec76: Verifying Checksum
Step #2: 3f8d72c2ec76: Download complete
Step #2: 041bbcc3d77a: Verifying Checksum
Step #2: 041bbcc3d77a: Download complete
Step #2: 073db6dba58e: Verifying Checksum
Step #2: 073db6dba58e: Download complete
Step #2: 82d28db58226: Verifying Checksum
Step #2: 82d28db58226: Download complete
Step #2: f792a8d67267: Verifying Checksum
Step #2: f792a8d67267: Download complete
Step #2: 3365267d035f: Download complete
Step #2: 7a1f047daee2: Verifying Checksum
Step #2: 7a1f047daee2: Download complete
Step #2: 4b15427fedbd: Verifying Checksum
Step #2: 4b15427fedbd: Download complete
Step #2: 325e5a9b46f9: Verifying Checksum
Step #2: 325e5a9b46f9: Download complete
Step #2: c5817176734b: Verifying Checksum
Step #2: c5817176734b: Download complete
Step #2: f1d8de8e2321: Verifying Checksum
Step #2: f1d8de8e2321: Download complete
Step #2: 65ec5fb8fee4: Pull complete
Step #2: f792a8d67267: Pull complete
Step #2: a806cd8cee4a: Pull complete
Step #2: 1c552fc46208: Pull complete
Step #2: d8784de2edcd: Pull complete
Step #2: 6e1e0e294bf8: Pull complete
Step #2: 963b588be427: Pull complete
Step #2: 82f798f84091: Pull complete
Step #2: 441ce83697ac: Pull complete
Step #2: 0fe11350c3a2: Pull complete
Step #2: 3f8d72c2ec76: Pull complete
Step #2: 073db6dba58e: Pull complete
Step #2: 041bbcc3d77a: Pull complete
Step #2: f1d8de8e2321: Pull complete
Step #2: 82d28db58226: Pull complete
Step #2: 3365267d035f: Pull complete
Step #2: 7a1f047daee2: Pull complete
Step #2: 4b15427fedbd: Pull complete
Step #2: 325e5a9b46f9: Pull complete
Step #2: c5817176734b: Pull complete
Step #2: Digest: sha256:8c8e1202d9c3bb7fd413ef1a930fe8d0d81cec88303d66e692448e235daa72d5
Step #2: Status: Downloaded newer image for gcr.io/agones-images/agones-build:6a4e0e6230
Finished Step #2
Starting Step #3 - "lint"
Step #3 - "lint": Already have image: make-docker
Step #3 - "lint": mkdir -p ~/.kube
Step #3 - "lint": mkdir -p /workspace/build//.config/gcloud
Step #3 - "lint": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones -w /go/src/agones.dev/agones  agones-build:6a4e0e6230 bash -c \
Step #3 - "lint": 	"/root/gen-lint-exclude.sh && gometalinter --config .exclude.gometalinter.json --deadline=15m -t --skip vendor ./..."
Finished Step #3 - "lint"
Starting Step #6 - "build-e2e"
Starting Step #5 - "build"
Starting Step #4 - "tests"
Step #6 - "build-e2e": Already have image (with digest): gcr.io/cloud-builders/docker
Step #5 - "build": Already have image: make-docker
Step #4 - "tests": Already have image: make-docker
Step #5 - "build": mkdir -p ~/.kube
Step #5 - "build": mkdir -p /workspace/build//.config/gcloud
Step #4 - "tests": mkdir -p ~/.kube
Step #4 - "tests": mkdir -p /workspace/build//.config/gcloud
Step #6 - "build-e2e": Sending build context to Docker daemon  7.168kB

Step #4 - "tests": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones agones-build:6a4e0e6230 go test -race agones.dev/agones/pkg/... \
Step #4 - "tests": agones.dev/agones/sdks/...
Step #6 - "build-e2e": Step 1/20 : FROM gcr.io/cloud-builders/gcloud-slim
Step #5 - "build": docker run --rm -e "CGO_ENABLED=0" -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones agones-build:6a4e0e6230 go build \
Step #5 - "build": 	-o /go/src/agones.dev/agones/cmd/controller/bin/controller -a -ldflags "-X agones.dev/agones/pkg.Version=0.4.0-d753d3d" -installsuffix cgo agones.dev/agones/cmd/controller
Step #6 - "build-e2e": latest: Pulling from cloud-builders/gcloud-slim
Step #6 - "build-e2e": e5c573070776: Already exists
Step #6 - "build-e2e": a7e8e7eaedca: Already exists
Step #6 - "build-e2e": 3c2cba919283: Already exists
Step #6 - "build-e2e": 9ffd46154e72: Already exists
Step #6 - "build-e2e": Digest: sha256:9efc01122b9181bb628a4ad98cc36b93975bba9701e5ae9128593336088f1fc2
Step #6 - "build-e2e": Status: Downloaded newer image for gcr.io/cloud-builders/gcloud-slim:latest
Step #6 - "build-e2e":  ---> 698aef9c8ba1
Step #6 - "build-e2e": Step 2/20 : RUN apt-get update &&     apt-get install -y wget psmisc make python jq zip &&     apt-get clean
Step #6 - "build-e2e":  ---> Running in 85f327839dba
Step #4 - "tests": ?   	agones.dev/agones/pkg	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/apis	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/apis/stable	[no test files]
Step #6 - "build-e2e": Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
Step #6 - "build-e2e": Get:2 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial InRelease [17.5 kB]
Step #6 - "build-e2e": Get:3 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Step #6 - "build-e2e": Get:4 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main amd64 Packages [3328 B]
Step #6 - "build-e2e": Get:5 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
Step #6 - "build-e2e": Get:6 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [539 kB]
Step #6 - "build-e2e": Get:7 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
Step #6 - "build-e2e": Get:8 http://ppa.launchpad.net/git-core/ppa/ubuntu xenial/main Translation-en [2380 B]
Step #6 - "build-e2e": Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1201 kB]
Step #6 - "build-e2e": Get:10 http://security.ubuntu.com/ubuntu xenial-security/main Translation-en [229 kB]
Step #6 - "build-e2e": Get:11 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [7204 B]
Step #6 - "build-e2e": Get:12 http://security.ubuntu.com/ubuntu xenial-security/restricted Translation-en [2152 B]
Step #6 - "build-e2e": Get:13 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [367 kB]
Step #6 - "build-e2e": Get:14 http://archive.ubuntu.com/ubuntu xenial/main Translation-en [568 kB]
Step #6 - "build-e2e": Get:15 http://security.ubuntu.com/ubuntu xenial-security/universe Translation-en [138 kB]
Step #6 - "build-e2e": Get:16 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3456 B]
Step #6 - "build-e2e": Get:17 http://security.ubuntu.com/ubuntu xenial-security/multiverse Translation-en [1744 B]
Step #6 - "build-e2e": Get:18 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [8344 B]
Step #6 - "build-e2e": Get:19 http://archive.ubuntu.com/ubuntu xenial/restricted Translation-en [2908 B]
Step #6 - "build-e2e": Get:20 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [7532 kB]
Step #6 - "build-e2e": Get:21 http://archive.ubuntu.com/ubuntu xenial/universe Translation-en [4354 kB]
Step #6 - "build-e2e": Get:22 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [144 kB]
Step #6 - "build-e2e": Get:23 http://archive.ubuntu.com/ubuntu xenial/multiverse Translation-en [106 kB]
Step #6 - "build-e2e": Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [831 kB]
Step #6 - "build-e2e": Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main Translation-en [341 kB]
Step #6 - "build-e2e": Get:26 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [7556 B]
Step #6 - "build-e2e": Get:27 http://archive.ubuntu.com/ubuntu xenial-updates/restricted Translation-en [2272 B]
Step #6 - "build-e2e": Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [680 kB]
Step #6 - "build-e2e": Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [274 kB]
Step #6 - "build-e2e": Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [16.4 kB]
Step #6 - "build-e2e": Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse Translation-en [8344 B]
Step #6 - "build-e2e": Get:32 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [6756 B]
Step #6 - "build-e2e": Get:33 http://archive.ubuntu.com/ubuntu xenial-backports/main Translation-en [4180 B]
Step #6 - "build-e2e": Get:34 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7420 B]
Step #6 - "build-e2e": Get:35 http://archive.ubuntu.com/ubuntu xenial-backports/universe Translation-en [3996 B]
Step #6 - "build-e2e": Fetched 18.0 MB in 5s (3219 kB/s)
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Reading package lists...
Step #6 - "build-e2e": Building dependency tree...
Step #6 - "build-e2e": Reading state information...
Step #6 - "build-e2e": python is already the newest version (2.7.12-1~16.04).
Step #6 - "build-e2e": python set to manually installed.
Step #6 - "build-e2e": The following packages were automatically installed and are no longer required:
Step #6 - "build-e2e":   cpp cpp-5 gcc-5 libasan2 libatomic1 libc-dev-bin libc6-dev libcc1-0
Step #6 - "build-e2e":   libcilkrts5 libexpat1-dev libgcc-5-dev libgomp1 libisl15 libitm1 liblsan0
Step #6 - "build-e2e":   libmpc3 libmpfr4 libmpx0 libpython-dev libpython2.7 libpython2.7-dev
Step #6 - "build-e2e":   libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
Step #6 - "build-e2e":   python-pkg-resources python2.7-dev
Step #6 - "build-e2e": Use 'apt autoremove' to remove them.
Step #6 - "build-e2e": The following additional packages will be installed:
Step #6 - "build-e2e":   libonig2 unzip
Step #6 - "build-e2e": Suggested packages:
Step #6 - "build-e2e":   make-doc
Step #6 - "build-e2e": The following NEW packages will be installed:
Step #6 - "build-e2e":   jq libonig2 make psmisc unzip wget zip
Step #6 - "build-e2e": 0 upgraded, 7 newly installed, 0 to remove and 2 not upgraded.
Step #6 - "build-e2e": Need to get 746 kB/1046 kB of archives.
Step #6 - "build-e2e": After this operation, 3429 kB of additional disk space will be used.
Step #6 - "build-e2e": Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 psmisc amd64 22.21-2.1build1 [48.0 kB]
Step #6 - "build-e2e": Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libonig2 amd64 5.9.6-1ubuntu0.1 [86.7 kB]
Step #6 - "build-e2e": Get:3 http://archive.ubuntu.com/ubuntu xenial/universe amd64 jq amd64 1.5+dfsg-1 [144 kB]
Step #6 - "build-e2e": Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB]
Step #6 - "build-e2e": Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 unzip amd64 6.0-20ubuntu1 [158 kB]
Step #6 - "build-e2e": Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 zip amd64 3.0-11 [158 kB]
Step #6 - "build-e2e": Fetched 746 kB in 0s (818 kB/s)
Step #6 - "build-e2e": Selecting previously unselected package psmisc.
Step #6 - "build-e2e": (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 ... 17410 files and directories currently installed.)
Step #6 - "build-e2e": Preparing to unpack .../psmisc_22.21-2.1build1_amd64.deb ...
Step #6 - "build-e2e": Unpacking psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Selecting previously unselected package wget.
Step #6 - "build-e2e": Preparing to unpack .../wget_1.17.1-1ubuntu1.4_amd64.deb ...
Step #6 - "build-e2e": Unpacking wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Selecting previously unselected package libonig2:amd64.
Step #6 - "build-e2e": Preparing to unpack .../libonig2_5.9.6-1ubuntu0.1_amd64.deb ...
Step #6 - "build-e2e": Unpacking libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Selecting previously unselected package jq.
Step #6 - "build-e2e": Preparing to unpack .../jq_1.5+dfsg-1_amd64.deb ...
Step #6 - "build-e2e": Unpacking jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Selecting previously unselected package make.
Step #6 - "build-e2e": Preparing to unpack .../archives/make_4.1-6_amd64.deb ...
Step #6 - "build-e2e": Unpacking make (4.1-6) ...
Step #6 - "build-e2e": Selecting previously unselected package unzip.
Step #6 - "build-e2e": Preparing to unpack .../unzip_6.0-20ubuntu1_amd64.deb ...
Step #6 - "build-e2e": Unpacking unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Selecting previously unselected package zip.
Step #6 - "build-e2e": Preparing to unpack .../archives/zip_3.0-11_amd64.deb ...
Step #6 - "build-e2e": Unpacking zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #6 - "build-e2e": Processing triggers for mime-support (3.59ubuntu1) ...
Step #6 - "build-e2e": Setting up psmisc (22.21-2.1build1) ...
Step #6 - "build-e2e": Setting up wget (1.17.1-1ubuntu1.4) ...
Step #6 - "build-e2e": Setting up libonig2:amd64 (5.9.6-1ubuntu0.1) ...
Step #6 - "build-e2e": Setting up jq (1.5+dfsg-1) ...
Step #6 - "build-e2e": Setting up make (4.1-6) ...
Step #6 - "build-e2e": Setting up unzip (6.0-20ubuntu1) ...
Step #6 - "build-e2e": Setting up zip (3.0-11) ...
Step #6 - "build-e2e": Processing triggers for libc-bin (2.23-0ubuntu10) ...
Step #6 - "build-e2e": Removing intermediate container 85f327839dba
Step #6 - "build-e2e":  ---> fa035d95316f
Step #6 - "build-e2e": Step 3/20 : WORKDIR /usr/local
Step #6 - "build-e2e": Removing intermediate container 312b0d057495
Step #6 - "build-e2e":  ---> 735ca497e947
Step #6 - "build-e2e": Step 4/20 : ENV GO_VERSION=1.10.3
Step #6 - "build-e2e":  ---> Running in 33112b2ca31a
Step #6 - "build-e2e": Removing intermediate container 33112b2ca31a
Step #6 - "build-e2e":  ---> d1ac15e6107d
Step #6 - "build-e2e": Step 5/20 : ENV GOPATH /go
Step #6 - "build-e2e":  ---> Running in 50376f7886f3
Step #6 - "build-e2e": Removing intermediate container 50376f7886f3
Step #6 - "build-e2e":  ---> fb7a83ba16fd
Step #6 - "build-e2e": Step 6/20 : RUN wget -q https://redirector.gvt1.com/edgedl/go/go${GO_VERSION}.linux-amd64.tar.gz &&     tar -xzf go${GO_VERSION}.linux-amd64.tar.gz && rm go${GO_VERSION}.linux-amd64.tar.gz && mkdir ${GOPATH}
Step #6 - "build-e2e":  ---> Running in 0238101af823
Step #4 - "tests": ok  	agones.dev/agones/pkg/apis/stable/v1alpha1	1.050s
Step #4 - "tests": ?   	agones.dev/agones/pkg/client	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/clientset/versioned	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/clientset/versioned/fake	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/clientset/versioned/scheme	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/clientset/versioned/typed/stable/v1alpha1	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/clientset/versioned/typed/stable/v1alpha1/fake	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/informers/externalversions	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/informers/externalversions/internalinterfaces	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/informers/externalversions/stable	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/informers/externalversions/stable/v1alpha1	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/client/listers/stable/v1alpha1	[no test files]
Step #5 - "build": docker build /workspace/cmd/controller/ --tag=gcr.io/agones-images/agones-controller:0.4.0-d753d3d 
Step #5 - "build": Sending build context to Docker daemon  41.79MB

Step #5 - "build": Step 1/6 : FROM alpine:3.7
Step #5 - "build": 3.7: Pulling from library/alpine
Step #5 - "build": 911c6d0c7995: Already exists
Step #5 - "build": Digest: sha256:5ce5f501c457015c4b91f91a15ac69157d9b06f1a75cf9107bf2b62e0843983a
Step #5 - "build": Status: Downloaded newer image for alpine:3.7
Step #5 - "build":  ---> 791c3e2ebfcb
Step #5 - "build": Step 2/6 : RUN apk --update add ca-certificates &&     adduser -D agones
Step #5 - "build":  ---> Running in 736a5f711acf
Step #5 - "build": fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/main/x86_64/APKINDEX.tar.gz
Step #5 - "build": fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/community/x86_64/APKINDEX.tar.gz
Step #5 - "build": (1/1) Installing ca-certificates (20171114-r0)
Step #5 - "build": Executing busybox-1.27.2-r11.trigger
Step #5 - "build": Executing ca-certificates-20171114-r0.trigger
Step #5 - "build": OK: 5 MiB in 14 packages
Step #5 - "build": Removing intermediate container 736a5f711acf
Step #5 - "build":  ---> 0e8bede7504c
Step #5 - "build": Step 3/6 : COPY ./bin/controller /home/agones/controller
Step #5 - "build":  ---> dfae68dcc3fd
Step #5 - "build": Step 4/6 : RUN chown -R agones /home/agones &&     chmod o+x /home/agones/controller
Step #5 - "build":  ---> Running in 88726d714706
Step #5 - "build": Removing intermediate container 88726d714706
Step #5 - "build":  ---> 56fd4cd250ae
Step #5 - "build": Step 5/6 : USER agones
Step #5 - "build":  ---> Running in 704e331fe3b0
Step #5 - "build": Removing intermediate container 704e331fe3b0
Step #5 - "build":  ---> dc37a2de54fb
Step #5 - "build": Step 6/6 : ENTRYPOINT ["/home/agones/controller"]
Step #5 - "build":  ---> Running in 5f33c32c71ff
Step #5 - "build": Removing intermediate container 5f33c32c71ff
Step #5 - "build":  ---> 374ba05f59ed
Step #5 - "build": Successfully built 374ba05f59ed
Step #5 - "build": Successfully tagged gcr.io/agones-images/agones-controller:0.4.0-d753d3d
Step #5 - "build": docker run --rm -e "CGO_ENABLED=0" -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones agones-build:6a4e0e6230 go build \
Step #5 - "build": 	-o /go/src/agones.dev/agones/cmd/sdk-server/bin/sdk-server.linux.amd64 -a -ldflags "-X agones.dev/agones/pkg.Version=0.4.0-d753d3d" -installsuffix cgo agones.dev/agones/cmd/sdk-server
Step #6 - "build-e2e": Removing intermediate container 0238101af823
Step #6 - "build-e2e":  ---> 5414748cbc53
Step #6 - "build-e2e": Step 7/20 : ENV PATH /usr/local/go/bin:/go/bin:$PATH
Step #6 - "build-e2e":  ---> Running in d92407f512ca
Step #6 - "build-e2e": Removing intermediate container d92407f512ca
Step #6 - "build-e2e":  ---> 449552ba31c5
Step #6 - "build-e2e": Step 8/20 : ENV KUBECTL_VER 1.11.0
Step #6 - "build-e2e":  ---> Running in 4b55087f3a0e
Step #6 - "build-e2e": Removing intermediate container 4b55087f3a0e
Step #6 - "build-e2e":  ---> d10b405d8142
Step #6 - "build-e2e": Step 9/20 : RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VER}/bin/linux/amd64/kubectl &&     chmod go+rx ./kubectl &&     mv ./kubectl /usr/local/bin/kubectl
Step #6 - "build-e2e":  ---> Running in 6ec315d27d0f
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
 1�[0m�[91m9�[0m�[91m �[0m�[91m52.�[0m�[91m8M�[0m�[91m  �[0m�[91m �[0m�[91m19 �[0m�[91m10.3M �[0m�[91m �[0m�[91m  0     0  8474k      0  0:00:06  0:00:01  0:00:05 8474k�[0m�[91m
100 52.8M  100 52.8M    0     0  35.4M      0  0:00:01  0:00:01 --:--:-- 35.4M
Step #4 - "tests": ok  	agones.dev/agones/pkg/fleetallocation	11.867s
Step #4 - "tests": ok  	agones.dev/agones/pkg/fleets	2.493s
Step #6 - "build-e2e": �[0mRemoving intermediate container 6ec315d27d0f
Step #6 - "build-e2e":  ---> 0c356b40ee91
Step #6 - "build-e2e": Step 10/20 : ENV HELM_VER 2.9.1
Step #6 - "build-e2e":  ---> Running in e39dc19468d4
Step #6 - "build-e2e": Removing intermediate container e39dc19468d4
Step #6 - "build-e2e":  ---> 6ab5ef8147a6
Step #6 - "build-e2e": Step 11/20 : ENV HELM_URL https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VER}-linux-amd64.tar.gz
Step #6 - "build-e2e":  ---> Running in d76ecdcdcb50
Step #6 - "build-e2e": Removing intermediate container d76ecdcdcb50
Step #6 - "build-e2e":  ---> d8be230b6d47
Step #6 - "build-e2e": Step 12/20 : RUN curl -L  ${HELM_URL} > /tmp/helm.tar.gz     && tar -zxvf /tmp/helm.tar.gz -C /tmp     && mv /tmp/linux-amd64/helm /usr/local/bin/helm     && chmod go+rx /usr/local/bin/helm     && rm /tmp/helm.tar.gz && rm -rf /tmp/linux-amd64
Step #6 - "build-e2e":  ---> Running in 5fe7f9e894ad
Step #6 - "build-e2e": �[91m  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
Step #6 - "build-e2e":                                  Dload  Upload   Total   Spent    Left  Speed
Step #6 - "build-e2e": 
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0�[0m�[91m
100 8946k  100 8946k    0     0  38.1M      0 --:--:-- --:--:-- --:--:-- 38.3M
Step #6 - "build-e2e": �[0mlinux-amd64/
Step #6 - "build-e2e": linux-amd64/README.md
Step #6 - "build-e2e": linux-amd64/helm
Step #6 - "build-e2e": linux-amd64/LICENSE
Step #4 - "tests": ok  	agones.dev/agones/pkg/gameservers	13.752s
Step #4 - "tests": ok  	agones.dev/agones/pkg/gameserversets	2.917s
Step #4 - "tests": ?   	agones.dev/agones/pkg/sdk	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/testing	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/util	[no test files]
Step #4 - "tests": ok  	agones.dev/agones/pkg/util/crd	5.041s
Step #4 - "tests": ?   	agones.dev/agones/pkg/util/runtime	[no test files]
Step #4 - "tests": ?   	agones.dev/agones/pkg/util/signals	[no test files]
Step #4 - "tests": ok  	agones.dev/agones/pkg/util/webhooks	1.107s
Step #4 - "tests": ok  	agones.dev/agones/pkg/util/workerqueue	3.050s
Step #4 - "tests": ok  	agones.dev/agones/sdks/go	1.021s
Step #6 - "build-e2e": Removing intermediate container 5fe7f9e894ad
Step #6 - "build-e2e":  ---> b6e98cee00fc
Step #6 - "build-e2e": Step 13/20 : ENV CONSUL_VERSION=1.2.1
Step #6 - "build-e2e":  ---> Running in 2edda65da7ae
Step #6 - "build-e2e": Removing intermediate container 2edda65da7ae
Step #6 - "build-e2e":  ---> 7022e9d1b76d
Step #6 - "build-e2e": Step 14/20 : ENV HASHICORP_RELEASES=https://releases.hashicorp.com
Step #6 - "build-e2e":  ---> Running in b6d815c66e40
Step #4 - "tests": mkdir -p /tmp/agones-install
Step #4 - "tests": cp /workspace/install/yaml/install.yaml /tmp/agones-install/install.yaml
Step #4 - "tests": sort /tmp/agones-install/install.yaml > /tmp/agones-install/install.yaml.sorted
Step #4 - "tests": /usr/bin/make gen-install
Step #6 - "build-e2e": Removing intermediate container b6d815c66e40
Step #6 - "build-e2e":  ---> 198cc04a153b
Step #6 - "build-e2e": Step 15/20 : RUN mkdir -p /tmp/build &&     wget ${HASHICORP_RELEASES}/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip     -P /tmp/build/  &&     unzip -d /usr/local/bin/ /tmp/build/consul_${CONSUL_VERSION}_linux_amd64.zip &&     cd /tmp &&     rm -rf /tmp/build &&     chmod go+rx /usr/local/bin/consul &&     consul version
Step #4 - "tests": make[1]: Entering directory '/workspace/build'
Step #4 - "tests": mkdir -p ~/.kube
Step #4 - "tests": mkdir -p /workspace/build//.config/gcloud
Step #6 - "build-e2e":  ---> Running in 9138a3b39127
Step #4 - "tests": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones  agones-build:6a4e0e6230 bash -c \
Step #4 - "tests": 	'helm template --name=agones-manual --namespace agones-system /go/src/agones.dev/agones/install/helm/agones \
Step #4 - "tests": 	--set agones.controller.generateTLS=false \
Step #4 - "tests": 	> /go/src/agones.dev/agones/install/yaml/install.yaml'
Step #6 - "build-e2e": �[91m--2018-08-15 05:41:17--  https://releases.hashicorp.com/consul/1.2.1/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e": �[0m�[91mResolving releases.hashicorp.com (releases.hashicorp.com)... �[0m�[91m151.101.1.183, 151.101.65.183, 151.101.129.183, ...
Step #6 - "build-e2e": Connecting to releases.hashicorp.com (releases.hashicorp.com)|151.101.1.183|:443... �[0m�[91mconnected.
Step #6 - "build-e2e": �[0m�[91mHTTP request sent, awaiting response... �[0m�[91m200 OK
Step #6 - "build-e2e": Length: 14529496 (14M) [application/zip]
Step #6 - "build-e2e": �[0m�[91mSaving to: '/tmp/build/consul_1.2.1_linux_amd64.zip'
Step #6 - "build-e2e": �[0m�[91m
Step #6 - "build-e2e":      0K .....�[0m�[91m...�[0m�[91m.. .�[0m�[91m...�[0m�[91m..�[0m�[91m.... ..�[0m�[91m....�[0m�[91m.... .�[0m�[91m...�[0m�[91m...�[0m�[91m... ..�[0m�[91m...�[0m�[91m...�[0m�[91m..  0% 2.20M 6s
Step #6 - "build-e2e":     50K ...�[0m�[91m.......�[0m�[91m ......�[0m�[91m.... ....�[0m�[91m..�[0m�[91m.... .....�[0m�[91m..... ...�[0m�[91m.......  0% 5.49M 4s
Step #6 - "build-e2e":    100K ..�[0m�[91m.�[0m�[91m......�[0m�[91m. .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m.......  1% 10.2M 3s
Step #6 - "build-e2e":    150K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m.........  1% 7.97M 3s
Step #6 - "build-e2e":    200K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m.�[0m�[91m ..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m...  1% 12.6M�[0m�[91m 3s�[0m�[91m
Step #6 - "build-e2e":    250K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... ..........  2% 8.94M 2s
Step #6 - "build-e2e":    300K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... ..........  2% 12.2M 2s
Step #6 - "build-e2e":    350K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m.  2% 8.08M 2s
Step #6 - "build-e2e":    400K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m...  3% 12.1M 2s
Step #6 - "build-e2e":    450K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m.....  3% 12.6M 2s
Step #6 - "build-e2e":    500K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m.......  3% 11.9M 2s
Step #6 - "build-e2e":    550K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... ..........  4% 12.6M 2s
Step #6 - "build-e2e":    600K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ..........  4% 10.0M 2s
Step #6 - "build-e2e":    650K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m.  4% 10.9M 2s
Step #6 - "build-e2e":    700K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m...  5% 15.8M 2s
Step #6 - "build-e2e":    750K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m.....  5% 9.80M 2s
Step #6 - "build-e2e":    800K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m.......  5% 16.1M 2s
Step #6 - "build-e2e":    850K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m.........  6% 10.4M 2s
Step #6 - "build-e2e":    900K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. ..........  6% 12.9M 1s
Step #6 - "build-e2e":    950K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... ......�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m  7%�[0m�[91m 18.3M�[0m�[91m 1s
Step #6 - "build-e2e":   1000K �[0m�[91m..�[0m�[91m.�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... ..�[0m�[91m...�[0m�[91m...�[0m�[91m.. ..........  7% 13.3M�[0m�[91m 1s
Step #6 - "build-e2e":   1050K .�[0m�[91m......... .......�[0m�[91m.�[0m�[91m.. .......... ...�[0m�[91m....... ..........  7% 10.5M 1s
Step #6 - "build-e2e":   1100K .......... .....�[0m�[91m..... .......... .......... .......�[0m�[91m...  8% 18.1M 1s
Step #6 - "build-e2e":   1150K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m.....  8% 11.2M 1s
Step #6 - "build-e2e":   1200K .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m.......  8% 2.18M 2s
Step #6 - "build-e2e":   1250K .........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m.........  9% 8.38M 2s
Step #6 - "build-e2e":   1300K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. ..........  9% 8.97M 2s
Step #6 - "build-e2e":   1350K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... ..........  9% 12.0M 1s
Step #6 - "build-e2e":   1400K ...�[0m�[91m....... .........�[0m�[91m. .�[0m�[91m......... .....�[0m�[91m..... .......... 10%�[0m�[91m 11.6M 1s
Step #6 - "build-e2e":   1450K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 10% 9.97M 1s
Step #6 - "build-e2e":   1500K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 10% 17.9M 1s
Step #6 - "build-e2e":   1550K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 11% 15.4M 1s
Step #6 - "build-e2e":   1600K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 11% 16.5M 1s
Step #6 - "build-e2e":   1650K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 11% 16.6M 1s
Step #6 - "build-e2e":   1700K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 12% 16.2M 1s
Step #6 - "build-e2e":   1750K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... 12% 18.6M 1s
Step #6 - "build-e2e":   1800K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 13% 16.6M 1s
Step #6 - "build-e2e":   1850K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 13% 12.8M 1s
Step #6 - "build-e2e":   1900K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 13% 19.1M 1s
Step #6 - "build-e2e":   1950K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 14% 17.3M 1s
Step #6 - "build-e2e":   2000K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 14% 14.0M 1s
Step #6 - "build-e2e":   2050K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .........�[0m�[91m. 14% 32.5M 1s
Step #6 - "build-e2e":   2100K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 15% 17.1M 1s
Step #6 - "build-e2e":   2150K .......... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 15% 20.5M 1s
Step #6 - "build-e2e":   2200K ...�[0m�[91m....... .......... .......... .....�[0m�[91m..... .......... 15% 14.3M 1s
Step #6 - "build-e2e":   2250K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 16% 19.7M 1s
Step #6 - "build-e2e":   2300K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......... 16% 23.9M 1s
Step #6 - "build-e2e":   2350K .......... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 16% 15.6M 1s
Step #6 - "build-e2e":   2400K .......... .......... .......�[0m�[91m... .......... ...�[0m�[91m....... 17% 14.7M 1s
Step #6 - "build-e2e":   2450K .........�[0m�[91m. .......... .......... ...�[0m�[91m....... .�[0m�[91m......... 17% 33.3M 1s
Step #6 - "build-e2e":   2500K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 17% 26.2M 1s
Step #6 - "build-e2e":   2550K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... .......... 18% 17.7M 1s
Step #6 - "build-e2e":   2600K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 18% 14.5M 1s
Step #6 - "build-e2e":   2650K .�[0m�[91m......... .......�[0m�[91m... .......... .......... .........�[0m�[91m. 19% 22.4M 1s
Step #6 - "build-e2e":   2700K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......... 19% 27.2M 1s
Step #6 - "build-e2e":   2750K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 19% 17.9M 1s
Step #6 - "build-e2e":   2800K .......... .�[0m�[91m......... .......�[0m�[91m... .......... .......... 20% 48.3M 1s
Step #6 - "build-e2e":   2850K .�[0m�[91m........�[0m�[91m. .......... .......... ...�[0m�[91m....... .�[0m�[91m......... 20% 12.2M 1s
Step #6 - "build-e2e":   2900K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 20% 39.9M 1s
Step #6 - "build-e2e":   2950K .....�[0m�[91m..... .......... .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.......�[0m�[91m... .......... 21% 20.1M 1s
Step #6 - "build-e2e":   3000K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... 21% 28.4M 1s
Step #6 - "build-e2e":   3050K .�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 21% 12.5M 1s
Step #6 - "build-e2e":   3100K ........�[0m�[91m.. .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 22% 24.4M 1s
Step #6 - "build-e2e":   3150K ......�[0m�[91m.... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 22% 32.4M 1s
Step #6 - "build-e2e":   3200K .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 22% 24.3M 1s
Step #6 - "build-e2e":   3250K ..�[0m�[91m.......�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 23% 62.6M 1s
Step #6 - "build-e2e":   3300K .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. .......... 23% 12.4M 1s
Step #6 - "build-e2e":   3350K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 23% 23.9M 1s
Step #6 - "build-e2e":   3400K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 24% 30.1M 1s
Step #6 - "build-e2e":   3450K .�[0m�[91m......... .......�[0m�[91m... .......... ....�[0m�[91m.�[0m�[91m..... .�[0m�[91m........�[0m�[91m. 24% 21.5M 1s
Step #6 - "build-e2e":   3500K .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... 25% 46.5M 1s
Step #6 - "build-e2e":   3550K .......... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 25% 15.6M 1s
Step #6 - "build-e2e":   3600K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 25%�[0m�[91m 23.5M 1s
Step #6 - "build-e2e":   3650K .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... �[0m�[91m.......... .�[0m�[91m......... 26% 31.2M 1s
Step #6 - "build-e2e":   3700K .......�[0m�[91m... .......... �[0m�[91m...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 26% 41.6M 1s
Step #6 - "build-e2e":   3750K .....�[0m�[91m.�[0m�[91m..�[0m�[91m.. .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 26% 25.3M 1s
Step #6 - "build-e2e":   3800K ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... .......... 27% 17.5M 1s
Step #6 - "build-e2e":   3850K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m ...�[0m�[91m....... .........�[0m�[91m. 27% 18.3M 1s
Step #6 - "build-e2e":   3900K .......... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... 27% 32.7M�[0m�[91m 1s
Step #6 - "build-e2e":   3950K ....�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m... ...�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m... ......�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m 28% 33.6M�[0m�[91m 1s�[0m�[91m
Step #6 - "build-e2e":   4000K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. ......�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m ...�[0m�[91m.....�[0m�[91m.�[0m�[91m. 28%�[0m�[91m 20.1M�[0m�[91m 1s�[0m�[91m
Step #6 - "build-e2e":   4050K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m....�[0m�[91m. .......... .......... ...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.... .�[0m�[91m......... 28% 37.1M 1s
Step #6 - "build-e2e":   4100K .......�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m. .�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m. .�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m 29% 20.0M�[0m�[91m 1s�[0m�[91m
Step #6 - "build-e2e":   4150K�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m. .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m. �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m... .......... 29% 25.2M 1s
Step #6 - "build-e2e":   4200K ...�[0m�[91m....... .......... .......�[0m�[91m... .....�[0m�[91m..... .......... 29% 40.5M 1s
Step #6 - "build-e2e":   4250K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... ...�[0m�[91m......�[0m�[91m. 30% 21.3M 1s
Step #6 - "build-e2e":   4300K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 30% 61.6M 1s
Step #6 - "build-e2e":   4350K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 31% 21.9M 1s
Step #6 - "build-e2e":   4400K ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 31% 31.9M 1s
Step #6 - "build-e2e":   4450K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m...�[0m�[91m...... 31% 22.6M 1s
Step #6 - "build-e2e":   4500K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......... 32% 39.7M 1s
Step #6 - "build-e2e":   4550K .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m.�[0m�[91m.. .....�[0m�[91m..... 32% 20.3M 1s
Step #6 - "build-e2e":   4600K ...�[0m�[91m..�[0m�[91m..... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ........�[0m�[91m.. 32% 40.6M 1s
Step #6 - "build-e2e":   4650K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m.....�[0m�[91m ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 33% 19.9M 1s
Step #6 - "build-e2e":   4700K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... ..�[0m�[91m.�[0m�[91m....�[0m�[91m... 33% 62.3M 1s
Step #6 - "build-e2e":   4750K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m.�[0m�[91m �[0m�[91m.......... .....�[0m�[91m..... 33% 30.7M 1s
Step #6 - "build-e2e":   4800K ........�[0m�[91m.. .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 34% 29.1M 1s
Step #6 - "build-e2e":   4850K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 34% 20.4M 1s
Step #6 - "build-e2e":   4900K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 34% 41.1M 1s
Step #6 - "build-e2e":   4950K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.....�[0m�[91m..... 35% 30.4M 1s
Step #6 - "build-e2e":   5000K ...�[0m�[91m....... .�[0m�[91m.�[0m�[91m.......�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m.�[0m�[91m...... 35% 36.8M 1s
Step #6 - "build-e2e":   5050K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m.�[0m�[91m.�[0m�[91m. .......... ...�[0m�[91m....... .........�[0m�[91m. 35% 27.2M 1s
Step #6 - "build-e2e":   5100K .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 36% 24.9M 1s
Step #6 - "build-e2e":   5150K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... 36% 68.4M 1s
Step #6 - "build-e2e":   5200K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 37% 28.9M 1s
Step #6 - "build-e2e":   5250K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m......... 37% 24.8M 1s
Step #6 - "build-e2e":   5300K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... 37% 26.6M 1s
Step #6 - "build-e2e":   5350K .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... 38% 89.8M 1s
Step #6 - "build-e2e":   5400K ...�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.. �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.. 38%�[0m�[91m 12.0M 1s�[0m�[91m
Step #6 - "build-e2e":   5450K �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m. .�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 38%�[0m�[91m 30.5M�[0m�[91m 1s
Step #6 - "build-e2e":   5500K�[0m�[91m �[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m...�[0m�[91m..�[0m�[91m..�[0m�[91m .�[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m 39%�[0m�[91m 28.8M�[0m�[91m 1s
Step #6 - "build-e2e":   5550K�[0m�[91m �[0m�[91m..�[0m�[91m...�[0m�[91m..�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m..�[0m�[91m.�[0m�[91m ..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m 39%�[0m�[91m 33.0M�[0m�[91m 1s�[0m�[91m
Step #6 - "build-e2e":   5600K .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m...�[0m�[91m .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. .�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m ..�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m 39%�[0m�[91m 42.2M�[0m�[91m 1s
Step #6 - "build-e2e":   5650K�[0m�[91m .�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m ..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m...�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m 40%�[0m�[91m 34.2M 1s�[0m�[91m
Step #6 - "build-e2e":   5700K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.....�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m. .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m ...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m 40%�[0m�[91m 31.5M 1s
Step #6 - "build-e2e":   5750K �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m ..�[0m�[91m.�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... 40% 80.8M 1s
Step #6 - "build-e2e":   5800K .......... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ....�[0m�[91m.�[0m�[91m..... 41%  133M 1s
Step #6 - "build-e2e":   5850K .�[0m�[91m.�[0m�[91m.�[0m�[91m.....�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m..�[0m�[91m .......... 41% 19.0M 0s
Step #6 - "build-e2e":   5900K .......... .....�[0m�[91m..... ...�[0m�[91m.......�[0m�[91m .........�[0m�[91m. .....�[0m�[91m..�[0m�[91m... 41% 49.6M 0s
Step #6 - "build-e2e":   5950K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... 42% 73.3M 0s
Step #6 - "build-e2e":   6000K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 42% 30.2M 0s
Step #6 - "build-e2e":   6050K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .........�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.......�[0m�[91m. 42% 62.9M 0s
Step #6 - "build-e2e":   6100K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 43% 37.3M 0s
Step #6 - "build-e2e":   6150K .......... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 43% 25.5M 0s
Step #6 - "build-e2e":   6200K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 44% 49.9M 0s
Step #6 - "build-e2e":   6250K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 44% 27.7M 0s
Step #6 - "build-e2e":   6300K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m......... .......... 44% 40.6M 0s
Step #6 - "build-e2e":   6350K ....�[0m�[91m...... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 45% 36.2M 0s
Step #6 - "build-e2e":   6400K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 45% 50.1M 0s
Step #6 - "build-e2e":   6450K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. 45%�[0m�[91m 25.2M 0s�[0m�[91m
Step #6 - "build-e2e":   6500K �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m 46%�[0m�[91m 23.0M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   6550K .�[0m�[91m..�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.......... .......... .......... 46% 28.0M 0s
Step #6 - "build-e2e":   6600K .......... ...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. .�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m 46% 26.5M�[0m�[91m 0s
Step #6 - "build-e2e":   6650K �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. .�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 47%�[0m�[91m 19.6M 0s
Step #6 - "build-e2e":   6700K�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m....�[0m�[91m...�[0m�[91m.�[0m�[91m .�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m 47%�[0m�[91m 29.3M�[0m�[91m 0s
Step #6 - "build-e2e":   6750K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m...�[0m�[91m..�[0m�[91m �[0m�[91m...�[0m�[91m..�[0m�[91m..... .�[0m�[91m.�[0m�[91m.......�[0m�[91m. .......�[0m�[91m.�[0m�[91m.. .....�[0m�[91m..�[0m�[91m... 47% 45.4M 0s
Step #6 - "build-e2e":   6800K ....�[0m�[91m...... ..�[0m�[91m.....�[0m�[91m... .......�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m......�[0m�[91m... ..........�[0m�[91m 48%�[0m�[91m 78.4M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   6850K �[0m�[91m.�[0m�[91m......... .......�[0m�[91m..�[0m�[91m.�[0m�[91m .�[0m�[91m....�[0m�[91m.�[0m�[91m..�[0m�[91m.. .......... .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..... 48% 44.5M 0s
Step #6 - "build-e2e":   6900K .......�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m...�[0m�[91m.�[0m�[91m...... ...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.. .......�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .......... 48% 41.5M 0s
Step #6 - "build-e2e":   6950K .....�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m. .......... ..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..... .......�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m......... 49% 70.8M 0s
Step #6 - "build-e2e":   7000K ...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.... .........�[0m�[91m. .......... .....�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m .�[0m�[91m..�[0m�[91m.�[0m�[91m...... 49% 60.4M 0s
Step #6 - "build-e2e":   7050K .�[0m�[91m.�[0m�[91m.�[0m�[91m....... .....�[0m�[91m.�[0m�[91m.... .....�[0m�[91m..... .......... .........�[0m�[91m. 50%�[0m�[91m 70.0M 0s�[0m�[91m
Step #6 - "build-e2e":   7100K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.....�[0m�[91m.�[0m�[91m.. .....�[0m�[91m.�[0m�[91m...�[0m�[91m. .�[0m�[91m.�[0m�[91m........ .....�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.......... 50% 45.2M 0s
Step #6 - "build-e2e":   7150K .....�[0m�[91m...�[0m�[91m.. ...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.......�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m........ .....�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 50% 52.2M 0s
Step #6 - "build-e2e":   7200K .......... ...�[0m�[91m...�[0m�[91m...�[0m�[91m. .......�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.. �[0m�[91m...�[0m�[91m...�[0m�[91m..�[0m�[91m..�[0m�[91m 51% 37.6M 0s�[0m�[91m
Step #6 - "build-e2e":   7250K �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m �[0m�[91m.....�[0m�[91m....�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m 51%�[0m�[91m 27.2M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   7300K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m..�[0m�[91m.......�[0m�[91m.�[0m�[91m �[0m�[91m...�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m....�[0m�[91m. ..�[0m�[91m....�[0m�[91m...�[0m�[91m.�[0m�[91m 51%�[0m�[91m 42.4M 0s
Step #6 - "build-e2e":   7350K ...�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.. .�[0m�[91m....�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 52%�[0m�[91m 21.7M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   7400K .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m...�[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m. ..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m. �[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m 52%�[0m�[91m 40.0M�[0m�[91m 0s
Step #6 - "build-e2e":   7450K�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m ..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. 52% 24.5M 0s�[0m�[91m
Step #6 - "build-e2e":   7500K�[0m�[91m �[0m�[91m....�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m. ...�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m....�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m..�[0m�[91m 53% 29.2M 0s
Step #6 - "build-e2e":   7550K�[0m�[91m �[0m�[91m.....�[0m�[91m..�[0m�[91m... �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m. .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. 53% 31.3M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   7600K�[0m�[91m �[0m�[91m..�[0m�[91m...�[0m�[91m....�[0m�[91m.�[0m�[91m .......... .......... .......... .......... 53% 69.3M 0s
Step #6 - "build-e2e":   7650K .......... .......... .......... .......... .......... 54%  204M 0s
Step #6 - "build-e2e":   7700K .......... .......... .......... .......... .......... 54%  242M 0s
Step #6 - "build-e2e":   7750K .......... .......... .......... .......... .......... 54%  276M 0s
Step #6 - "build-e2e":   7800K .......... .........�[0m�[91m.�[0m�[91m ...�[0m�[91m..�[0m�[91m..�[0m�[91m...�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.... �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m. 55%�[0m�[91m 17.3M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   7850K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.. .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m... �[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.....�[0m�[91m .�[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m. 55% 32.5M 0s�[0m�[91m
Step #6 - "build-e2e":   7900K .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m......... .......... .......... .......... 56% 45.2M 0s
Step #6 - "build-e2e":   7950K .......... .......... .......... .......... .......... 56% 57.9M 0s
Step #6 - "build-e2e":   8000K .......... .......... �[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m... ...�[0m�[91m....�[0m�[91m... ...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m 56%�[0m�[91m 50.8M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   8050K �[0m�[91m..�[0m�[91m.....�[0m�[91m... �[0m�[91m...�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m...�[0m�[91m.�[0m�[91m. �[0m�[91m...�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m. .�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.. 57% 41.3M 0s
Step #6 - "build-e2e":   8100K .......... .......... .......... .......... .......... 57%  276M 0s
Step #6 - "build-e2e":   8150K .......... .......... .......... .......... .......... 57%  288M 0s
Step #6 - "build-e2e":   8200K ...�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.. ...�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.. �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m 58%�[0m�[91m 25.3M 0s
Step #6 - "build-e2e":   8250K .�[0m�[91m.�[0m�[91m...�[0m�[91m..... .......�[0m�[91m... .......... .......... .......... 58% 64.0M 0s
Step #6 - "build-e2e":   8300K .......... .....�[0m�[91m..�[0m�[91m... .......... .�[0m�[91m......... .......�[0m�[91m... 58% 34.1M 0s
Step #6 - "build-e2e":   8350K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 59% 28.1M 0s
Step #6 - "build-e2e":   8400K .......... .......... .......... .......... .......... 59% 67.0M 0s
Step #6 - "build-e2e":   8450K .......... .......... .......... .......... .......... 59% 33.7M 0s
Step #6 - "build-e2e":   8500K .......... .......... .......... .......... .......... 60% 49.5M 0s
Step #6 - "build-e2e":   8550K .......... .......... .......... .......... ..�[0m�[91m.�[0m�[91m....... 60% 48.6M 0s
Step #6 - "build-e2e":   8600K ...�[0m�[91m....... ......�[0m�[91m...�[0m�[91m. .......... .�[0m�[91m....�[0m�[91m..... ...�[0m�[91m....... 60%  210M 0s
Step #6 - "build-e2e":   8650K .�[0m�[91m......... .......... .......... ...�[0m�[91m....... .........�[0m�[91m. 61% 53.6M 0s
Step #6 - "build-e2e":   8700K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 61%  124M 0s
Step #6 - "build-e2e":   8750K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......... .....�[0m�[91m..... 62% 38.6M 0s
Step #6 - "build-e2e":   8800K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 62% 24.8M 0s
Step #6 - "build-e2e":   8850K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m..�[0m�[91m..�[0m�[91m....�[0m�[91m.�[0m�[91m 62%�[0m�[91m  103M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   8900K �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.. �[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m.. .�[0m�[91m....�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m �[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m 63%�[0m�[91m 26.6M�[0m�[91m 0s
Step #6 - "build-e2e":   8950K�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m ...�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m... �[0m�[91m..�[0m�[91m...�[0m�[91m...�[0m�[91m.. 63% 41.3M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   9000K�[0m�[91m �[0m�[91m...�[0m�[91m....�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m....�[0m�[91m. .�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m. 63%�[0m�[91m 39.1M 0s�[0m�[91m
Step #6 - "build-e2e":   9050K�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 64% 31.9M�[0m�[91m 0s
Step #6 - "build-e2e":   9100K .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......... 64%  170M 0s
Step #6 - "build-e2e":   9150K .......... .......... .......... .......... .....�[0m�[91m..... 64%  301M 0s
Step #6 - "build-e2e":   9200K .......... .�[0m�[91m......... .......�[0m�[91m... .......... .......... 65%  196M 0s
Step #6 - "build-e2e":   9250K .�[0m�[91m......... .......... .....�[0m�[91m..... ...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m... �[0m�[91m.�[0m�[91m......... 65% 29.6M�[0m�[91m 0s
Step #6 - "build-e2e":   9300K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 65% 93.7M 0s
Step #6 - "build-e2e":   9350K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m ..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m 66% 13.7M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":   9400K .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.......�[0m�[91m. ......�[0m�[91m.�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 66% 38.7M 0s
Step #6 - "build-e2e":   9450K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m.........�[0m�[91m 66%�[0m�[91m  195M 0s
Step #6 - "build-e2e":   9500K ...�[0m�[91m....... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......... 67%  140M 0s
Step #6 - "build-e2e":   9550K .....�[0m�[91m..... .......... .........�[0m�[91m.�[0m�[91m .......�[0m�[91m... .....�[0m�[91m..... 67%  222M 0s
Step #6 - "build-e2e":   9600K ...�[0m�[91m....... ...�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m. .......�[0m�[91m... .......�[0m�[91m... ...�[0m�[91m....... 68% 35.3M 0s
Step #6 - "build-e2e":   9650K .�[0m�[91m.........�[0m�[91m �[0m�[91m..�[0m�[91m..�[0m�[91m...�[0m�[91m... .........�[0m�[91m.�[0m�[91m �[0m�[91m...�[0m�[91m....... .�[0m�[91m.�[0m�[91m.......�[0m�[91m. 68%�[0m�[91m 65.5M 0s
Step #6 - "build-e2e":   9700K .......�[0m�[91m.�[0m�[91m.. .....�[0m�[91m..... .......... .......... .........�[0m�[91m.�[0m�[91m 68%�[0m�[91m  161M�[0m�[91m 0s
Step #6 - "build-e2e":   9750K .....�[0m�[91m..... .......... .�[0m�[91m..�[0m�[91m....... .......�[0m�[91m... .....�[0m�[91m..... 69% 18.9M 0s
Step #6 - "build-e2e":   9800K .......... .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... 69%  233M 0s
Step #6 - "build-e2e":   9850K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 69% 49.0M 0s
Step #6 - "build-e2e":   9900K ......�[0m�[91m.�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 70% 35.2M 0s
Step #6 - "build-e2e":   9950K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... 70% 44.0M 0s
Step #6 - "build-e2e":  10000K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... 70%  150M 0s
Step #6 - "build-e2e":  10050K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .........�[0m�[91m. 71%  205M 0s
Step #6 - "build-e2e":  10100K .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m......... .......... 71% 47.8M 0s
Step #6 - "build-e2e":  10150K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... 71% 46.0M 0s
Step #6 - "build-e2e":  10200K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... .......... 72% 55.4M�[0m�[91m 0s
Step #6 - "build-e2e":  10250K .�[0m�[91m......... .......�[0m�[91m... .....�[0m�[91m..... .......... .........�[0m�[91m. 72% 17.9M 0s
Step #6 - "build-e2e":  10300K .......... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 72%  180M 0s
Step #6 - "build-e2e":  10350K .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 73%  103M 0s
Step #6 - "build-e2e":  10400K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... ....�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 73% 50.6M 0s
Step #6 - "build-e2e":  10450K .........�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m......�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 74%�[0m�[91m 26.4M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":  10500K�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..... .......�[0m�[91m..�[0m�[91m.�[0m�[91m 74%�[0m�[91m 35.3M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":  10550K�[0m�[91m �[0m�[91m.......... .......... .�[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.......... 74% 43.8M 0s
Step #6 - "build-e2e":  10600K ...�[0m�[91m.�[0m�[91m..�[0m�[91m.... �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m......�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m....�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m .......... 75% 51.3M 0s
Step #6 - "build-e2e":  10650K .�[0m�[91m.�[0m�[91m..�[0m�[91m.....�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..... .......... ...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.......�[0m�[91m.�[0m�[91m. 75% 49.5M 0s�[0m�[91m
Step #6 - "build-e2e":  10700K�[0m�[91m .......... .......... ..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m. .......�[0m�[91m..�[0m�[91m.�[0m�[91m 75%�[0m�[91m 60.0M 0s�[0m�[91m
Step #6 - "build-e2e":  10750K�[0m�[91m �[0m�[91m.....�[0m�[91m..�[0m�[91m.�[0m�[91m.. ...�[0m�[91m..�[0m�[91m...�[0m�[91m.�[0m�[91m. .......... .......... .......... 76% 46.2M 0s
Step #6 - "build-e2e":  10800K .......�[0m�[91m.�[0m�[91m.. .......... .......... .......... .......... 76%  115M 0s
Step #6 - "build-e2e":  10850K .......... .......... ...�[0m�[91m..�[0m�[91m.....�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.. 76% 36.0M 0s
Step #6 - "build-e2e":  10900K .......... .......... .......... .......... .......... 77% 77.7M 0s
Step #6 - "build-e2e":  10950K .......... .......... .......... .......... .......... 77%  290M 0s
Step #6 - "build-e2e":  11000K .......... .......... .......... .......... .......... 77%  280M 0s
Step #6 - "build-e2e":  11050K .......... .......... .......... ...�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 78% 40.4M�[0m�[91m 0s
Step #6 - "build-e2e":  11100K�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m 78%�[0m�[91m 25.4M 0s
Step #6 - "build-e2e":  11150K�[0m�[91m .�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m...�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.. �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m. 78%�[0m�[91m 25.5M 0s
Step #6 - "build-e2e":  11200K�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. ..�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.. ..�[0m�[91m...�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m 79% 37.9M 0s�[0m�[91m
Step #6 - "build-e2e":  11250K�[0m�[91m �[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m......�[0m�[91m.�[0m�[91m...�[0m�[91m ...�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m ...�[0m�[91m.�[0m�[91m..�[0m�[91m.... .......... 79% 37.2M 0s
Step #6 - "build-e2e":  11300K .......... .......... .......... .......... .......... 79%  288M 0s
Step #6 - "build-e2e":  11350K .......... .......... .......... .......... .......... 80%  300M 0s
Step #6 - "build-e2e":  11400K .......... .......... .......... .......... .......... 80%  298M 0s
Step #6 - "build-e2e":  11450K .......... .......... .......... .......... .......... 81%  191M 0s
Step #6 - "build-e2e":  11500K .......... .......... .......... .......... .......... 81%  246M 0s
Step #6 - "build-e2e":  11550K .......... ...�[0m�[91m.....�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m......�[0m�[91m. .......... .....�[0m�[91m..... 81%  105M 0s
Step #6 - "build-e2e":  11600K .......... .�[0m�[91m......... .......�[0m�[91m... .......... .......... 82% 71.1M 0s
Step #6 - "build-e2e":  11650K .......... .......... .......... .......... .......... 82% 61.5M 0s
Step #6 - "build-e2e":  11700K .......... .......... .......... .......... .......... 82% 94.1M 0s
Step #6 - "build-e2e":  11750K .......... .......... .......... .......... .......... 83% 35.5M 0s
Step #6 - "build-e2e":  11800K .......... .........�[0m�[91m. .......... ..�[0m�[91m...�[0m�[91m..... .......... 83% 47.1M 0s
Step #6 - "build-e2e":  11850K .�[0m�[91m......... .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 83% 70.6M 0s
Step #6 - "build-e2e":  11900K ....�[0m�[91m...�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... .......�[0m�[91m... 84% 44.9M 0s
Step #6 - "build-e2e":  11950K�[0m�[91m .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... 84%  212M 0s
Step #6 - "build-e2e":  12000K .......... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 84%  136M 0s
Step #6 - "build-e2e":  12050K .........�[0m�[91m. .......... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. 85% 46.3M 0s
Step #6 - "build-e2e":  12100K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... 85% 27.3M 0s
Step #6 - "build-e2e":  12150K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 85%  209M 0s
Step #6 - "build-e2e":  12200K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 86%  203M 0s
Step #6 - "build-e2e":  12250K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m......... 86% 51.4M 0s
Step #6 - "build-e2e":  12300K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 87% 73.8M 0s
Step #6 - "build-e2e":  12350K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... 87% 28.4M 0s
Step #6 - "build-e2e":  12400K .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... 87%  194M 0s
Step #6 - "build-e2e":  12450K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 88% 42.9M 0s
Step #6 - "build-e2e":  12500K .......... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... 88% 86.4M 0s
Step #6 - "build-e2e":  12550K .......... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... 88% 41.3M 0s
Step #6 - "build-e2e":  12600K ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... .......... .......... 89%  254M 0s
Step #6 - "build-e2e":  12650K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .........�[0m�[91m. 89%  152M 0s
Step #6 - "build-e2e":  12700K .......... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 89% 65.8M 0s
Step #6 - "build-e2e":  12750K .......... .......... .........�[0m�[91m. .......�[0m�[91m... .......... 90% 59.5M 0s
Step #6 - "build-e2e":  12800K ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... 90% 41.1M 0s
Step #6 - "build-e2e":  12850K .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... .......... 90%  209M 0s
Step #6 - "build-e2e":  12900K .......�[0m�[91m... .....�[0m�[91m..... .......... .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... 91%  175M 0s
Step #6 - "build-e2e":  12950K .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... 91% 54.5M 0s
Step #6 - "build-e2e":  13000K .......... .........�[0m�[91m. .......... .....�[0m�[91m..... ..........�[0m�[91m 91% 75.6M 0s
Step #6 - "build-e2e":  13050K .�[0m�[91m........�[0m�[91m. .......�[0m�[91m... .......... ...�[0m�[91m....... .�[0m�[91m........�[0m�[91m. 92% 28.7M 0s
Step #6 - "build-e2e":  13100K .......�[0m�[91m... .....�[0m�[91m..... ...�[0m�[91m....... .�[0m�[91m......... .......�[0m�[91m... 92%  205M 0s
Step #6 - "build-e2e":  13150K .....�[0m�[91m..... ...�[0m�[91m....... .......�[0m�[91m..�[0m�[91m. .......... .....�[0m�[91m..... 93% 40.3M 0s
Step #6 - "build-e2e":  13200K .......... .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... .......... 93%  124M 0s
Step #6 - "build-e2e":  13250K .�[0m�[91m........�[0m�[91m. .......... .....�[0m�[91m..... ...�[0m�[91m....... .......... 93%�[0m�[91m 35.6M 0s
Step #6 - "build-e2e":  13300K .......�[0m�[91m... .....�[0m�[91m..... .......... .........�[0m�[91m. .......�[0m�[91m... 94%  176M 0s
Step #6 - "build-e2e":  13350K .......... ..�[0m�[91m........ .........�[0m�[91m. .......�[0m�[91m... .....�[0m�[91m..... 94%  233M 0s
Step #6 - "build-e2e":  13400K ...�[0m�[91m....... .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m 94%�[0m�[91m 18.1M�[0m�[91m 0s
Step #6 - "build-e2e":  13450K �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m...�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 95%�[0m�[91m 13.1M�[0m�[91m 0s
Step #6 - "build-e2e":  13500K�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m 95%�[0m�[91m 13.5M 0s�[0m�[91m
Step #6 - "build-e2e":  13550K�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m .�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m. �[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m 95%�[0m�[91m 25.4M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":  13600K ..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m. .�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m...�[0m�[91m.�[0m�[91m...�[0m�[91m... �[0m�[91m..�[0m�[91m.�[0m�[91m....�[0m�[91m.�[0m�[91m.�[0m�[91m. .�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m 96% 33.3M 0s�[0m�[91m
Step #6 - "build-e2e":  13650K�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m .�[0m�[91m...�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m. .......... 96% 30.4M 0s
Step #6 - "build-e2e":  13700K .......... .......... .......... .......... .......... 96%  226M 0s
Step #6 - "build-e2e":  13750K .......... .......... .......... .......... .......... 97%  267M 0s
Step #6 - "build-e2e":  13800K .......... .......... .......... .......... .......... 97%  281M 0s
Step #6 - "build-e2e":  13850K .......... .......... .......... .......... .......... 97%  234M 0s
Step #6 - "build-e2e":  13900K .......... .....�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m. �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m...�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m. �[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m 98%�[0m�[91m 34.4M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":  13950K�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m...�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m. �[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m. �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m 98%�[0m�[91m 29.5M�[0m�[91m 0s�[0m�[91m
Step #6 - "build-e2e":  14000K �[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m...�[0m�[91m..�[0m�[91m .�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m 99%�[0m�[91m 25.2M�[0m�[91m 0s
Step #6 - "build-e2e":  14050K�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m. .�[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m..�[0m�[91m.�[0m�[91m..�[0m�[91m �[0m�[91m.�[0m�[91m.�[0m�[91m..�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m.�[0m�[91m �[0m�[91m...�[0m�[91m...�[0m�[91m.... .......... 99% 33.5M 0s
Step #6 - "build-e2e":  14100K .......... .......... .......... .......... .......... 99%  278M 0s
Step #6 - "build-e2e":  14150K .......... .......... .......... ........             100%  242M=0.5s
Step #6 - "build-e2e": 
Step #6 - "build-e2e": 2018-08-15 05:41:18 (26.3 MB/s) - '/tmp/build/consul_1.2.1_linux_amd64.zip' saved [14529496/14529496]
Step #6 - "build-e2e": 
Step #6 - "build-e2e": �[0mArchive:  /tmp/build/consul_1.2.1_linux_amd64.zip
Step #6 - "build-e2e":   inflating: /usr/local/bin/consul   
Step #6 - "build-e2e": Consul v1.2.1
Step #6 - "build-e2e": Protocol 2 spoken by default, understands 2 to 3 (agent will automatically use protocol >2 when speaking to compatible agents)
Step #4 - "tests": make[1]: Leaving directory '/workspace/build'
Step #4 - "tests": sort /workspace/install/yaml/install.yaml > /tmp/agones-install/install.current.yaml.sorted
Step #4 - "tests": diff /tmp/agones-install/install.yaml.sorted /tmp/agones-install/install.current.yaml.sorted
Step #6 - "build-e2e": Removing intermediate container 9138a3b39127
Step #6 - "build-e2e":  ---> 33dafdeefecb
Step #6 - "build-e2e": Step 16/20 : RUN echo "export PATH=/usr/local/go/bin:/go/bin/:\$PATH" >> /root/.bashrc
Step #6 - "build-e2e":  ---> Running in 198644796b80
Finished Step #4 - "tests"
Step #6 - "build-e2e": Removing intermediate container 198644796b80
Step #6 - "build-e2e":  ---> 81034efeefb8
Step #6 - "build-e2e": Step 17/20 : COPY *.sh /root/
Step #6 - "build-e2e":  ---> d1eb426ff879
Step #6 - "build-e2e": Step 18/20 : RUN chmod +x /root/*.sh
Step #6 - "build-e2e":  ---> Running in b15900db64e5
Step #6 - "build-e2e": Removing intermediate container b15900db64e5
Step #6 - "build-e2e":  ---> d9acadaad35d
Step #6 - "build-e2e": Step 19/20 : WORKDIR /go
Step #6 - "build-e2e": Removing intermediate container 6fc7e0ee05a4
Step #6 - "build-e2e":  ---> 0f917bf9ec48
Step #6 - "build-e2e": Step 20/20 : ENTRYPOINT [ "/root/entrypoint.sh" ]
Step #6 - "build-e2e":  ---> Running in 4c4b4ded9c53
Step #6 - "build-e2e": Removing intermediate container 4c4b4ded9c53
Step #6 - "build-e2e":  ---> ad72671f007b
Step #6 - "build-e2e": Successfully built ad72671f007b
Step #6 - "build-e2e": Successfully tagged e2e-runner:latest
Finished Step #6 - "build-e2e"
Step #5 - "build": docker run --rm -e "GOOS=darwin" -e "GOARCH=amd64" -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones agones-build:6a4e0e6230 go build \
Step #5 - "build": 	-o /go/src/agones.dev/agones/cmd/sdk-server/bin/sdk-server.darwin.amd64 -ldflags "-X agones.dev/agones/pkg.Version=0.4.0-d753d3d" agones.dev/agones/cmd/sdk-server
Step #5 - "build": docker run --rm -e "GOOS=windows" -e "GOARCH=amd64" -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones agones-build:6a4e0e6230 go build \
Step #5 - "build": 	-o /go/src/agones.dev/agones/cmd/sdk-server/bin/sdk-server.windows.amd64.exe -ldflags "-X agones.dev/agones/pkg.Version=0.4.0-d753d3d" agones.dev/agones/cmd/sdk-server
Step #5 - "build": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones -w /go/src/agones.dev/agones/cmd/sdk-server/bin/ agones-build:6a4e0e6230 zip \
Step #5 - "build": 	agonessdk-server-0.4.0-d753d3d.zip sdk-server.darwin.amd64 sdk-server.linux.amd64 sdk-server.windows.amd64.exe
Step #5 - "build":   adding: sdk-server.darwin.amd64 (deflated 74%)
Step #5 - "build":   adding: sdk-server.linux.amd64 (deflated 74%)
Step #5 - "build":   adding: sdk-server.windows.amd64.exe (deflated 74%)
Step #5 - "build": docker build /workspace/cmd/sdk-server/ --tag=gcr.io/agones-images/agones-sdk:0.4.0-d753d3d 
Step #5 - "build": Sending build context to Docker daemon  149.8MB

Step #5 - "build": Step 1/6 : FROM alpine:3.7
Step #5 - "build":  ---> 791c3e2ebfcb
Step #5 - "build": Step 2/6 : RUN apk --update add ca-certificates &&     adduser -D agones
Step #5 - "build":  ---> Using cache
Step #5 - "build":  ---> 0e8bede7504c
Step #5 - "build": Step 3/6 : COPY ./bin/sdk-server.linux.amd64 /home/agones/sdk-server
Step #5 - "build":  ---> 87117db9ed4c
Step #5 - "build": Step 4/6 : RUN chown -R agones /home/agones &&     chmod o+x /home/agones/sdk-server
Step #5 - "build":  ---> Running in 773b436faf56
Step #5 - "build": Removing intermediate container 773b436faf56
Step #5 - "build":  ---> d59a1ee477ff
Step #5 - "build": Step 5/6 : USER agones
Step #5 - "build":  ---> Running in 9fa313e5d5fa
Step #5 - "build": Removing intermediate container 9fa313e5d5fa
Step #5 - "build":  ---> ea556ec03a8e
Step #5 - "build": Step 6/6 : ENTRYPOINT ["/home/agones/sdk-server"]
Step #5 - "build":  ---> Running in afc731c4e63f
Step #5 - "build": Removing intermediate container afc731c4e63f
Step #5 - "build":  ---> 7c29f7f7c962
Step #5 - "build": Successfully built 7c29f7f7c962
Step #5 - "build": Successfully tagged gcr.io/agones-images/agones-sdk:0.4.0-d753d3d
Step #5 - "build": docker run --rm -v /workspace/build//.config/gcloud:/root/.config/gcloud -v ~/.kube:/root/.kube -v /workspace:/go/src/agones.dev/agones -w /go/src/agones.dev/agones/sdks/cpp agones-build:6a4e0e6230 make build install archive VERSION=0.4.0-d753d3d
Step #5 - "build": mkdir /go/src/agones.dev/agones/sdks/cpp//bin
Step #5 - "build": g++ -std=c++11 -I/usr/local/include -I/go/src/agones.dev/agones/sdks/cpp/ -pthread -fPIC  -c -o google/api/annotations.pb.o google/api/annotations.pb.cc
Step #5 - "build": g++ -std=c++11 -I/usr/local/include -I/go/src/agones.dev/agones/sdks/cpp/ -pthread -fPIC  -c -o google/api/http.pb.o google/api/http.pb.cc
Step #5 - "build": g++ -std=c++11 -I/usr/local/include -I/go/src/agones.dev/agones/sdks/cpp/ -pthread -fPIC  -c -o sdk.grpc.pb.o sdk.grpc.pb.cc
Step #5 - "build": g++ -std=c++11 -I/usr/local/include -I/go/src/agones.dev/agones/sdks/cpp/ -pthread -fPIC  -c -o sdk.pb.o sdk.pb.cc
Step #5 - "build": g++ -std=c++11 -I/usr/local/include -I/go/src/agones.dev/agones/sdks/cpp/ -pthread -fPIC  -c -o sdk.o sdk.cc
Step #5 - "build": g++ google/api/annotations.pb.o google/api/http.pb.o sdk.grpc.pb.o sdk.pb.o sdk.o -L/usr/local/lib -lgrpc++_unsecure -lgrpc -lprotobuf -lpthread -ldl -shared -o /go/src/agones.dev/agones/sdks/cpp//bin/libagonessdk.so
Step #5 - "build": ar rcs /go/src/agones.dev/agones/sdks/cpp//bin/libagonessdk.a google/api/annotations.pb.o google/api/http.pb.o sdk.grpc.pb.o sdk.pb.o sdk.o
Step #5 - "build": cp /go/src/agones.dev/agones/sdks/cpp//bin/libagonessdk.* /usr/local/lib
Step #5 - "build": mkdir -p /usr/local/include/agones
Step #5 - "build": cp /go/src/agones.dev/agones/sdks/cpp//*.h /usr/local/include/agones/
Step #5 - "build": mkdir -p /usr/local/include/google/api
Step #5 - "build": cp -r /go/src/agones.dev/agones/sdks/cpp//google/api/*.h /usr/local/include/google/api/
Step #5 - "build": ldconfig
Step #5 - "build": rm /go/src/agones.dev/agones/sdks/cpp//bin/agonessdk-0.4.0-d753d3d-src.zip
Step #5 - "build": Makefile:67: recipe for target 'archive' failed
Step #5 - "build": rm /go/src/agones.dev/agones/sdks/cpp//bin/agonessdk-0.4.0-d753d3d-dev-linux-arch_64.tar.gz
Step #5 - "build": rm: cannot remove '/go/src/agones.dev/agones/sdks/cpp//bin/agonessdk-0.4.0-d753d3d-src.zip': No such file or directory
Step #5 - "build": make: [archive] Error 1 (ignored)
Step #5 - "build": rm: cannot remove '/go/src/agones.dev/agones/sdks/cpp//bin/agonessdk-0.4.0-d753d3d-dev-linux-arch_64.tar.gz': No such file or directory
Step #5 - "build": Makefile:67: recipe for target 'archive' failed
Step #5 - "build": make: [archive] Error 1 (ignored)
Step #5 - "build": rm /go/src/agones.dev/agones/sdks/cpp//bin/agonessdk-0.4.0-d753d3d-runtime-linux-arch_64.tar.gz
Step #5 - "build": rm: cannot remove '/go/src/agones.dev/agones/sdks/cpp//bin/agonessdk-0.4.0-d753d3d-runtime-linux-arch_64.tar.gz': No such file or directory
Step #5 - "build": make: [archive] Error 1 (ignored)
Step #5 - "build": Makefile:67: recipe for target 'archive' failed
Step #5 - "build": cp /usr/local/lib/libgrpc.so.6 /go/src/agones.dev/agones/sdks/cpp//bin/
Step #5 - "build": cp /usr/local/lib/libprotobuf.so.15 /go/src/agones.dev/agones/sdks/cpp//bin/
Step #5 - "build": cp /usr/local/lib/libagonessdk.so /go/src/agones.dev/agones/sdks/cpp//bin/
Step #5 - "build": cp /usr/local/lib/libgpr.so.6 /go/src/agones.dev/agones/sdks/cpp//bin/
Step #5 - "build": cp /usr/local/lib/libgrpc_unsecure.so.6 /go/src/agones.dev/agones/sdks/cpp//bin/
Step #5 - "build": cd /go/src/agones.dev/agones/sdks/cpp//bin && tar cvf agonessdk-0.4.0-d753d3d-runtime-linux-arch_64.tar.gz *
Step #5 - "build": libagonessdk.a
Step #5 - "build": libagonessdk.so
Step #5 - "build": libgpr.so.6
Step #5 - "build": libgrpc.so.6
Step #5 - "build": libgrpc_unsecure.so.6
Step #5 - "build": libprotobuf.so.15
Step #5 - "build": cd /usr/local && tar cvf /go/src/agones.dev/agones/sdks/cpp//bin/agonessdk-0.4.0-d753d3d-dev-linux-arch_64.tar.gz lib include
Step #5 - "build": lib/
Step #5 - "build": lib/libagonessdk.so
Step #5 - "build": lib/libagonessdk.a
Step #5 - "build": lib/python2.7/
Step #5 - "build": lib/python2.7/dist-packages/
Step #5 - "build": lib/python2.7/site-packages/
Step #5 - "build": lib/libprotobuf-lite.so.15.0.1
Step #5 - "build": lib/libgrpc++.so.6
Step #5 - "build": lib/libgrpc++_error_details.so.1.12.1
Step #5 - "build": lib/libgrpc++_unsecure.so.1.12.1
Step #5 - "build": lib/libgrpc++_reflection.so
Step #5 - "build": lib/libgrpc_cronet.so
Step #5 - "build": lib/libgrpc_unsecure.a
Step #5 - "build": lib/libgrpc.so.6
Step #5 - "build": lib/libprotoc.so.15.0.1
Step #5 - "build": lib/libprotobuf-lite.so.15
Step #5 - "build": lib/libgrpc++_cronet.so
Step #5 - "build": lib/libgrpc.a
Step #5 - "build": lib/libprotobuf.so
Step #5 - "build": lib/libgrpc_unsecure.so
Step #5 - "build": lib/libgrpc++.so.1
Step #5 - "build": lib/libprotoc.la
Step #5 - "build": lib/libgrpc++_unsecure.a
Step #5 - "build": lib/libprotobuf.so.15.0.1
Step #5 - "build": lib/libgrpc++_error_details.so
Step #5 - "build": lib/libgpr.so.6
Step #5 - "build": lib/libgrpc++_reflection.a
Step #5 - "build": lib/libgrpc++_reflection.so.1
Step #5 - "build": lib/libgrpc++_unsecure.so.6
Step #5 - "build": lib/libgrpc++_cronet.so.1.12.1
Step #5 - "build": lib/libgrpc.so
Step #5 - "build": lib/libgrpc_unsecure.so.6.0.0
Step #5 - "build": lib/libgrpc++_unsecure.so
Step #5 - "build": lib/libgrpc_unsecure.so.6
Step #5 - "build": lib/libprotoc.so
Step #5 - "build": lib/pkgconfig/
Step #5 - "build": lib/pkgconfig/protobuf.pc
Step #5 - "build": lib/pkgconfig/grpc.pc
Step #5 - "build": lib/pkgconfig/grpc++.pc
Step #5 - "build": lib/pkgconfig/protobuf-lite.pc
Step #5 - "build": lib/pkgconfig/grpc++_unsecure.pc
Step #5 - "build": lib/pkgconfig/grpc_unsecure.pc
Step #5 - "build": lib/libgrpc++_reflection.so.6
Step #5 - "build": lib/libprotobuf.so.15
Step #5 - "build": lib/libgrpc++_error_details.a
Step #5 - "build": lib/libgrpc.so.6.0.0
Step #5 - "build": lib/libgrpc++_cronet.so.1
Step #5 - "build": lib/libgpr.a
Step #5 - "build": lib/libgpr.so.6.0.0
Step #5 - "build": lib/libgrpc_cronet.a
Step #5 - "build": lib/libgrpc++.so.1.12.1
Step #5 - "build": lib/libprotoc.so.15
Step #5 - "build": lib/libaddress_sorting.so.6
Step #5 - "build": lib/libaddress_sorting.so.6.0.0
Step #5 - "build": lib/libgrpc_cronet.so.6.0.0
Step #5 - "build": lib/libgrpc_cronet.so.6
Step #5 - "build": lib/libprotobuf-lite.la
Step #5 - "build": lib/libgrpc++_error_details.so.1
Step #5 - "build": lib/libgrpc++.a
Step #5 - "build": lib/libgrpc++_cronet.so.6
Step #5 - "build": lib/libgpr.so
Step #5 - "build": lib/libprotobuf-lite.a
Step #5 - "build": lib/libprotobuf-lite.so
Step #5 - "build": lib/libaddress_sorting.so
Step #5 - "build": lib/libgrpc++_unsecure.so.1
Step #5 - "build": lib/libgrpc++_reflection.so.1.12.1
Step #5 - "build": lib/libprotoc.a
Step #5 - "build": lib/libaddress_sorting.a
Step #5 - "build": lib/libprotobuf.a
Step #5 - "build": lib/libgrpc++.so
Step #5 - "build": lib/libprotobuf.la
Step #5 - "build": lib/libgrpc++_error_details.so.6
Step #5 - "build": lib/libgrpc++_cronet.a
Step #5 - "build": include/
Step #5 - "build": include/agones/
Step #5 - "build": include/agones/sdk.grpc.pb.h
Step #5 - "build": include/agones/sdk.h
Step #5 - "build": include/agones/sdk.pb.h
Step #5 - "build": include/google/
Step #5 - "build": include/google/protobuf/
Step #5 - "build": include/google/protobuf/map_field_lite.h
Step #5 - "build": include/google/protobuf/api.proto
Step #5 - "build": include/google/protobuf/arena_impl.h
Step #5 - "build": include/google/protobuf/has_bits.h
Step #5 - "build": include/google/protobuf/descriptor.pb.h
Step #5 - "build": include/google/protobuf/descriptor.proto
Step #5 - "build": include/google/protobuf/field_mask.proto
Step #5 - "build": include/google/protobuf/reflection.h
Step #5 - "build": include/google/protobuf/timestamp.pb.h
Step #5 - "build": include/google/protobuf/any.h
Step #5 - "build": include/google/protobuf/generated_enum_util.h
Step #5 - "build": include/google/protobuf/message_lite.h
Step #5 - "build": include/google/protobuf/stubs/
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h
Step #5 - "build": include/google/protobuf/stubs/hash.h
Step #5 - "build": include/google/protobuf/stubs/once.h
Step #5 - "build": include/google/protobuf/stubs/scoped_ptr.h
Step #5 - "build": include/google/protobuf/stubs/shared_ptr.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_x86_gcc.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h
Step #5 - "build": include/google/protobuf/stubs/fastmem.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_power.h
Step #5 - "build": include/google/protobuf/stubs/macros.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
Step #5 - "build": include/google/protobuf/stubs/atomicops.h
Step #5 - "build": include/google/protobuf/stubs/bytestream.h
Step #5 - "build": include/google/protobuf/stubs/common.h
Step #5 - "build": include/google/protobuf/stubs/platform_macros.h
Step #5 - "build": include/google/protobuf/stubs/stringpiece.h
Step #5 - "build": include/google/protobuf/stubs/port.h
Step #5 - "build": include/google/protobuf/stubs/mutex.h
Step #5 - "build": include/google/protobuf/stubs/casts.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_arm_gcc.h
Step #5 - "build": include/google/protobuf/stubs/type_traits.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_mips_gcc.h
Step #5 - "build": include/google/protobuf/stubs/template_util.h
Step #5 - "build": include/google/protobuf/stubs/stl_util.h
Step #5 - "build": include/google/protobuf/stubs/callback.h
Step #5 - "build": include/google/protobuf/stubs/status.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_arm_qnx.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_tsan.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_solaris.h
Step #5 - "build": include/google/protobuf/stubs/logging.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_generic_gcc.h
Step #5 - "build": include/google/protobuf/stubs/atomicops_internals_x86_msvc.h
Step #5 - "build": include/google/protobuf/stubs/singleton.h
Step #5 - "build": include/google/protobuf/stubs/atomic_sequence_num.h
Step #5 - "build": include/google/protobuf/metadata_lite.h
Step #5 - "build": include/google/protobuf/any.proto
Step #5 - "build": include/google/protobuf/map_field.h
Step #5 - "build": include/google/protobuf/dynamic_message.h
Step #5 - "build": include/google/protobuf/wrappers.proto
Step #5 - "build": include/google/protobuf/source_context.pb.h
Step #5 - "build": include/google/protobuf/empty.proto
Step #5 - "build": include/google/protobuf/field_mask.pb.h
Step #5 - "build": include/google/protobuf/map.h
Step #5 - "build": include/google/protobuf/service.h
Step #5 - "build": include/google/protobuf/wire_format.h
Step #5 - "build": include/google/protobuf/duration.proto
Step #5 - "build": include/google/protobuf/reflection_ops.h
Step #5 - "build": include/google/protobuf/struct.proto
Step #5 - "build": include/google/protobuf/text_format.h
Step #5 - "build": include/google/protobuf/type.pb.h
Step #5 - "build": include/google/protobuf/wrappers.pb.h
Step #5 - "build": include/google/protobuf/extension_set.h
Step #5 - "build": include/google/protobuf/wire_format_lite.h
Step #5 - "build": include/google/protobuf/empty.pb.h
Step #5 - "build": include/google/protobuf/generated_message_reflection.h
Step #5 - "build": include/google/protobuf/descriptor_database.h
Step #5 - "build": include/google/protobuf/generated_enum_reflection.h
Step #5 - "build": include/google/protobuf/any.pb.h
Step #5 - "build": include/google/protobuf/duration.pb.h
Step #5 - "build": include/google/protobuf/struct.pb.h
Step #5 - "build": include/google/protobuf/generated_message_util.h
Step #5 - "build": include/google/protobuf/arenastring.h
Step #5 - "build": include/google/protobuf/map_type_handler.h
Step #5 - "build": include/google/protobuf/descriptor.h
Step #5 - "build": include/google/protobuf/metadata.h
Step #5 - "build": include/google/protobuf/generated_message_table_driven.h
Step #5 - "build": include/google/protobuf/map_entry_lite.h
Step #5 - "build": include/google/protobuf/api.pb.h
Step #5 - "build": include/google/protobuf/unknown_field_set.h
Step #5 - "build": include/google/protobuf/map_field_inl.h
Step #5 - "build": include/google/protobuf/io/
Step #5 - "build": include/google/protobuf/io/zero_copy_stream.h
Step #5 - "build": include/google/protobuf/io/zero_copy_stream_impl.h
Step #5 - "build": include/google/protobuf/io/zero_copy_stream_impl_lite.h
Step #5 - "build": include/google/protobuf/io/strtod.h
Step #5 - "build": include/google/protobuf/io/tokenizer.h
Step #5 - "build": include/google/protobuf/io/coded_stream.h
Step #5 - "build": include/google/protobuf/io/printer.h
Step #5 - "build": include/google/protobuf/map_entry.h
Step #5 - "build": include/google/protobuf/source_context.proto
Step #5 - "build": include/google/protobuf/arena.h
Step #5 - "build": include/google/protobuf/timestamp.proto
Step #5 - "build": include/google/protobuf/message.h
Step #5 - "build": include/google/protobuf/repeated_field.h
Step #5 - "build": include/google/protobuf/wire_format_lite_inl.h
Step #5 - "build": include/google/protobuf/type.proto
Step #5 - "build": include/google/protobuf/util/
Step #5 - "build": include/google/protobuf/util/field_mask_util.h
Step #5 - "build": include/google/protobuf/util/type_resolver_util.h
Step #5 - "build": include/google/protobuf/util/type_resolver.h
Step #5 - "build": include/google/protobuf/util/delimited_message_util.h
Step #5 - "build": include/google/protobuf/util/json_util.h
Step #5 - "build": include/google/protobuf/util/field_comparator.h
Step #5 - "build": include/google/protobuf/util/time_util.h
Step #5 - "build": include/google/protobuf/util/message_differencer.h
Step #5 - "build": include/google/protobuf/compiler/
Step #5 - "build": include/google/protobuf/compiler/plugin.h
Step #5 - "build": include/google/protobuf/compiler/javanano/
Step #5 - "build": include/google/protobuf/compiler/javanano/javanano_generator.h
Step #5 - "build": include/google/protobuf/compiler/js/
Step #5 - "build": include/google/protobuf/compiler/js/js_generator.h
Step #5 - "build": include/google/protobuf/compiler/js/well_known_types_embed.h
Step #5 - "build": include/google/protobuf/compiler/java/
Step #5 - "build": include/google/protobuf/compiler/java/java_names.h
Step #5 - "build": include/google/protobuf/compiler/java/java_generator.h
Step #5 - "build": include/google/protobuf/compiler/cpp/
Step #5 - "build": include/google/protobuf/compiler/cpp/cpp_generator.h
Step #5 - "build": include/google/protobuf/compiler/php/
Step #5 - "build": include/google/protobuf/compiler/php/php_generator.h
Step #5 - "build": include/google/protobuf/compiler/plugin.pb.h
Step #5 - "build": include/google/protobuf/compiler/command_line_interface.h
Step #5 - "build": include/google/protobuf/compiler/parser.h
Step #5 - "build": include/google/protobuf/compiler/objectivec/
Step #5 - "build": include/google/protobuf/compiler/objectivec/objectivec_helpers.h
Step #5 - "build": include/google/protobuf/compiler/objectivec/objectivec_generator.h
Step #5 - "build": include/google/protobuf/compiler/plugin.proto
Step #5 - "build": include/google/protobuf/compiler/importer.h
Step #5 - "build": include/google/protobuf/compiler/python/
Step #5 - "build": include/google/protobuf/compiler/python/python_generator.h
Step #5 - "build": include/google/protobuf/compiler/ruby/
Step #5 - "build": include/google/protobuf/compiler/ruby/ruby_generator.h
Step #5 - "build": include/google/protobuf/compiler/code_generator.h
Step #5 - "build": include/google/protobuf/compiler/csharp/
Step #5 - "build": include/google/protobuf/compiler/csharp/csharp_names.h
Step #5 - "build": include/google/protobuf/compiler/csharp/csharp_generator.h
Step #5 - "build": include/google/api/
Step #5 - "build": include/google/api/http.pb.h
Step #5 - "build": include/google/api/annotations.pb.h
Step #5 - "build": include/grpc++/
Step #5 - "build": include/grpc++/resource_quota.h
Step #5 - "build": include/grpc++/channel.h
Step #5 - "build": include/grpc++/server.h
Step #5 - "build": include/grpc++/health_check_service_interface.h
Step #5 - "build": include/grpc++/server_builder.h
Step #5 - "build": include/grpc++/ext/
Step #5 - "build": include/grpc++/ext/health_check_service_server_builder_option.h
Step #5 - "build": include/grpc++/ext/proto_server_reflection_plugin.h
Step #5 - "build": include/grpc++/alarm.h
Step #5 - "build": include/grpc++/support/
Step #5 - "build": include/grpc++/support/async_stream.h
Step #5 - "build": include/grpc++/support/stub_options.h
Step #5 - "build": include/grpc++/support/error_details.h
Step #5 - "build": include/grpc++/support/string_ref.h
Step #5 - "build": include/grpc++/support/async_unary_call.h
Step #5 - "build": include/grpc++/support/byte_buffer.h
Step #5 - "build": include/grpc++/support/config.h
Step #5 - "build": include/grpc++/support/sync_stream.h
Step #5 - "build": include/grpc++/support/status.h
Step #5 - "build": include/grpc++/support/status_code_enum.h
Step #5 - "build": include/grpc++/support/time.h
Step #5 - "build": include/grpc++/support/channel_arguments.h
Step #5 - "build": include/grpc++/support/slice.h
Step #5 - "build": include/grpc++/server_context.h
Step #5 - "build": include/grpc++/server_posix.h
Step #5 - "build": include/grpc++/generic/
Step #5 - "build": include/grpc++/generic/generic_stub.h
Step #5 - "build": include/grpc++/generic/async_generic_service.h
Step #5 - "build": include/grpc++/grpc++.h
Step #5 - "build": include/grpc++/security/
Step #5 - "build": include/grpc++/security/auth_metadata_processor.h
Step #5 - "build": include/grpc++/security/credentials.h
Step #5 - "build": include/grpc++/security/auth_context.h
Step #5 - "build": include/grpc++/security/server_credentials.h
Step #5 - "build": include/grpc++/create_channel_posix.h
Step #5 - "build": include/grpc++/impl/
Step #5 - "build": include/grpc++/impl/server_builder_option.h
Step #5 - "build": include/grpc++/impl/rpc_service_method.h
Step #5 - "build": include/grpc++/impl/client_unary_call.h
Step #5 - "build": include/grpc++/impl/call.h
Step #5 - "build": include/grpc++/impl/codegen/
Step #5 - "build": include/grpc++/impl/codegen/async_stream.h
Step #5 - "build": include/grpc++/impl/codegen/server_interface.h
Step #5 - "build": include/grpc++/impl/codegen/rpc_service_method.h
Step #5 - "build": include/grpc++/impl/codegen/stub_options.h
Step #5 - "build": include/grpc++/impl/codegen/client_unary_call.h
Step #5 - "build": include/grpc++/impl/codegen/call.h
Step #5 - "build": include/grpc++/impl/codegen/completion_queue_tag.h
Step #5 - "build": include/grpc++/impl/codegen/serialization_traits.h
Step #5 - "build": include/grpc++/impl/codegen/metadata_map.h
Step #5 - "build": include/grpc++/impl/codegen/core_codegen.h
Step #5 - "build": include/grpc++/impl/codegen/string_ref.h
Step #5 - "build": include/grpc++/impl/codegen/server_context.h
Step #5 - "build": include/grpc++/impl/codegen/async_unary_call.h
Step #5 - "build": include/grpc++/impl/codegen/grpc_library.h
Step #5 - "build": include/grpc++/impl/codegen/rpc_method.h
Step #5 - "build": include/grpc++/impl/codegen/security/
Step #5 - "build": include/grpc++/impl/codegen/security/auth_context.h
Step #5 - "build": include/grpc++/impl/codegen/byte_buffer.h
Step #5 - "build": include/grpc++/impl/codegen/config.h
Step #5 - "build": include/grpc++/impl/codegen/sync_stream.h
Step #5 - "build": include/grpc++/impl/codegen/status.h
Step #5 - "build": include/grpc++/impl/codegen/status_code_enum.h
Step #5 - "build": include/grpc++/impl/codegen/client_context.h
Step #5 - "build": include/grpc++/impl/codegen/time.h
Step #5 - "build": include/grpc++/impl/codegen/proto_utils.h
Step #5 - "build": include/grpc++/impl/codegen/core_codegen_interface.h
Step #5 - "build": include/grpc++/impl/codegen/create_auth_context.h
Step #5 - "build": include/grpc++/impl/codegen/service_type.h
Step #5 - "build": include/grpc++/impl/codegen/call_hook.h
Step #5 - "build": include/grpc++/impl/codegen/method_handler_impl.h
Step #5 - "build": include/grpc++/impl/codegen/channel_interface.h
Step #5 - "build": include/grpc++/impl/codegen/config_protobuf.h
Step #5 - "build": include/grpc++/impl/codegen/completion_queue.h
Step #5 - "build": include/grpc++/impl/codegen/slice.h
Step #5 - "build": include/grpc++/impl/serialization_traits.h
Step #5 - "build": include/grpc++/impl/grpc_library.h
Step #5 - "build": include/grpc++/impl/rpc_method.h
Step #5 - "build": include/grpc++/impl/channel_argument_option.h
Step #5 - "build": include/grpc++/impl/service_type.h
Step #5 - "build": include/grpc++/impl/method_handler_impl.h
Step #5 - "build": include/grpc++/impl/server_initializer.h
Step #5 - "build": include/grpc++/impl/server_builder_plugin.h
Step #5 - "build": include/grpc++/client_context.h
Step #5 - "build": include/grpc++/completion_queue.h
Step #5 - "build": include/grpc++/create_channel.h
Step #5 - "build": include/grpc/
Step #5 - "build": include/grpc/slice_buffer.h
Step #5 - "build": include/grpc/compression.h
Step #5 - "build": include/grpc/byte_buffer_reader.h
Step #5 - "build": include/grpc/census.h
Step #5 - "build": include/grpc/support/
Step #5 - "build": include/grpc/support/atm_gcc_atomic.h
Step #5 - "build": include/grpc/support/atm.h
Step #5 - "build": include/grpc/support/sync_custom.h
Step #5 - "build": include/grpc/support/atm_gcc_sync.h
Step #5 - "build": include/grpc/support/string_util.h
Step #5 - "build": include/grpc/support/sync_posix.h
Step #5 - "build": include/grpc/support/log.h
Step #5 - "build": include/grpc/support/port_platform.h
Step #5 - "build": include/grpc/support/atm_windows.h
Step #5 - "build": include/grpc/support/log_windows.h
Step #5 - "build": include/grpc/support/thd_id.h
Step #5 - "build": include/grpc/support/sync.h
Step #5 - "build": include/grpc/support/cpu.h
Step #5 - "build": include/grpc/support/workaround_list.h
Step #5 - "build": include/grpc/support/alloc.h
Step #5 - "build": include/grpc/support/time.h
Step #5 - "build": include/grpc/support/sync_generic.h
Step #5 - "build": include/grpc/support/sync_windows.h
Step #5 - "build": include/grpc/grpc.h
Step #5 - "build": include/grpc/grpc_security.h
Step #5 - "build": include/grpc/fork.h
Step #5 - "build": include/grpc/grpc_cronet.h
Step #5 - "build": include/grpc/byte_buffer.h
Step #5 - "build": include/grpc/grpc_security_constants.h
Step #5 - "build": include/grpc/impl/
Step #5 - "build": include/grpc/impl/codegen/
Step #5 - "build": include/grpc/impl/codegen/atm_gcc_atomic.h
Step #5 - "build": include/grpc/impl/codegen/atm.h
Step #5 - "build": include/grpc/impl/codegen/sync_custom.h
Step #5 - "build": include/grpc/impl/codegen/atm_gcc_sync.h
Step #5 - "build": include/grpc/impl/codegen/byte_buffer_reader.h
Step #5 - "build": include/grpc/impl/codegen/gpr_types.h
Step #5 - "build": include/grpc/impl/codegen/compression_types.h
Step #5 - "build": include/grpc/impl/codegen/grpc_types.h
Step #5 - "build": include/grpc/impl/codegen/sync_posix.h
Step #5 - "build": include/grpc/impl/codegen/port_platform.h
Step #5 - "build": include/grpc/impl/codegen/atm_windows.h
Step #5 - "build": include/grpc/impl/codegen/sync.h
Step #5 - "build": include/grpc/impl/codegen/fork.h
Step #5 - "build": include/grpc/impl/codegen/byte_buffer.h
Step #5 - "build": include/grpc/impl/codegen/connectivity_state.h
Step #5 - "build": include/grpc/impl/codegen/status.h
Step #5 - "build": include/grpc/impl/codegen/propagation_bits.h
Step #5 - "build": include/grpc/impl/codegen/gpr_slice.h
Step #5 - "build": include/grpc/impl/codegen/sync_generic.h
Step #5 - "build": include/grpc/impl/codegen/sync_windows.h
Step #5 - "build": include/grpc/impl/codegen/slice.h
Step #5 - "build": include/grpc/grpc_posix.h
Step #5 - "build": include/grpc/status.h
Step #5 - "build": include/grpc/load_reporting.h
Step #5 - "build": include/grpc/slice.h
Step #5 - "build": include/grpcpp/
Step #5 - "build": include/grpcpp/resource_quota.h
Step #5 - "build": include/grpcpp/channel.h
Step #5 - "build": include/grpcpp/server.h
Step #5 - "build": include/grpcpp/health_check_service_interface.h
Step #5 - "build": include/grpcpp/server_builder.h
Step #5 - "build": include/grpcpp/ext/
Step #5 - "build": include/grpcpp/ext/health_check_service_server_builder_option.h
Step #5 - "build": include/grpcpp/ext/proto_server_reflection_plugin.h
Step #5 - "build": include/grpcpp/alarm.h
Step #5 - "build": include/grpcpp/support/
Step #5 - "build": include/grpcpp/support/async_stream.h
Step #5 - "build": include/grpcpp/support/stub_options.h
Step #5 - "build": include/grpcpp/support/error_details.h
Step #5 - "build": include/grpcpp/support/proto_buffer_reader.h
Step #5 - "build": include/grpcpp/support/string_ref.h
Step #5 - "build": include/grpcpp/support/async_unary_call.h
Step #5 - "build": include/grpcpp/support/byte_buffer.h
Step #5 - "build": include/grpcpp/support/config.h
Step #5 - "build": include/grpcpp/support/sync_stream.h
Step #5 - "build": include/grpcpp/support/proto_buffer_writer.h
Step #5 - "build": include/grpcpp/support/status.h
Step #5 - "build": include/grpcpp/support/status_code_enum.h
Step #5 - "build": include/grpcpp/support/time.h
Step #5 - "build": include/grpcpp/support/channel_arguments.h
Step #5 - "build": include/grpcpp/support/slice.h
Step #5 - "build": include/grpcpp/server_context.h
Step #5 - "build": include/grpcpp/server_posix.h
Step #5 - "build": include/grpcpp/generic/
Step #5 - "build": include/grpcpp/generic/generic_stub.h
Step #5 - "build": include/grpcpp/generic/async_generic_service.h
Step #5 - "build": include/grpcpp/security/
Step #5 - "build": include/grpcpp/security/auth_metadata_processor.h
Step #5 - "build": include/grpcpp/security/credentials.h
Step #5 - "build": include/grpcpp/security/auth_context.h
Step #5 - "build": include/grpcpp/security/server_credentials.h
Step #5 - "build": include/grpcpp/create_channel_posix.h
Step #5 - "build": include/grpcpp/impl/
Step #5 - "build": include/grpcpp/impl/server_builder_option.h
Step #5 - "build": include/grpcpp/impl/rpc_service_method.h
Step #5 - "build": include/grpcpp/impl/client_unary_call.h
Step #5 - "build": include/grpcpp/impl/call.h
Step #5 - "build": include/grpcpp/impl/codegen/
Step #5 - "build": include/grpcpp/impl/codegen/async_stream.h
Step #5 - "build": include/grpcpp/impl/codegen/server_interface.h
Step #5 - "build": include/grpcpp/impl/codegen/rpc_service_method.h
Step #5 - "build": include/grpcpp/impl/codegen/stub_options.h
Step #5 - "build": include/grpcpp/impl/codegen/client_unary_call.h
Step #5 - "build": include/grpcpp/impl/codegen/call.h
Step #5 - "build": include/grpcpp/impl/codegen/completion_queue_tag.h
Step #5 - "build": include/grpcpp/impl/codegen/proto_buffer_reader.h
Step #5 - "build": include/grpcpp/impl/codegen/serialization_traits.h
Step #5 - "build": include/grpcpp/impl/codegen/metadata_map.h
Step #5 - "build": include/grpcpp/impl/codegen/core_codegen.h
Step #5 - "build": include/grpcpp/impl/codegen/string_ref.h
Step #5 - "build": include/grpcpp/impl/codegen/server_context.h
Step #5 - "build": include/grpcpp/impl/codegen/async_unary_call.h
Step #5 - "build": include/grpcpp/impl/codegen/grpc_library.h
Step #5 - "build": include/grpcpp/impl/codegen/rpc_method.h
Step #5 - "build": include/grpcpp/impl/codegen/security/
Step #5 - "build": include/grpcpp/impl/codegen/security/auth_context.h
Step #5 - "build": include/grpcpp/impl/codegen/byte_buffer.h
Step #5 - "build": include/grpcpp/impl/codegen/config.h
Step #5 - "build": include/grpcpp/impl/codegen/sync_stream.h
Step #5 - "build": include/grpcpp/impl/codegen/proto_buffer_writer.h
Step #5 - "build": include/grpcpp/impl/codegen/status.h
Step #5 - "build": include/grpcpp/impl/codegen/status_code_enum.h
Step #5 - "build": include/grpcpp/impl/codegen/client_context.h
Step #5 - "build": include/grpcpp/impl/codegen/time.h
Step #5 - "build": include/grpcpp/impl/codegen/proto_utils.h
Step #5 - "build": include/grpcpp/impl/codegen/core_codegen_interface.h
Step #5 - "build": include/grpcpp/impl/codegen/create_auth_context.h
Step #5 - "build": include/grpcpp/impl/codegen/service_type.h
Step #5 - "build": include/grpcpp/impl/codegen/call_hook.h
Step #5 - "build": include/grpcpp/impl/codegen/method_handler_impl.h
Step #5 - "build": include/grpcpp/impl/codegen/channel_interface.h
Step #5 - "build": include/grpcpp/impl/codegen/config_protobuf.h
Step #5 - "build": include/grpcpp/impl/codegen/completion_queue.h
Step #5 - "build": include/grpcpp/impl/codegen/slice.h
Step #5 - "build": include/grpcpp/impl/serialization_traits.h
Step #5 - "build": include/grpcpp/impl/grpc_library.h
Step #5 - "build": include/grpcpp/impl/rpc_method.h
Step #5 - "build": include/grpcpp/impl/channel_argument_option.h
Step #5 - "build": include/grpcpp/impl/service_type.h
Step #5 - "build": include/grpcpp/impl/method_handler_impl.h
Step #5 - "build": include/grpcpp/impl/server_initializer.h
Step #5 - "build": include/grpcpp/impl/server_builder_plugin.h
Step #5 - "build": include/grpcpp/client_context.h
Step #5 - "build": include/grpcpp/grpcpp.h
Step #5 - "build": include/grpcpp/completion_queue.h
Step #5 - "build": include/grpcpp/create_channel.h
Step #5 - "build": cd /go/src/agones.dev/agones/sdks/cpp/ && zip ./bin/agonessdk-0.4.0-d753d3d-src.zip Makefile *.md *.cc *.h
Step #5 - "build":   adding: Makefile (deflated 59%)
Step #5 - "build":   adding: README.md (deflated 63%)
Step #5 - "build":   adding: sdk.cc (deflated 68%)
Step #5 - "build":   adding: sdk.grpc.pb.cc (deflated 85%)
Step #5 - "build":   adding: sdk.pb.cc (deflated 91%)
Step #5 - "build":   adding: sdk.grpc.pb.h (deflated 91%)
Step #5 - "build":   adding: sdk.h (deflated 55%)
Step #5 - "build":   adding: sdk.pb.h (deflated 90%)
Step #5 - "build": docker push gcr.io/agones-images/agones-controller:0.4.0-d753d3d
Step #5 - "build": The push refers to repository [gcr.io/agones-images/agones-controller]
Step #5 - "build": b2e326c7be4b: Preparing
Step #5 - "build": 1b22471d3705: Preparing
Step #5 - "build": d38de6be9254: Preparing
Step #5 - "build": 717b092b8c86: Preparing
Step #5 - "build": 717b092b8c86: Layer already exists
Step #5 - "build": d38de6be9254: Pushed
Step #5 - "build": b2e326c7be4b: Pushed
Step #5 - "build": 1b22471d3705: Pushed
Step #5 - "build": 0.4.0-d753d3d: digest: sha256:99418b3d51c5d7afd18def36df8bc1632c775b79b5c23f04f91b901083cf4259 size: 1163
Step #5 - "build": docker push gcr.io/agones-images/agones-sdk:0.4.0-d753d3d
Step #5 - "build": The push refers to repository [gcr.io/agones-images/agones-sdk]
Step #5 - "build": 79273ef41d7b: Preparing
Step #5 - "build": 61ae76a82b19: Preparing
Step #5 - "build": d38de6be9254: Preparing
Step #5 - "build": 717b092b8c86: Preparing
Step #5 - "build": 717b092b8c86: Layer already exists
Step #5 - "build": d38de6be9254: Layer already exists
Step #5 - "build": 79273ef41d7b: Pushed
Step #5 - "build": 61ae76a82b19: Pushed
Step #5 - "build": 0.4.0-d753d3d: digest: sha256:656bd41a3a857d452ed92b1e0cbc7de24c9e13b22b54167d48a64428507a1a94 size: 1163
Finished Step #5 - "build"
Starting Step #8
Starting Step #7
Step #8: Already have image (with digest): gcr.io/cloud-builders/gsutil
Step #7: Already have image: e2e-runner
Step #8: Copying file://agonessdk-0.4.0-d753d3d-runtime-linux-arch_64.tar.gz [Content-Type=application/x-tar]...
Step #7: Fetching cluster endpoint and auth data.
Step #7: kubeconfig entry generated for e2e-test-cluster.
Step #7: Waiting consul port-forward to launch on 8500...
Step #8: / [0 files][    0.0 B/ 34.5 MiB]                                                
/ [1 files][ 34.5 MiB/ 34.5 MiB]                                                
-
Copying file://agonessdk-0.4.0-d753d3d-dev-linux-arch_64.tar.gz [Content-Type=application/x-tar]...
Step #8: - [1 files][ 34.5 MiB/320.0 MiB]                                                
==> NOTE: You are uploading one or more large file(s), which would run
Step #8: significantly faster if you enable parallel composite uploads. This
Step #8: feature can be enabled by editing the
Step #8: "parallel_composite_upload_threshold" value in your .boto
Step #8: configuration file. However, note that if you do this large files will
Step #8: be uploaded as `composite objects
Step #8: <https://cloud.google.com/storage/docs/composite-objects>`_,which
Step #8: means that any user who downloads such objects will need to have a
Step #8: compiled crcmod installed (see "gsutil help crcmod"). This is because
Step #8: without a compiled crcmod, computing checksums on composite objects is
Step #8: so slow that gsutil disables downloads of composite objects.
Step #8: 
Step #7: Forwarding from 127.0.0.1:8500 -> 8500
Step #7: Handling connection for 8500
Step #7: consul port-forward launched. Starting e2e tests...
Step #7: Handling connection for 8500
Step #7: Setting up lock at path: LockE2E/.lock
Step #7: Attempting lock acquisition
Step #7: Starting handler
Step #7: installing current release
Step #7: \
Step #7: 	helm upgrade --install --recreate-pods --wait --namespace=agones-system \
Step #7: 	--set agones.image.tag=0.4.0-d753d3d,agones.image.registry=gcr.io/agones-images,agones.image.controller.pullPolicy="Always",agones.image.sdk.alwaysPull=true \
Step #7: 	agones /go/src/agones.dev/agones/install/helm/agones/
Step #8: \
\ [1 files][116.3 MiB/320.0 MiB]                                                
|
/
/ [1 files][199.0 MiB/320.0 MiB]                                                
-
- [1 files][308.6 MiB/320.0 MiB]                                                
\
\ [2 files][320.0 MiB/320.0 MiB]                                                
|
Step #8: Operation completed over 2 objects/320.0 MiB.                                    
Finished Step #8
Step #7: Handling connection for 8500
Step #7: Release "agones" has been upgraded. Happy Helming!
Step #7: LAST DEPLOYED: Wed Aug 15 05:43:03 2018
Step #7: NAMESPACE: agones-system
Step #7: STATUS: DEPLOYED
Step #7: 
Step #7: RESOURCES:
Step #7: ==> v1/ServiceAccount
Step #7: NAME               SECRETS  AGE
Step #7: agones-controller  1        13d
Step #7: agones-sdk         1        13d
Step #7: 
Step #7: ==> v1beta1/CustomResourceDefinition
Step #7: NAME                                AGE
Step #7: fleets.stable.agones.dev            13d
Step #7: fleetallocations.stable.agones.dev  13d
Step #7: gameservers.stable.agones.dev       13d
Step #7: gameserversets.stable.agones.dev    13d
Step #7: 
Step #7: ==> v1/ClusterRoleBinding
Step #7: NAME                      AGE
Step #7: agones-controller-access  13d
Step #7: 
Step #7: ==> v1/RoleBinding
Step #7: NAME               AGE
Step #7: agones-sdk-access  13d
Step #7: 
Step #7: ==> v1beta1/MutatingWebhookConfiguration
Step #7: NAME                     AGE
Step #7: agones-mutation-webhook  13d
Step #7: 
Step #7: ==> v1beta1/ValidatingWebhookConfiguration
Step #7: agones-validation-webhook  13d
Step #7: 
Step #7: ==> v1/Pod(related)
Step #7: NAME                                READY  STATUS   RESTARTS  AGE
Step #7: agones-controller-764c88c879-zdmnx  1/1    Running  0         6s
Step #7: 
Step #7: ==> v1/Secret
Step #7: NAME         TYPE    DATA  AGE
Step #7: agones-cert  Opaque  2     13d
Step #7: 
Step #7: ==> v1/Service
Step #7: NAME                       TYPE       CLUSTER-IP     EXTERNAL-IP  PORT(S)  AGE
Step #7: agones-controller-service  ClusterIP  10.43.244.248  <none>       443/TCP  13d
Step #7: 
Step #7: ==> v1/Deployment
Step #7: NAME               DESIRED  CURRENT  UP-TO-DATE  AVAILABLE  AGE
Step #7: agones-controller  1        1        1           1          13d
Step #7: 
Step #7: ==> v1/ClusterRole
Step #7: NAME               AGE
Step #7: agones-controller  13d
Step #7: agones-sdk         13d
Step #7: 
Step #7: 
Step #7: NOTES:
Step #7: The Agones controller has been installed in the namespace agones-system.
Step #7: 
Step #7: You can watch the status by running 'kubectl --namespace agones-system get pods -o wide -w agones-controller'
Step #7: 
Step #7: Once ready you can create your first GameServer using our examples:
Step #7: 
Step #7: 'kubectl apply -f https://raw.githubusercontent.com/GoogleCloudPlatform/agones/master/examples/simple-udp/server/gameserver.yaml'
Step #7: 
Step #7: An example GameServer that makes use of the controller:
Step #7: 
Step #7: apiVersion: "stable.agones.dev/v1alpha1"
Step #7: kind: GameServer
Step #7: metadata:
Step #7:   name: "simple-udp"
Step #7: spec:
Step #7:   portPolicy: "dynamic"
Step #7:   containerPort: 7654
Step #7:   template:
Step #7:     spec:
Step #7:       containers:
Step #7:       - name: simple-udp
Step #7:         image: gcr.io/agones-images/udp-server:0.2
Step #7: 
Step #7: Finally don't forget to explore our documentation and usage guides on how to develop and host dedicated game servers on top of Agones. :
Step #7: 
Step #7:  - [Create a Game Server](https://github.com/GoogleCloudPlatform/agones/blob/master/docs/create_gameserver.md)
Step #7:  - [Integrating the Game Server SDK](https://github.com/GoogleCloudPlatform/agones/tree/master/sdks)
Step #7:  - [GameServer Health Checking](https://github.com/GoogleCloudPlatform/agones/blob/master/docs/health_checking.md)
Step #7:  - [Accessing Agones via the Kubernetes API](https://github.com/GoogleCloudPlatform/agones/blob/master/docs/access_api.md)
Step #7: starting e2e test
Step #7: go test -v agones.dev/agones/test/e2e/... \
Step #7: 	--kubeconfig /root/.kube/config \
Step #7: 	--gameserver-image=gcr.io/agones-images/cpp-simple-server:0.2
Step #7: === RUN   TestCreateConnect
Step #7: === PAUSE TestCreateConnect
Step #7: === CONT  TestCreateConnect
Step #7: --- FAIL: TestCreateConnect (12.41s)
Step #7: 	assertions.go:237: 
                        
	Error Trace:	gameserver_test.go:68
Step #7: 		
	Error:		Not equal: "" (expected)
Step #7: 			        != "ACK: Hello World !\n" (actual)
Step #7: 		
Step #7: FAIL
Step #7: FAIL	agones.dev/agones/test/e2e	12.498s
Step #7: ?   	agones.dev/agones/test/e2e/framework	[no test files]
Step #7: make: *** [test-e2e] Error 1
Step #7: Makefile:122: recipe for target 'test-e2e' failed
Step #7: Error running handler: exit status 2
Step #7: Child terminated, releasing lock
Step #7: Handling connection for 8500
Step #7: Cleanup succeeded
Finished Step #7
ERROR
ERROR: build step 7 "e2e-runner" failed: exit status 2

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: eea308eb-e12b-4cca-abef-46be0a31400d

The following development artifacts have been built, and will exist for the next 30 days:

(experimental) To install this version:

  • git fetch https://github.com/GoogleCloudPlatform/agones.git pull/315/head:pr_315 && git checkout pr_315
  • helm install install/helm/agones --namespace agones-system --name agones --set agones.image.tag=0.4.0-dc0e9dd

Copy link
Member

@markmandel markmandel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have one itty bitty question - but otherwise, this looks good to go!

RUN gcloud components update

# install kubectl without gcloud as we want the last version
ENV KUBECTL_VER 1.11.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Super minor thing. Do we want 1.10? I don't think you can run 1.11 on anything yet?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question ! I was lazy to figured which version I need.

I updated kubectl because the version from gcloud doesn't support port-forward on stateful set and I needed it there :

https://github.com/GoogleCloudPlatform/agones/blob/dc0e9dd3df062e58366320f44a932c1931b65d8a/build/e2e-image/entrypoint.sh#L29

it has been introduced by kubernetes/kubernetes#59705 which seems to be 1.10, do you want me to downgrade ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think so - it's super minor, bit it's nice to have our supported version line up with our Dev tooling, Just to make sure nothing odd happens.

Other than that - swash to a single commit, and I'll got approve!

@@ -0,0 +1,16 @@
# E2E Testing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

This test creates a gameserver and connect to it

update vendor with required lib for e2e
Adds the gcloud builder step to test it in a special e2e cluster
Updates build documentations with e2e instructions
Adds minikube e2e target
@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: c64e623f-ec33-4d46-9782-356c8afde787

The following development artifacts have been built, and will exist for the next 30 days:

(experimental) To install this version:

  • git fetch https://github.com/GoogleCloudPlatform/agones.git pull/315/head:pr_315 && git checkout pr_315
  • helm install install/helm/agones --namespace agones-system --name agones --set agones.image.tag=0.4.0-ac28dcb

@agones-bot
Copy link
Collaborator

Build Succeeded 👏

Build Id: 606e4423-f417-46d1-bf23-cd6105314d7c

The following development artifacts have been built, and will exist for the next 30 days:

(experimental) To install this version:

  • git fetch https://github.com/GoogleCloudPlatform/agones.git pull/315/head:pr_315 && git checkout pr_315
  • helm install install/helm/agones --namespace agones-system --name agones --set agones.image.tag=0.4.0-3662c17

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/build-tools Development tooling. I.e. pretty much everything in the `build` directory. kind/feature New features for Agones
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Move Deployment in install script out of v1beta1
4 participants