Граф коммитов

1499 Коммитов

Автор SHA1 Сообщение Дата
Andrew Bonventre 7a0c634c6c version: add go1.10rc1, go1.8.6, and go1.9.3
Change-Id: Idf7c0ae6458665f4363c2e0438117b0879055656
Reviewed-on: https://go-review.googlesource.com/89915
Reviewed-by: Chris Broadfoot <cbro@golang.org>
2018-01-25 18:15:44 +00:00
Andrew Bonventre 06ed7b8c14 cmd/releasebot: allow final releases without an RC
Remove the requirement for a final release to have an RC, since
point releases may not have one.

Additionally adds some error logs when running ./make.bash

Change-Id: If52d19d01e9e2a49c16d9b55c782bd922637292b
Reviewed-on: https://go-review.googlesource.com/89037
Reviewed-by: Russ Cox <rsc@golang.org>
2018-01-23 01:03:02 +00:00
Elias Naur d2c37311ae dashboard: add android/386, android/amd64 builders
Add an android/386 and an android/amd64 builder, both running on an
emulator. Use the new GOANDROID_ADB_FLAGS to direct the build to
either a device (android/arm, android/arm64) or an emulator
(android/386, android/amd64).

Change-Id: I8e25aa5efcbbb186c71c4e108a37ae11b0246c98
Reviewed-on: https://go-review.googlesource.com/88775
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-22 22:19:49 +00:00
Andrew Bonventre 97940473a2 cmd/gerritbot: properly import changes when running on k8s
+ Switch to alpine linux as the base container for the
  Docker image so that git and curl can be easily installed
+ Remove ca-certificate copying since alpine has the cert
+ Although the git committer must remain GerritBot in order
  for the gitcookies auth to work, this will cause the original
  author to be CC’d on the Gerrit change and the proper owner
  will be attributed in the git history
+ Download the git http cookies file from GCE metadata to
  properly authorize GerritBot to upload changes

Update golang/go#18517

Change-Id: I3acc7323c8f1b35ed2145f610cb03fbcd29dcdf4
Reviewed-on: https://go-review.googlesource.com/88615
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-20 02:33:13 +00:00
Andrew Bonventre 156b214a17 cmd/gerritbot: include error when a command fails
Change-Id: Ie6dc3077c00f7118520ef2270139854559cf8902
Reviewed-on: https://go-review.googlesource.com/88136
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2018-01-17 21:58:07 +00:00
Andrew Bonventre 8f4d216a43 cmd/gerritbot: remove superfluous go-github response body Close calls
The library methods take responsibility for closing the response body.
For example:
https://github.com/google/go-github/blob/master/github/github.go#L482-L486

Change-Id: I5d38a5e0a63c0bac0a0dc281279354fea32eeb23
Reviewed-on: https://go-review.googlesource.com/88095
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2018-01-17 21:27:49 +00:00
Andrew Bonventre 5adabcfcf9 cmd/gerritbot: close GitHub PR when Gerrit change is closed
When a Gerrit change moves into a "closed" state (merged or abandoned),
close the linked GitHub Pull Request with the appropriate message.
If the change has been merged, there is no need to mention the commit
in the message on the PR because the commit message will be linked
from the PR by virtue of the GitHub-Pull-Request: git label. See
https://github.com/golang/scratch/pull/2#issuecomment-358105675 for
an example.

Closed changes are also be cleaned up within b.pendingCLs.

Also removes a nil pointer dereference in the case where the
Gerrit CL does not exist yet, surmising its link from the output
of the push command.

Updates golang/go#18517

Change-Id: Ieb28c1b9d31216d48076b256bf6a65a099a38552
Reviewed-on: https://go-review.googlesource.com/87915
Reviewed-by: Ian Lance Taylor <iant@golang.org>
2018-01-17 19:46:31 +00:00
Andrew Bonventre 0a3b622eb3 cmd/gerritbot: update deps to pull in latest go-github
*github.PullRequest has since introduced the method GetBase(),
which we rely on.

Change-Id: I198eb7771ee6bd70e9e7de801e4369f6abfde435
Reviewed-on: https://go-review.googlesource.com/87597
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-12 19:21:38 +00:00
Caleb Spare 79fafde650 version: add all released versions in [go1.8, go1.9.2]
Fixes golang/go#23207.

