Skip to content

Commit ddc36c7

Browse files
committed
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>
1 parent 5ac9766 commit ddc36c7

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

deploy/deploy.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,8 @@
3737
]
3838
}
3939
],
40-
"timeout": "3600s"
40+
"timeout": "3600s",
41+
"options": {
42+
"machineType": "N1_HIGHCPU_8"
43+
}
4144
}

deploy/deploy_gotip.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,8 @@
2626
]
2727
}
2828
],
29-
"timeout": "3600s"
29+
"timeout": "3600s",
30+
"options": {
31+
"machineType": "N1_HIGHCPU_8"
32+
}
3033
}

0 commit comments

Comments
 (0)