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

Upgrade to PG17 in Github actions #2114

Merged
merged 29 commits into from
Dec 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
3f2b3e4
upgraded to pg17 in misc-migtests.yml
priyanshi-yb Dec 24, 2024
9ac8127
fix expected files of assessment report and omnibus
priyanshi-yb Dec 24, 2024
489371d
upgraded in pg-migtests.yml
priyanshi-yb Dec 24, 2024
7a67a61
fixed failed.sql view stmts of omnibus
priyanshi-yb Dec 24, 2024
5d92ce9
fixed failed.sql of omnibus for a VIEW and skip execution of SET tran…
priyanshi-yb Dec 24, 2024
3cea491
fix shouldSkipDDL
priyanshi-yb Dec 24, 2024
2346459
fix expected files adventureworks
priyanshi-yb Dec 24, 2024
3ce3c4c
Merge branch 'main' into priyanshi/upgrade-17
priyanshi-yb Dec 24, 2024
91dfef1
fix install postgis to install respected pg_version's postgis
priyanshi-yb Dec 24, 2024
a1fa6d0
fix pg tests for not running sample schema ones for pg13 and setting …
priyanshi-yb Dec 24, 2024
7962084
fix pg-migtests.yml;
priyanshi-yb Dec 24, 2024
d270ca1
separate workflows for PG 13 and 17
priyanshi-yb Dec 24, 2024
49df585
Merge branch 'main' into priyanshi/upgrade-17
priyanshi-yb Dec 24, 2024
ab66c62
fix after merge main
priyanshi-yb Dec 24, 2024
79937cc
fix-job name
priyanshi-yb Dec 24, 2024
7e212c6
fix-job name
priyanshi-yb Dec 24, 2024
9a3bda4
debug
priyanshi-yb Dec 26, 2024
13d3aa6
Merge branch 'main' into priyanshi/upgrade-17
priyanshi-yb Dec 26, 2024
8e2e547
fixed aggregate test case
priyanshi-yb Dec 26, 2024
e142457
change admin pass
priyanshi-yb Dec 26, 2024
95872a5
fixed pass in gh
priyanshi-yb Dec 26, 2024
3d47707
fix admin pass in ff_env
priyanshi-yb Dec 26, 2024
d13c6f5
revert debug
priyanshi-yb Dec 26, 2024
d0fc2b1
review comment
priyanshi-yb Dec 27, 2024
d0c640d
Merge branch 'main' into priyanshi/upgrade-17
priyanshi-yb Dec 27, 2024
7c991ca
todo
priyanshi-yb Dec 27, 2024
0f38c5c
commit file
priyanshi-yb Dec 27, 2024
b4c4cf2
nit
priyanshi-yb Dec 27, 2024
fe6ae57
Merge branch 'main' into priyanshi/upgrade-17
priyanshi-yb Dec 27, 2024
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
Prev Previous commit
Next Next commit
nit
  • Loading branch information
priyanshi-yb committed Dec 27, 2024
commit b4c4cf2125da58848abcb86052ed63af5b9ac14d
12 changes: 6 additions & 6 deletions .github/workflows/pg-17-migtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,27 +110,27 @@ jobs:
psql "postgresql://yugabyte@yb-tserver-n1:5433/yugabyte" -c "SELECT version();"

- name: "TEST: PG sample schemas (sakila)"
if: ${{ !cancelled() && matrix.test_group == 'offline'}}
if: ${{ !cancelled() && matrix.test_group == 'offline' }}
run: migtests/scripts/run-schema-migration.sh pg/sakila

- name: "TEST: PG sample schemas (osm)"
if: ${{ !cancelled() && matrix.test_group == 'offline'}}
if: ${{ !cancelled() && matrix.test_group == 'offline' }}
run: migtests/scripts/run-schema-migration.sh pg/osm

- name: "TEST: PG sample schemas (adventureworks)"
if: ${{ !cancelled() && matrix.test_group == 'offline'}}
if: ${{ !cancelled() && matrix.test_group == 'offline' }}
run: migtests/scripts/run-schema-migration.sh pg/adventureworks

- name: "TEST: PG sample schemas (sample-is)"
if: ${{ !cancelled() && matrix.test_group == 'offline'}}
if: ${{ !cancelled() && matrix.test_group == 'offline' }}
run: migtests/scripts/run-schema-migration.sh pg/sample-is

- name: "TEST: PG sample schemas (pgtbrus)"
if: ${{ !cancelled() && matrix.test_group == 'offline'}}
if: ${{ !cancelled() && matrix.test_group == 'offline' }}
run: migtests/scripts/run-schema-migration.sh pg/pgtbrus

- name: "TEST: PG sample schemas (stackexchange)"
if: ${{ !cancelled() && matrix.test_group == 'offline'}}
if: ${{ !cancelled() && matrix.test_group == 'offline' }}
run: migtests/scripts/run-schema-migration.sh pg/stackexchange

- name: "TEST: pg-table-list-flags-test (table-list and exclude-table-list)"
Expand Down
Loading