Skip to content

Commit 2db9de7

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 bb1c098 commit 2db9de7

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)