-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into shubham/unique-export-dir
- Loading branch information
Showing
97 changed files
with
10,138 additions
and
3,172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
### Describe the changes in this pull request | ||
|
||
|
||
### Describe if there are any user-facing changes | ||
<!-- | ||
Clarify any changes to the user experience. For instance, | ||
1. Were there any changes to the command line? | ||
2. Were there any changes to the configuration? | ||
3. Has the installation process changed? | ||
4. Were there any changes to the reports? | ||
--> | ||
|
||
### How was this pull request tested? | ||
<!-- | ||
Mention if the existing tests were enough | ||
Mention the new unit tests added | ||
Was any manual testing needed? If yes, is there a need to add integration tests for that? | ||
--> | ||
|
||
### Does your PR have changes that can cause upgrade issues? | ||
| Component | Breaking changes? | | ||
| :----------------------------------------------: | :-----------: | | ||
| MetaDB | Yes/No | | ||
| Name registry json | Yes/No | | ||
| Data File Descriptor Json | Yes/No | | ||
| Export Snapshot Status Json | Yes/No | | ||
| Import Data State | Yes/No | | ||
| Export Status Json | Yes/No | | ||
| Data .sql files of tables | Yes/No | | ||
| Export and import data queue | Yes/No | | ||
| Schema Dump | Yes/No | | ||
| AssessmentDB | Yes/No | | ||
| Sizing DB | Yes/No | | ||
| Migration Assessment Report Json | Yes/No | | ||
| Callhome Json | Yes/No | | ||
| YugabyteD Tables | Yes/No | | ||
| TargetDB Metadata Tables | Yes/No | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Go | ||
|
||
on: | ||
push: | ||
branches: ['main', '*.*-dev', '*.*.*-dev'] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
|
||
test-issues-against-all-yb-versions: | ||
strategy: | ||
matrix: | ||
version: [2.23.1.0-b220, 2024.1.3.1-b8, 2.20.8.0-b53, 2.18.9.0-b17] | ||
env: | ||
YB_VERSION: ${{ matrix.version }} | ||
YB_CONN_STR: "postgres://yugabyte:[email protected]:5433/yugabyte" | ||
|
||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: "1.23.1" | ||
|
||
- name: Setup YugabyteDB | ||
run: | | ||
# using s3 release instead of docker image to allow testing against un-released versions | ||
wget https://s3.us-west-2.amazonaws.com/releases.yugabyte.com/${YB_VERSION}/yugabyte-${YB_VERSION}-centos-x86_64.tar.gz | ||
mkdir -p yugabyte-${YB_VERSION} | ||
tar -xvzf yugabyte-${YB_VERSION}-centos-x86_64.tar.gz -C yugabyte-${YB_VERSION} --strip-components=1 | ||
yugabyte-${YB_VERSION}/bin/yugabyted start --advertise_address 127.0.0.1 | ||
sleep 20 | ||
- name: Test YugabyteDB connection | ||
run: | | ||
psql "${YB_CONN_STR}" -c "SELECT version();" | ||
- name: Build | ||
run: | | ||
cd yb-voyager | ||
go build -v ./... | ||
- name: Test Issues Against YB Version | ||
run: | | ||
cd yb-voyager | ||
go test -v -run '^TestDDLIssuesInYBVersion$' ./... | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.