File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -105,16 +105,12 @@ var benchmarkGroups = func() map[string][]*benchmark {
105
105
106
106
m ["default" ] = []* benchmark {
107
107
allBenchmarksMap ["bleve-index" ],
108
+ allBenchmarksMap ["cockroachdb" ],
108
109
allBenchmarksMap ["etcd" ],
109
110
allBenchmarksMap ["esbuild" ],
110
111
allBenchmarksMap ["go-build" ],
111
112
allBenchmarksMap ["gopher-lua" ],
112
113
}
113
- // TODO(go.dev/issue/73474): cockroachdb has a flaky benchmark in the CockroachDB tree
114
- // we can benchmark against (anything including master/6819a3e60849345808aa88932b5f52c43f329979).
115
- // Disable until CockroachDB upstream is fixed.
116
- // m["default"] = append(m["default"], allBenchmarksMap["cockroachdb"])
117
-
118
114
// TODO(go.dev/issue/72042): gVisor is broken at Go tip as of
119
115
// https://go.dev/cl/652276 due to unsafe dependence on field offsets.
120
116
// Disable until gVisor upstream is fixed.
Original file line number Diff line number Diff line change @@ -28,14 +28,13 @@ func (h CockroachDB) CheckPrerequisites() error {
28
28
}
29
29
30
30
func (h CockroachDB ) Get (gcfg * common.GetConfig ) error {
31
- // Build against a commit that includes https://github.com/cockroachdb/cockroach/pull/125588.
32
31
// Recursive clone the repo as we need certain submodules, i.e.
33
32
// PROJ, for the build to work.
34
33
return gitRecursiveCloneToCommit (
35
34
gcfg .SrcDir ,
36
35
"https://github.com/cockroachdb/cockroach" ,
37
36
"master" ,
38
- "c4a0d997e0da6ba3ebede61b791607aa452b9bbc" ,
37
+ "de6ca871fb4b0536d308d6468ab1f57a0fe83cee" , // v25.2.0
39
38
)
40
39
}
41
40
You can’t perform that action at this time.
0 commit comments