Skip to content

Commit f4eb4f7

Browse files
committed
roachtest: only run liquibase test on GCE
The test needs custom ports, which only works in GCE. Release note: None
1 parent fa88e91 commit f4eb4f7

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)