Skip to content

Commit 5ef196d

Browse files
committed
env/openbsd, dashboard: add OpenBSD 6.2 386 builder
Fixes golang/go#22835 Change-Id: I2763035fd60bf348d8ccc532045c9cf33c405a52 Reviewed-on: https://go-review.googlesource.com/81875 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 0b976d3 commit 5ef196d

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

dashboard/builders.go

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,14 @@ var Hosts = map[string]*HostConfig{
125125
Notes: "OpenBSD 6.2; GCE VM is built from script in build/env/openbsd-amd64",
126126
SSHUsername: "gopher",
127127
},
128-
// Currently broken: See comments on CL 79055.
129-
/*
130-
"host-openbsd-386-62": &HostConfig{
131-
VMImage: "openbsd-386-62",
132-
machineType: "n1-highcpu-4",
133-
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.openbsd-386",
134-
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-60.tar.gz",
135-
Notes: "OpenBSD 6.2; GCE VM is built from script in build/env/openbsd-386",
136-
SSHUsername: "gopher",
137-
},
138-
*/
128+
"host-openbsd-386-62": &HostConfig{
129+
VMImage: "openbsd-386-62-a",
130+
machineType: "n1-highcpu-4",
131+
buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.openbsd-386",
132+
goBootstrapURLTmpl: "https://storage.googleapis.com/$BUCKET/gobootstrap-openbsd-386-60.tar.gz",
133+
Notes: "OpenBSD 6.2; GCE VM is built from script in build/env/openbsd-386",
134+
SSHUsername: "gopher",
135+
},
139136
"host-freebsd-93-gce": &HostConfig{
140137
VMImage: "freebsd-amd64-gce93",
141138
machineType: "n1-highcpu-4",
@@ -1092,6 +1089,11 @@ func init() {
10921089
HostType: "host-openbsd-386-60",
10931090
MaxAtOnce: 1,
10941091
})
1092+
addBuilder(BuildConfig{
1093+
Name: "openbsd-386-62",
1094+
HostType: "host-openbsd-386-62",
1095+
MaxAtOnce: 1,
1096+
})
10951097
addBuilder(BuildConfig{
10961098
Name: "openbsd-amd64-62",
10971099
HostType: "host-openbsd-amd64-62",

env/openbsd-amd64/make.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ qemu-img create -f raw disk.raw 10G
128128

129129
# Run the installer to create the disk image.
130130
expect <<EOF
131-
set timeout 600
131+
set timeout 1800
132132
133133
spawn qemu-system-x86_64 -nographic -smp 2 \
134134
-drive if=virtio,file=disk.raw,format=raw -cdrom "${ISO_PATCHED}" \

0 commit comments

Comments
 (0)