mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
Last time we changed the zoekt module name it broke the wire protocol for zoekt. This now includes one more commit such that the wire protocol is unchanged: - c9182fcd2a rpc: use old module name when registering gob values Revert chain: - #40404 - #40353 Test Plan: Ran a local dev server with a hardcoded zoekt-webserver pinned to the old version (the google/zoekt module). indexed search was failing. Then upgraded the gomod version and it started working.
23 lines
689 B
Go
23 lines
689 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package main
|
|
|
|
import (
|
|
// zoekt-* used in sourcegraph/server docker image build
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-archive-index"
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-git-index"
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver"
|
|
_ "github.com/sourcegraph/zoekt/cmd/zoekt-webserver"
|
|
|
|
// go-mockgen is used to codegen mockable interfaces, used in precise code intel tests
|
|
_ "github.com/derision-test/go-mockgen/cmd/go-mockgen"
|
|
|
|
// used in schema pkg
|
|
_ "github.com/sourcegraph/go-jsonschema/cmd/go-jsonschema-compiler"
|
|
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
// used in many places
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
)
|