Skip to content

Commit 41e2413

Browse files
authored
Merge pull request #155091 from rafiss/blathers/backport-release-25.2.7-rc-155067
release-25.2.7-rc: roachtest: only run liquibase test on GCE
2 parents 54e4ba5 + f4eb4f7 commit 41e2413

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pkg/cmd/roachtest/tests/liquibase.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,12 @@ func registerLiquibase(r registry.Registry) {
153153
}
154154

155155
r.Add(registry.TestSpec{
156-
Name: "liquibase",
157-
Owner: registry.OwnerSQLFoundations,
158-
Cluster: r.MakeClusterSpec(1),
159-
Leases: registry.MetamorphicLeases,
160-
CompatibleClouds: registry.AllExceptAWS,
156+
Name: "liquibase",
157+
Owner: registry.OwnerSQLFoundations,
158+
Cluster: r.MakeClusterSpec(1),
159+
Leases: registry.MetamorphicLeases,
160+
// This test uses custom ports, which is Only supported on GCE.
161+
CompatibleClouds: registry.OnlyGCE,
161162
Suites: registry.Suites(registry.Nightly, registry.Tool),
162163
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
163164
runLiquibase(ctx, t, c)

0 commit comments

Comments
 (0)