Skip to content

Commit 3c8f081

Browse files
alberto-mirandallewellyn-sl
authored andcommitted
feat: Remove Google Life Sciences support (#570)
Google Life Sciences has been deprecated in Seqera Platform. As a result, this commit removes the `google-ls` CE option from `tw`. Signed-off-by: Alberto Miranda <alberto.miranda@seqera.io>
1 parent 3c5ea06 commit 3c8f081

File tree

7 files changed

+77
-294
lines changed

7 files changed

+77
-294
lines changed

conf/reflect-config.json

Lines changed: 74 additions & 22 deletions
Large diffs are not rendered by default.

src/main/java/io/seqera/tower/cli/commands/computeenvs/AddCmd.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import io.seqera.tower.cli.commands.computeenvs.add.AddEksCmd;
2626
import io.seqera.tower.cli.commands.computeenvs.add.AddGkeCmd;
2727
import io.seqera.tower.cli.commands.computeenvs.add.AddGoogleBatchCmd;
28-
import io.seqera.tower.cli.commands.computeenvs.add.AddGoogleLifeSciencesCmd;
28+
import io.seqera.tower.cli.commands.computeenvs.add.AddGoogleCloudCmd;
2929
import io.seqera.tower.cli.commands.computeenvs.add.AddK8sCmd;
3030
import io.seqera.tower.cli.commands.computeenvs.add.AddLsfCmd;
3131
import io.seqera.tower.cli.commands.computeenvs.add.AddMoabCmd;
@@ -51,8 +51,8 @@
5151
AddAltairCmd.class,
5252
AddMoabCmd.class,
5353
AddGkeCmd.class,
54-
AddGoogleLifeSciencesCmd.class,
5554
AddGoogleBatchCmd.class,
55+
AddGoogleCloudCmd.class,
5656
AddAzureCmd.class,
5757
AddSeqeraComputeCmd.class
5858
}

src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleLifeSciencesCmd.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleLifeSciencesPlatform.java

Lines changed: 0 additions & 115 deletions
This file was deleted.

src/main/java/io/seqera/tower/cli/commands/studios/TemplatesCmd.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
*
1616
*/
1717

18-
19-
2018
package io.seqera.tower.cli.commands.studios;
2119

2220
import io.seqera.tower.ApiException;

src/test/java/io/seqera/tower/cli/LaunchCmdTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void testSubmitGithubPipeline(OutputType format, MockServerClient mock) {
138138
mock.when(
139139
request().withMethod("GET").withPath("/compute-envs").withQueryStringParameter("status", "AVAILABLE"), exactly(1)
140140
).respond(
141-
response().withStatusCode(200).withBody("{\"computeEnvs\":[{\"id\":\"1uJweHHZTo7gydE6pyDt7x\",\"name\":\"demo\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":true,\"workspaceName\":null,\"visibility\":null},{\"id\":\"3bBgyqQrehvoihCVjunUaJ\",\"name\":\"google\",\"platform\":\"google-lifesciences\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null},{\"id\":\"53aWhB2qJroy0i51FOrFAC\",\"name\":\"manual\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null},{\"id\":\"7TZgco4ZknMHk4W4DzB8dH\",\"name\":\"google\",\"platform\":\"google-lifesciences\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null},{\"id\":\"NDEIULtY1a08q16osv8kg\",\"name\":\"demo\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null},{\"id\":\"isnEDBLvHDAIteOEF44ow\",\"name\":\"demo\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null}]}").withContentType(MediaType.APPLICATION_JSON)
141+
response().withStatusCode(200).withBody("{\"computeEnvs\":[{\"id\":\"1uJweHHZTo7gydE6pyDt7x\",\"name\":\"demo\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":true,\"workspaceName\":null,\"visibility\":null},{\"id\":\"53aWhB2qJroy0i51FOrFAC\",\"name\":\"manual\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null},{\"id\":\"NDEIULtY1a08q16osv8kg\",\"name\":\"demo\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null},{\"id\":\"isnEDBLvHDAIteOEF44ow\",\"name\":\"demo\",\"platform\":\"aws-batch\",\"status\":\"AVAILABLE\",\"message\":null,\"lastUsed\":null,\"primary\":null,\"workspaceName\":null,\"visibility\":null}]}").withContentType(MediaType.APPLICATION_JSON)
142142
);
143143

144144
mock.when(

src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleLifeSciencesPlatformTest.java

Lines changed: 0 additions & 114 deletions
This file was deleted.

0 commit comments

Comments
 (0)