Change-Id: I2e68962607bb48b88b4062cf5b4aac5b33f2763e
Reviewed-on: https://go-review.googlesource.com/85335
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2018-01-11 21:52:39 +00:00
Andrew Bonventre bc870f3c56 cmd/release: use dl.google.com to check for binary availability
Change-Id: Ib2177a5360316356911002f7454778ca04689dff
Reviewed-on: https://go-review.googlesource.com/87435
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-11 19:29:35 +00:00
Brad Fitzpatrick 57a8436bd4 version: add go1.10beta2
Change-Id: Iff76ea82026047cd5e14da020627587c0c80b6c7
Reviewed-on: https://go-review.googlesource.com/87318
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2018-01-11 18:58:39 +00:00
Andrew Bonventre 43e2754f63 cmd/releasebot: remove -s flag from which invocation
It’s not present on all platforms

Change-Id: Icbb5525084c9a5dbe5b429363729c406ed326478
Reviewed-on: https://go-review.googlesource.com/87396
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-11 18:39:05 +00:00
Andrew Bonventre 7dd1e7da00 maintner,cmd/gerritbot: post to GitHub when new Gerrit comments are made
Adds an Owner() method to GerritCL that returns the GitPerson author of
the Gerrit change’s first commit, which is how Gerrit assigns the owner.

Updates golang/go#18517

Change-Id: I27cf185d5c68db44732170d583f1851491f2d8a3
Reviewed-on: https://go-review.googlesource.com/87157
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-11 14:54:48 +00:00
Andrew Bonventre 0f5bac443c cmd/gerritbot: post a message to GitHub after a successful import
Additionally, changes the behavior to squash commits automatically
to better support GitHub user workflows.

Updates golang/go#18517

Change-Id: I4aa9cb1b88b6a78759f2fb56603e8cf1b055eb13
Reviewed-on: https://go-review.googlesource.com/87022
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-09 21:43:10 +00:00
Russ Cox fcbf1e9604 relnote: only show output for current release cycle
Change-Id: I808d5c772a3a1a9c90dc0dbaba777708113262ef
Reviewed-on: https://go-review.googlesource.com/82096
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-04 16:53:25 +00:00
Russ Cox 0e82b28d3b cmd/release: delete go/pkg/obj
There's no point to keeping this in releases.
It probably shouldn't be created at all, but since it is,
delete it.

Change-Id: Id82cb7412ac22260a507877dcf9bbec90667a224
Reviewed-on: https://go-review.googlesource.com/82095
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-04 16:52:38 +00:00
Tobias Klauser 78507e111a cmd/gomote: list correct number of transferred files during push
CL 73334 limited the number of files listed during a push, but there is
an offf-by-one. Only 4 files are listed, but the messages says "only
showed 5". Fix the check such that 5 files are listed.

Before:

2018/01/03 09:39:11 Remote doesn't have "src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer_test.go"
2018/01/03 09:39:11 Remote doesn't have "src/regexp/example_test.go"
2018/01/03 09:39:11 Remote doesn't have "src/runtime/debug/stubs.go"
2018/01/03 09:39:11 Remote doesn't have "src/runtime/defs_netbsd_386.go"
2018/01/03 09:39:11 Remote doesn't have 7245 files (only showed 5).

After:

2018/01/03 10:19:28 Remote doesn't have "src/cmd/vet/testdata/shift.go"
2018/01/03 10:19:28 Remote doesn't have "src/syscall/ztypes_linux_mips64le.go"
2018/01/03 10:19:28 Remote doesn't have "src/os/os_unix_test.go"
2018/01/03 10:19:28 Remote doesn't have "src/runtime/duff_amd64.s"
2018/01/03 10:19:28 Remote doesn't have "src/runtime/rt0_dragonfly_amd64.s"
2018/01/03 10:19:28 Remote doesn't have 7079 files (only showed 5).

Change-Id: I0a2fa401883b609727a5bf3d72bac3d242bdecbd
Reviewed-on: https://go-review.googlesource.com/85757
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2018-01-03 16:03:42 +00:00
Kevin Burke 125f04e1fc maintner: add 3 new fields to GithubIssueEvent
GithubIssueEvent added three new fields: Requested Reviewer, Review
Requester, and Dismissed Review. Parse these fields from the API JSON
and also handle them in the Protobuf file.

Fixes golang/go#23151.

Change-Id: I07f2004f300223045636c3e32027468b29dd6329
Reviewed-on: https://go-review.googlesource.com/84375
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-20 02:53:21 +00:00
Kevin Burke 3f648ee4ce maintner: add examples
Demonstrate how to load data from a network source and how to load
data from a local disk source.

