File tree 2 files changed +9
-4
lines changed
dashboard/env/openbsd-amd64 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,13 @@ make.bash should be run on a Linux box with qemu.
5
5
6
6
After it completes, it creates a file openbsd-amd64-gce.tar.gz
7
7
8
- Upload openbsd-amd64-gce.tar.gz to gs://go-builder-data/openbsd-amd64-gce.tar.gz
9
- I just use the web UI at:
8
+ Then:
9
+ gsutil cp -a public-read openbsd-amd64-gce.tar.gz gs://go-builder-data/openbsd-amd64-gce.tar.gz
10
+ Or just use the web UI at:
10
11
https://console.developers.google.com/project/symbolic-datum-552/storage/browser/go-builder-data/
11
12
12
13
Then:
14
+ gcloud compute --project symbolic-datum-552 images delete openbsd-amd64-56
13
15
gcloud compute --project symbolic-datum-552 images create openbsd-amd64-56 --source-uri gs://go-builder-data/openbsd-amd64-gce.tar.gz
14
16
15
17
The VM needs to be run with the GCE metadata attribute "buildlet-binary-url" set to a URL
Original file line number Diff line number Diff line change 17
17
mkdir -p etc
18
18
cat > install.site << EOF
19
19
#!/bin/sh
20
- env PKG_PATH=ftp://ftp.usa.openbsd.org/pub/OpenBSD/5.6/packages/amd64 pkg_add -iv bash curl
20
+ env PKG_PATH=ftp://ftp.usa.openbsd.org/pub/OpenBSD/5.6/packages/amd64 pkg_add -iv bash curl git
21
21
22
22
# See https://code.google.com/p/google-compute-engine/issues/detail?id=77
23
23
echo "ignore classless-static-routes;" >> /etc/dhclient.conf
@@ -202,7 +202,10 @@ send "yes\n"
202
202
expect -timeout 600 "Location of sets\?"
203
203
send "done\n"
204
204
205
- # Need to wait for install.site to install curl.
205
+ expect "Ambiguous: choose dependency for git"
206
+ send "0\n"
207
+
208
+ # Need to wait for install.site to install curl, git, et
206
209
expect -timeout 600 "CONGRATULATIONS!"
207
210
208
211
expect "# "
You can’t perform that action at this time.
0 commit comments