Skip to content

Commit

Permalink
Rename docker clusters for more clarity and group all java test together
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <florent.poinsard@outlook.fr>
  • Loading branch information
frouioui committed Jan 15, 2025
1 parent 8e905aa commit 4d42a18
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: docker_test_cluster_25
name: docker_test_cluster
on: [push, pull_request]
permissions: read-all
jobs:

build:
name: Docker Test Cluster 25
name: Docker Test Cluster
runs-on: ubuntu-24.04

steps:
Expand Down Expand Up @@ -66,4 +66,4 @@ jobs:
- name: Run tests which require docker - 2
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.end_to_end == 'true'
run: |
go run test.go -docker=true --follow -shard 25
go run test.go -docker=true --follow -shard docker_cluster
2 changes: 1 addition & 1 deletion .github/workflows/java_docker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ jobs:
- name: Run tests which require docker - 1
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.end_to_end == 'true'
run: |
go run test.go -docker=true --follow -shard 10
go run test.go -docker=true --follow -shard java
10 changes: 5 additions & 5 deletions test/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"java_test"
],
"Manual": false,
"Shard": "10",
"Shard": "java",
"RetryMax": 1,
"Tags": []
},
Expand All @@ -19,7 +19,7 @@
"test/client_test.sh"
],
"Manual": false,
"Shard": "25",
"Shard": "java",
"RetryMax": 1,
"Tags": []
},
Expand Down Expand Up @@ -483,7 +483,7 @@
],
"Command": [],
"Manual": false,
"Shard": "25",
"Shard": "docker_cluster",
"RetryMax": 1,
"Tags": [
"site_test"
Expand Down Expand Up @@ -989,7 +989,7 @@
"Args": ["vitess.io/vitess/go/test/endtoend/topotest/zk2", "--topo-flavor=zk2"],
"Command": [],
"Manual": false,
"Shard": "25",
"Shard": "docker_cluster",
"RetryMax": 1,
"Tags": []
},
Expand Down Expand Up @@ -1061,7 +1061,7 @@
"Args": ["vitess.io/vitess/go/test/endtoend/vtcombo"],
"Command": [],
"Manual": false,
"Shard": "25",
"Shard": "docker_cluster",
"RetryMax": 1,
"Tags": []
},
Expand Down

0 comments on commit 4d42a18

Please sign in to comment.