Change-Id: I1710eca8a1b3be7b7f7458de6aa5d3372934450a
Reviewed-on: https://go-review.googlesource.com/84377
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-19 22:08:30 +00:00
Andrew Bonventre 181a4325ba cmd/releasebot: add support for beta releases
Additionally:

+ Check that git-codereiew is installed or exit
+ Use fully qualified git-codereview commands (don't
  assume the user has installed the aliases)

Change-Id: Iaeaa28affec06d58b90ec295120169fd945edf90
Reviewed-on: https://go-review.googlesource.com/84615
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-19 17:27:32 +00:00
Brad Fitzpatrick 69481099f1 dashboard: skip test/* dir on Windows XP
The slow test directory was previously skipped in 7b0a998e (CL
82395) for the slower + VM builders, but I forgot Windows XP.

The test directory is slow and doesn't have port-specific code. It's
mostly low-level compiler tests. We can safely skip it on most
builders, especially the slow & scarce ones.

Change-Id: I5c830509628e7eb1ab9649d31a47970afe135c33
Reviewed-on: https://go-review.googlesource.com/84335
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-12-15 18:46:55 +00:00
Brad Fitzpatrick a182ba70dd dashboard: give openbsd/386 more time, and skip pprof vendor tests on arm5
Updates golang/go#19547
Updates golang/go#22594

Change-Id: I0200eebf39c1fada6c6ce146afacb9d140142c5b
Reviewed-on: https://go-review.googlesource.com/84035
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-14 18:30:11 +00:00
Tobias Klauser 0cb6fe30ea cmd/gomote: drop unnecessary check for arch files
The .[56789] extentions are no longer used since Go 1.5. and the
object files are already covered by isGitIgnored.

Change-Id: I0f2fe2bc248a8a3f0b2bdc1b59dd31f2242a6797
Reviewed-on: https://go-review.googlesource.com/83695
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-13 19:34:38 +00:00
Brad Fitzpatrick fd5ece6d24 maintner: account for CLs changing branches
Fixes golang/go#23007

Change-Id: I1e791d1a96033e77edf077909c2a20afaea511c3
Reviewed-on: https://go-review.googlesource.com/83635
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-12-13 02:53:10 +00:00
Brad Fitzpatrick 2da300d9db cmd/coordinator: don't test subrepos on NetBSD for Go 1.8 and Go 1.9
Fixes golang/go#23102

Change-Id: Ie950ee92a3ece4a968a294aa1c5db2d65b5cf468
Reviewed-on: https://go-review.googlesource.com/83576
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-12-12 22:28:42 +00:00
Brad Fitzpatrick f4148b59b4 app: return the name of the Go branch in the JSON state of subrepos
We want to pass this down to the coordinator so each
dashboard.BuildConfig can have its own policy on which branches to
build. For example, we'll have NetBSD skip building subrepos for Go
versions that are too old.

Updates golang/go#23102

Change-Id: I40d35c9c5a6d4455772430c169dbea054929545e
Reviewed-on: https://go-review.googlesource.com/83536
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-12-12 21:02:07 +00:00
Andrew Bonventre 9f11edf3be cmd/releasebot: remove EDITOR=true hack in favor of --no-edit
The EDITOR env var is set to true to prevent git commit --amend
from pulling up an editor. Use the --no-edit command instead since
the desired behavior is the same only without the hack.

Change-Id: I29df9a566669ce56605169014b9e534b15811368
Reviewed-on: https://go-review.googlesource.com/83335
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-11 22:17:36 +00:00
Andrew Bonventre 92d565a7cf devapp,maintner: use ID instead of text for HelpWanted label
Add *GitHubIssue.HasLabelID method to maintner API.

Since the text will change to “help wanted”, adjust the logic to
make it a bit more future-proof.

Updates golang/go#22329

Change-Id: I22e9f06d6e2aca8ae4da31532f9cde2317a709ff
Reviewed-on: https://go-review.googlesource.com/83297
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-11 19:26:47 +00:00
Brad Fitzpatrick 50452d7bf4 dashboard: don't snapshot XP builders (not shared anyway), and skip pprof tests
Updates golang/go#10267
Updates golang/go#22594

Change-Id: Ib6a9e13fbaaf4aad0b74008146b55e651658d4dd
Reviewed-on: https://go-review.googlesource.com/83115
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
2017-12-10 03:23:21 +00:00
Brad Fitzpatrick 4662d0f854 dashboard, cmd/buildlet: add Windows XP builder
Updates golang/go#10267

Change-Id: I79064d9a2aca11bc14c73beef44d70098ed1ae3f
Reviewed-on: https://go-review.googlesource.com/83055
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-09 07:12:39 +00:00
Brad Fitzpatrick 3c0fd3cd52 dashboard: increase arm5 builder timeouts
Change-Id: I1c1af4f5f6d98ca78da2ab27c3006da867492777
Reviewed-on: https://go-review.googlesource.com/82935
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-12-08 18:01:56 +00:00
Brad Fitzpatrick 43ccb2e76f cmd/buildlet: increase fd limit on openbsd
Verified it now ups it:

2017/12/07 21:27:03 initial NOFILE rlimit: {Cur:128 Max:1024}
2017/12/07 21:27:03 updated NOFILE rlimit: {Cur:7030 Max:7030}

Not sure why it caps out at 7030 instead of the requested 32k, but
better than 128.

Change-Id: Ic9d12673ebfd1a584215f7c3e4a3d2496412ae2e
Reviewed-on: https://go-review.googlesource.com/82815
Reviewed-by: Ian Lance Taylor <iant@golang.org>
2017-12-08 15:54:19 +00:00
Andrew Bonventre eb24d5cdd7 version: update release notes url for go1.10beta1
Change-Id: I60ae303f249d49525c9e636f5abb306d27b8aad1
Reviewed-on: https://go-review.googlesource.com/82735
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-07 23:17:23 +00:00
Andrew Bonventre 3086c3b7f1 version: add go1.10beta1
Change-Id: I8a30ab9d58df9618af20bf659a228e5023afc79e
Reviewed-on: https://go-review.googlesource.com/82716
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-07 23:01:14 +00:00
Brad Fitzpatrick 73f4eecbda cmd/buildlet: always halt Mac VMs after builds, regardless of macOS version
We used to do this only by necessity on Sierra, due to Sierra issues,
but now that x/build/cmd/makemac is better, we can just do this all
the time. Doing it always is better anyway, to guarantee fresh
environments per build.

Also add the forgotten sudo in the Mac halt. The
env/darwin/macstadium/image-setup-notes.txt even calls out how to
setup password-free sudo to the images, but then I forgot to use it.
It only worked before (if it did?) because the process ended and
failed its heartbeat, at least some of the time. It's also possible it
was never working. The old reason that Sierra machines were
special-cased to reboot was reportedly fixed anyway, in
https://github.com/golang/go/issues/18751#issuecomment-343175368.

Updates golang/go#9495

Change-Id: Iea21d7bc07467429cde79f4212c2b91458f8d8d8
Reviewed-on: https://go-review.googlesource.com/82355
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-07 03:36:15 +00:00
Brad Fitzpatrick 7b0a998efa cmd/coordinator, dashboard: add mac race builder, skip redundant trybot tests
This adds a darwin-amd64-race builder. Of the four platforms that
support the race detector, this was the only one missing a builder.

To make up for the extra work, skip some redundant tests that the Mac
(and other) builds do. The test directory is really slow, and doesn't
have platform-specific code. We have amd64 & 386 test coverage for
that directory via the Linux builders, which is fine. No need to do it
on some of the heavier VM builders, or for trybots.

Fixes golang/go#17674

Change-Id: I888119b3fdd28884b87a59d78746ab1fef6960c7
Reviewed-on: https://go-review.googlesource.com/82395
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-07 03:32:54 +00:00
Brad Fitzpatrick 1dbc259108 dashboard, env/netbsd-386: update and re-enable netbsd/386 builder
The necessary binary packages are now available at:
http://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/i386/8.0_2017Q3/All/

Updates golang/go#20852

Change-Id: I20660a29f9e4044899de75d1b632c34619fca19b
Reviewed-on: https://go-review.googlesource.com/82019
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-06 06:23:46 +00:00
Brad Fitzpatrick 545bc596b2 dashboard: re-disable netbsd/386 builder until binary packages are built
Also update the bootstrap toolchain (verified in VMware VM locally).

Updates golang/go#20852

Change-Id: Iac875419ed8dc51fb9db09d8948067f24c601e17
Reviewed-on: https://go-review.googlesource.com/82018
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-12-06 02:17:39 +00:00
Andrew Bonventre 1a48e8779e cmd/gerritbot: import updated PRs to existing Gerrit Changes
Updates golang/go#18517

Change-Id: Iaa0cbb2f97ce98b37691ff39187dfa22a0ca3f8a
Reviewed-on: https://go-review.googlesource.com/82035
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-06 01:44:19 +00:00
Brad Fitzpatrick 5ef196d0b4 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 <bradfitz@golang.org>
2017-12-05 05:26:19 +00:00
Brad Fitzpatrick 0b976d301e dashboard: re-enable NetBSD/amd64 builder
Updates golang/go#22968
Updates golang/go#20852

Change-Id: Ida2bc7213d418735e897d0bae8e5fba9ae18fd6c
Reviewed-on: https://go-review.googlesource.com/81735
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-04 05:13:54 +00:00
Brad Fitzpatrick 283af61626 dashboard: disable NetBSD builders
Until issues are fixed. No point in wasting resources on column of
red.

Updates golang/go#22968

Change-Id: I2de5a4d8aca6fcbdab2f43d87818c7d8f333f8bc
Reviewed-on: https://go-review.googlesource.com/81637
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-12-02 02:08:22 +00:00
Brad Fitzpatrick 875117f9ea dashboard, cmd/buildlet, env/netbsd: enable netbsd ssh, re-disable netbsd-386
Fixes golang/go#22872
Updates golang/go#20852

Change-Id: I2b3454cb59a434cb12b10bb93cb4dd21d5187281
Reviewed-on: https://go-review.googlesource.com/81356
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-12-01 16:40:21 +00:00
Andrew Bonventre 079183f088 cmd/gerritbot: only import a PR if it has one commit
Otherwise, post a message to the PR saying that the commits must
be squashed into one.

Updates: golang/go#18517
Change-Id: I800ef7283224cae81bc04ba6d395585c412d3fbd
Reviewed-on: https://go-review.googlesource.com/81116
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-11-30 22:36:37 +00:00
Andrew Bonventre c37e485368 cmd/gerritbot: only import PRs with a cla: yes label
Update: golang/go#18517
Change-Id: I29fc30bfa8ff4fe4e3a9904a8077221e4b3fd5a7
Reviewed-on: https://go-review.googlesource.com/81115
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-11-30 18:25:05 +00:00
Brad Fitzpatrick dc438aa2b7 dashboard: bump netbsd-amd64 bootstrap, enlarge VMs, remove 386 GOHOSTARCH
Prepared using https://golang.org/cl/80895

Updates golang/go#20852

Change-Id: I186f74010f0a8be66eef5c369be664abe3f68f7f
Reviewed-on: https://go-review.googlesource.com/80896
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-11-30 17:08:36 +00:00
Brad Fitzpatrick 755dcd41c7 dashboard: restart netbsd-386 builder
Also clean up some redundant comments, move trybots from OpenBSD
6.0 to 6.2, and add some missing MaxAtOnce caps.

Updates golang/go#20852

Change-Id: I3d862ca7a7172952ec2254b583e4bf6102b026e6
Reviewed-on: https://go-review.googlesource.com/80876
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-11-29 22:55:44 +00:00
Andrew Bonventre 16c2cdbbb6 cmd/gerritbot: don’t create more than one Gerrit change for a PR
Due to maintner’s async nature, there is a period of time where
a Gerrit change may exist for a Pull Request but it is not reflected
in the corpus. Account for this by keeping an in-memory map of PRs
with stale data, and query Gerrit (should that map be incorrect due
to a restart) before creating a new change.

Update: golang/go#18517
Change-Id: Ife142697b15269caca088c3616c4acd4b227bfeb
Reviewed-on: https://go-review.googlesource.com/80840
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-11-29 22:27:03 +00:00
Brad Fitzpatrick 3182fd29ca cmd/coordinator: clean up old GCE buildlet VMs more aggressively
We had a bunch running for weeks and months with no "delete-at" field.
I'm not sure why. Perhaps related to gomote instances.

I need to debug that more and dig into git history, but for now clean
them up.

Change-Id: I7bde12357fbe2daa5f75d62e720b94028a0be6b5
Reviewed-on: https://go-review.googlesource.com/80655
Reviewed-by: Andrew Bonventre <andybons@golang.org>
2017-11-29 17:26:18 +00:00
Brad Fitzpatrick 88c920a80b all: start to revive netbsd-386 support
It's still busted, but this will let other people debug.

Updates golang/go#22914
Updates golang/go#20852
Updates golang/go#19339

Change-Id: Iedc21417e56418dab6abd433574ffef012ae43f3
Reviewed-on: https://go-review.googlesource.com/80435
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
2017-11-29 16:37:21 +00:00