Skip to content

Commit

Permalink
roachtest: disable azure tests that use zfs or specify ssd counts
Browse files Browse the repository at this point in the history
Both these options are not supported for roachprod azure yet,
resulting in cluster_creation errors.

Informs: cockroachdb#120621
Fixes: none
Epic: none
Release note: none
  • Loading branch information
DarrylWong committed May 7, 2024
1 parent f41c46e commit ccc0ffa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/tests/clearrange.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func registerClearRange(r registry.Registry) {
// to <3:30h but it varies.
Timeout: 5*time.Hour + 120*time.Minute,
Cluster: r.MakeClusterSpec(10, spec.CPU(16), spec.SetFileSystem(spec.Zfs)),
CompatibleClouds: registry.AllExceptAWS,
CompatibleClouds: registry.OnlyGCE,
Suites: registry.Suites(registry.Nightly),
EncryptionSupport: registry.EncryptionMetamorphic,
Leases: registry.MetamorphicLeases,
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/roachtest/tests/tpce.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ func registerTPCE(r registry.Registry) {
Owner: registry.OwnerTestEng,
Timeout: 4 * time.Hour,
Cluster: r.MakeClusterSpec(smallNightly.nodes+1, spec.CPU(smallNightly.cpus), spec.SSD(smallNightly.ssds)),
CompatibleClouds: registry.AllExceptAWS,
CompatibleClouds: registry.OnlyGCE,
Suites: registry.Suites(registry.Nightly),
// Never run with runtime assertions as this makes this test take
// too long to complete.
Expand All @@ -303,7 +303,7 @@ func registerTPCE(r registry.Registry) {
Name: fmt.Sprintf("tpce/c=%d/nodes=%d", largeWeekly.customers, largeWeekly.nodes),
Owner: registry.OwnerTestEng,
Benchmark: true,
CompatibleClouds: registry.AllExceptAWS,
CompatibleClouds: registry.OnlyGCE,
Suites: registry.Suites(registry.Weekly),
Timeout: 36 * time.Hour,
Cluster: r.MakeClusterSpec(largeWeekly.nodes+1, spec.CPU(largeWeekly.cpus), spec.SSD(largeWeekly.ssds)),
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/tests/ycsb.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func registerYCSB(r registry.Registry) {
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
runYCSB(ctx, t, c, wl, cpus, ycsbOptions{})
},
CompatibleClouds: registry.AllExceptAWS,
CompatibleClouds: registry.OnlyGCE,
Suites: registry.Suites(registry.Nightly),
})
}
Expand Down

0 comments on commit ccc0ffa

Please sign in to comment.