dashboard: set GO_EXTLINK_ENABLED=1 for Alpine builder for now

Updates golang/go#18243

Change-Id: I76989c3f6b592fb2b68df86c853896f7a2ff7a25
Reviewed-on: https://go-review.googlesource.com/41798
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/dashboard/builders.go b/dashboard/builders.go
index 705a2bc..c44d64b 100644
--- a/dashboard/builders.go
+++ b/dashboard/builders.go
@@ -795,6 +795,9 @@
 	addBuilder(BuildConfig{
 		Name:     "linux-amd64-alpine",
 		HostType: "host-linux-x86-alpine",
+		env: []string{
+			"GO_EXTLINK_ENABLED=1", // Issue 18243 (internal linking broken)
+		},
 	})
 	// Add the -vetall builder. The builder name suffix "-vetall" is recognized by cmd/dist/test.go
 	// to only run the "go vet std cmd" test and no others.