deploy: use more powerful instance for deploy

Deploy takes a ridiculous amount of time because it is
building toolchains and so on. Give it some actual CPU.

Change-Id: Id02b2d0de66b88066d0e1e83b8e1477b3dcd0cae
Reviewed-on: https://go-review.googlesource.com/c/playground/+/375634
Trust: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
diff --git a/deploy/deploy.json b/deploy/deploy.json
index 8a1f098..e749acf 100644
--- a/deploy/deploy.json
+++ b/deploy/deploy.json
@@ -37,5 +37,8 @@
       ]
     }
   ],
-  "timeout": "3600s"
+  "timeout": "3600s",
+  "options": {
+    "machineType": "N1_HIGHCPU_8"
+  }
 }
diff --git a/deploy/deploy_gotip.json b/deploy/deploy_gotip.json
index a9f4c28..87d4e76 100644
--- a/deploy/deploy_gotip.json
+++ b/deploy/deploy_gotip.json
@@ -26,5 +26,8 @@
       ]
     }
   ],
-  "timeout": "3600s"
+  "timeout": "3600s",
+  "options": {
+    "machineType": "N1_HIGHCPU_8"
+  }
 }