Skip to content

Commit 2234ae0

Browse files
dmitshurcodebien
authored andcommitted
dashboard: change linux-amd64-longtest machine to n1-highcpu-16
CL 167638 made a change to add more CPU resources to the longtest builder, with the intention of going from 4 vCPUs, 15 GB RAM to 16 vCPUs, 14.4 GB RAM. It used n1-highcpu-8 GCE machine type, which actually has 8 vCPUs and 7.2 GB RAM.¹ Having less RAM than before wasn't the intention. Fix that by changing n1-highcpu-8 to n1-highcpu-16, which matches the comment. ¹ https://cloud.google.com/compute/docs/machine-types Updates golang/go#32831 Updates golang/go#33986 Updates golang/go#25886 Change-Id: I8426867fe33b3bf86576cb13d0d6113cd87f30c1 Reviewed-on: https://go-review.googlesource.com/c/build/+/192679 Reviewed-by: Bryan C. Mills <[email protected]>
1 parent 31face1 commit 2234ae0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/builders.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var Hosts = map[string]*HostConfig{
4646
"host-linux-stretch-morecpu": &HostConfig{
4747
Notes: "Debian Stretch, but on n1-highcpu-8",
4848
ContainerImage: "linux-x86-stretch:latest",
49-
machineType: "n1-highcpu-8", // 16 vCPUs, 14.4 GB mem
49+
machineType: "n1-highcpu-16", // 16 vCPUs, 14.4 GB mem
5050
buildletURLTmpl: "http://storage.googleapis.com/$BUCKET/buildlet.linux-amd64",
5151
env: []string{"GOROOT_BOOTSTRAP=/go1.4"},
5252
SSHUsername: "root",

0 commit comments

Comments
 (0)