Skip to content

Commit ad7f59b

Browse files
committed
changefeedccl: disable roachtest on IBM due to missing Kafka support
Marks the 10 minute tpcc-100 test as disabled on IBM platforms, since kafka is not supported on s390x. Fixes: #153759 Release note: None
1 parent 75a4639 commit ad7f59b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

pkg/cmd/roachtest/tests/cdc.go

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2857,12 +2857,13 @@ func registerCDC(r registry.Registry) {
28572857
Run: runCDCMultipleSchemaChanges,
28582858
})
28592859
r.Add(registry.TestSpec{
2860-
Name: "cdc/tpcc-100/10min/sink=kafka/envelope=enriched",
2861-
Owner: registry.OwnerCDC,
2862-
Benchmark: true,
2863-
Cluster: r.MakeClusterSpec(4, spec.WorkloadNode(), spec.CPU(16)),
2864-
Leases: registry.MetamorphicLeases,
2865-
CompatibleClouds: registry.AllClouds,
2860+
Name: "cdc/tpcc-100/10min/sink=kafka/envelope=enriched",
2861+
Owner: registry.OwnerCDC,
2862+
Benchmark: true,
2863+
Cluster: r.MakeClusterSpec(4, spec.WorkloadNode(), spec.CPU(16)),
2864+
Leases: registry.MetamorphicLeases,
2865+
// Disabled on IBM due to lack of Kafka support on s390x.
2866+
CompatibleClouds: registry.AllClouds.NoIBM(),
28662867
Suites: registry.Suites(registry.Nightly),
28672868
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
28682869
ct := newCDCTester(ctx, t, c)

0 commit comments

Comments
 (0)