Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some VReplication e2e Refactoring #14735

Merged
merged 21 commits into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
454c069
Simplify VitessCluster constructor
rohit-nayak-ps Dec 8, 2023
6b6593a
Fix FK test
rohit-nayak-ps Dec 11, 2023
aaec9c5
Set vttablet db time zone as UTC on initialize: without that, timesta…
rohit-nayak-ps Dec 11, 2023
3193d4a
Convert mixed case table names to all lower case, so it works also on…
rohit-nayak-ps Dec 12, 2023
5858e57
Was incorrectly calling teardown
rohit-nayak-ps Dec 12, 2023
1b0b7b8
Remove unused MultiCell test and fold in one subtest into CellAlias
rohit-nayak-ps Dec 12, 2023
0a12450
Remove global vtgateConn
rohit-nayak-ps Dec 12, 2023
098e821
Fix issues with vstream test related to refactoring of global vtgate …
rohit-nayak-ps Dec 12, 2023
a940980
Remove some global cell attributes
rohit-nayak-ps Dec 12, 2023
2e896dd
Combine vstream workflows into one
rohit-nayak-ps Dec 12, 2023
e2e356a
Reorganize vreplication workflows to combine into fewer. Remove Multi…
rohit-nayak-ps Dec 12, 2023
2aadb6a
Refactor WaitForStatusOfTabletInShard usage
rohit-nayak-ps Dec 13, 2023
6dcc94e
Fix failing workflows
rohit-nayak-ps Dec 13, 2023
4a8f428
Fix incorrect change to SQLFuture.java
rohit-nayak-ps Dec 13, 2023
6ea23d3
Remove couple of global variables
rohit-nayak-ps Dec 13, 2023
6f7577a
Remove vtgte global variable
rohit-nayak-ps Dec 13, 2023
44de103
Minor mods
rohit-nayak-ps Dec 13, 2023
08339d9
Minor mods
rohit-nayak-ps Dec 14, 2023
7942f39
Added a comment
rohit-nayak-ps Dec 17, 2023
4ffe54e
Address review comments
rohit-nayak-ps Dec 19, 2023
331291e
Fix merge issue
rohit-nayak-ps Dec 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
170 changes: 0 additions & 170 deletions .github/workflows/cluster_endtoend_vreplication_multicell.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# DO NOT MODIFY: THIS FILE IS GENERATED USING "make generate_ci_workflows"

name: Cluster (vreplication_partial_movetables_basic)
name: Cluster (vreplication_partial_movetables_and_materialize)
on: [push, pull_request]
concurrency:
group: format('{0}-{1}', ${{ github.ref }}, 'Cluster (vreplication_partial_movetables_basic)')
group: format('{0}-{1}', ${{ github.ref }}, 'Cluster (vreplication_partial_movetables_and_materialize)')
cancel-in-progress: true

permissions: read-all
Expand All @@ -15,7 +15,7 @@ env:

jobs:
build:
name: Run endtoend tests on Cluster (vreplication_partial_movetables_basic)
name: Run endtoend tests on Cluster (vreplication_partial_movetables_and_materialize)
runs-on: gh-hosted-runners-4cores-1

steps:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/cluster_endtoend_vreplication_partial_movetables_basic.yml'
- '.github/workflows/cluster_endtoend_vreplication_partial_movetables_and_materialize.yml'

- name: Set up Go
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
EOF

# run the tests however you normally do, then produce a JUnit XML file
eatmydata -- go run test.go -docker=false -follow -shard vreplication_partial_movetables_basic | tee -a output.txt | go-junit-report -set-exit-code > report.xml
eatmydata -- go run test.go -docker=false -follow -shard vreplication_partial_movetables_and_materialize | tee -a output.txt | go-junit-report -set-exit-code > report.xml

- name: Print test output and Record test result in launchable if PR is not a draft
if: steps.skip-workflow.outputs.skip-workflow == 'false' && steps.changes.outputs.end_to_end == 'true' && always()
Expand Down

This file was deleted.

Loading
Loading