From ac9d1a2ed38af15409923b4dd4a18ef4cb899ba0 Mon Sep 17 00:00:00 2001 From: Faizan Qazi Date: Wed, 5 Nov 2025 12:27:21 -0500 Subject: [PATCH] roachtest/npgsql: skip on s390x Previously, the npgsql test was running on S390X, which doesn't have the required binaries. To address this, this patch excludes the IBM cloud. Fixes: #156622 Release note: None --- pkg/cmd/roachtest/tests/npgsql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/roachtest/tests/npgsql.go b/pkg/cmd/roachtest/tests/npgsql.go index 13d7f98f0d3a..43e1ad6cdc97 100644 --- a/pkg/cmd/roachtest/tests/npgsql.go +++ b/pkg/cmd/roachtest/tests/npgsql.go @@ -173,7 +173,7 @@ echo '%s' | git apply --ignore-whitespace -`, fmt.Sprintf(npgsqlPatch, result.St // .NET only supports AMD64 arch for 7.0. Cluster: r.MakeClusterSpec(1, spec.Arch(spec.OnlyAMD64)), Leases: registry.MetamorphicLeases, - CompatibleClouds: registry.AllExceptAWS, + CompatibleClouds: registry.AllExceptAWS.NoIBM(), Suites: registry.Suites(registry.Nightly, registry.Driver), Run: func(ctx context.Context, t test.Test, c cluster.Cluster) { runNpgsql(ctx, t, c)