Skip to content

Commit eee1425

Browse files
authored
Merge pull request #155090 from rafiss/blathers/backport-release-25.3.3-rc-155067
release-25.3.3-rc: roachtest: only run liquibase test on GCE
2 parents d1c0b3a + 8ddc6d7 commit eee1425

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
@@ -156,11 +156,12 @@ sudo ln -sf /home/ubuntu/cockroach /cockroach/cockroach.sh`); err != nil {
156156
}
157157

158158
r.Add(registry.TestSpec{
159-
Name: "liquibase",
160-
Owner: registry.OwnerSQLFoundations,
161-
Cluster: r.MakeClusterSpec(1),
162-
Leases: registry.MetamorphicLeases,
163-
CompatibleClouds: registry.AllExceptAWS,
159+
Name: "liquibase",
160+
Owner: registry.OwnerSQLFoundations,
161+
Cluster: r.MakeClusterSpec(1),
162+
Leases: registry.MetamorphicLeases,
163+
// This test uses custom ports, which is Only supported on GCE.
164+
CompatibleClouds: registry.OnlyGCE,
164165
Suites: registry.Suites(registry.Nightly, registry.Tool),
165166
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
166167
runLiquibase(ctx, t, c)

0 commit comments

Comments
 (0)