Skip to content

Commit

Permalink
Bump all database versions in integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Campbell <marc.e.campbell@gmail.com>
  • Loading branch information
marccampbell committed Mar 19, 2021
1 parent 9b52e87 commit aa99c99
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 44 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
needs: build
strategy:
matrix:
postgres_version: ["10.14", "11.9", "12.4", "13-beta3"]
postgres_version: ["10.16", "11.11", "12.6", "13.2"]
steps:
- uses: actions/checkout@v2
- name: Download kubectl-schemahero binary
Expand All @@ -43,7 +43,7 @@ jobs:
needs: build
strategy:
matrix:
mysql_version: ["5.6.49", "5.7.31", "8.0.21"]
mysql_version: ["5.6.51", "5.7.33", "8.0.23"]
steps:
- uses: actions/checkout@v2
- name: Download kubectl-schemahero binary
Expand All @@ -59,7 +59,7 @@ jobs:
needs: build
strategy:
matrix:
cockroachdb_version: ["v19.2.9", "v20.1.4"]
cockroachdb_version: ["v19.2.12", "v20.1.13", "v20.2.6"]
steps:
- uses: actions/checkout@v2
- name: Download kubectl-schemahero binary
Expand All @@ -75,7 +75,7 @@ jobs:
needs: build
strategy:
matrix:
cassandra_version: ["3.11.8"]
cassandra_version: ["3.11.10"]
steps:
- uses: actions/checkout@v2
- name: Download kubectl-schemahero binary
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tagged-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
needs: build
strategy:
matrix:
postgres_version: ["10.14", "11.9", "12.4", "13-beta3"]
postgres_version: ["10.16", "11.11", "12.6", "13.2"]
steps:
- uses: actions/checkout@v2
- name: Download kubectl-schemahero binary
Expand All @@ -42,7 +42,7 @@ jobs:
needs: build
strategy:
matrix:
mysql_version: ["5.6.49", "5.7.31", "8.0.21"]
mysql_version: ["5.6.51", "5.7.33", "8.0.23"]
steps:
- uses: actions/checkout@v2
- name: Download kubectl-schemahero binary
Expand All @@ -58,7 +58,7 @@ jobs:
needs: build
strategy:
matrix:
cockroachdb_version: ["v19.2.9", "v20.1.4"]
cockroachdb_version: ["v19.2.12", "v20.1.13", "v20.2.6"]
steps:
- uses: actions/checkout@v2
- name: Download kubectl-schemahero binary
Expand Down
10 changes: 5 additions & 5 deletions integration/tests/cassandra/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ export IMAGE
export GO111MODULE=on

.PHONY: run
run: 3.11.8
run: 3.11.10

.PHONY: 3.11.8
3.11.8: export CASSANDRA_VERSION = 3.11.8
3.11.8:
.PHONY: 3.11.10
3.11.10: export CASSANDRA_VERSION = 3.11.10
3.11.10:
make -C create-table run
make -C create-type run
make -C add-column run
make -C change-column-type run
make -C create-table-with-properties run
make -C alter-table-properties run
make -C alter-table-default-properties-unchanged run
make -C alter-table-default-properties-unchanged run
28 changes: 21 additions & 7 deletions integration/tests/cockroach/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export IMAGE
export GO111MODULE=on

.PHONY: run
run: v19.2.9 v20.1.4
run: v19.2.12 v20.1.13 v20.2.6

.PHONY: v19.2.9
v19.2.9: export COCKROACHDB_VBERSION = v19.2.9
v19.2.9:
.PHONY: v19.2.12
v19.2.2: export COCKROACHDB_VBERSION = v19.2.12
v19.2.2:
make -C column-set-default run
make -C column-unset-default run
make -C create-table run
Expand All @@ -22,9 +22,9 @@ v19.2.9:
make -C primary-key-add run
make -C primary-key-drop run

.PHONY: v20.1.4
v20.1.4: export COCKROACHDB_VBERSION = v20.1.4
v20.1.4:
.PHONY: v20.1.13
v20.1.13: export COCKROACHDB_VBERSION = v20.1.13
v20.1.13:
make -C column-set-default run
make -C column-unset-default run
make -C create-table run
Expand All @@ -37,6 +37,20 @@ v20.1.4:
make -C primary-key-add run
make -C primary-key-drop run

.PHONY: v20.2.6
v20.2.6: export COCKROACHDB_VBERSION = v20.2.6
v20.2.6:
make -C column-set-default run
make -C column-unset-default run
make -C create-table run
make -C foreign-key-create run
make -C foreign-key-action run
make -C foreign-key-drop run
make -C foreign-key-alter run
make -C not-null run
make -C index-create run
make -C primary-key-add run
make -C primary-key-drop run

.PHONY: build
build: docker-build
Expand Down
24 changes: 12 additions & 12 deletions integration/tests/mysql/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export IMAGE
export GO111MODULE=on

.PHONY: run
run: 5.6.49 5.7.31 8.0.21
run: 5.6.51 5.7.33 8.0.23

.PHONY: 5.6.49
5.6.49: export MYSQL_VERSION = 5.6.49
5.6.49:
.PHONY: 5.6.51
5.6.51: export MYSQL_VERSION = 5.6.51
5.6.51:
make -C decimal run
make -C medium-text run
make -C medium-blob run
Expand All @@ -32,9 +32,9 @@ run: 5.6.49 5.7.31 8.0.21
make -C add-collation run
make -C remove-charset run

.PHONY: 5.7.31
5.7.31: export MYSQL_VERSION = 5.7.31
5.7.31:
.PHONY: 5.7.33
5.7.33: export MYSQL_VERSION = 5.7.33
5.7.33:
make -C decimal run
make -C medium-text run
make -C medium-blob run
Expand All @@ -56,10 +56,10 @@ run: 5.6.49 5.7.31 8.0.21
make -C add-charset run
make -C add-collation run
make -C remove-charset run
.PHONY: 8.0.21
8.0.21: export MYSQL_VERSION = 8.0.21
8.0.21:

.PHONY: 8.0.23
8.0.23: export MYSQL_VERSION = 8.0.23
8.0.23:
make -C decimal run
make -C medium-text run
make -C medium-blob run
Expand All @@ -81,7 +81,7 @@ run: 5.6.49 5.7.31 8.0.21
make -C add-charset run
make -C add-collation run
make -C remove-charset run

.PHONY: build
build: docker-build
docker push $(IMAGE)
Expand Down
26 changes: 13 additions & 13 deletions integration/tests/postgres/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export IMAGE
export GO111MODULE=on

.PHONY: run
run: 10.14 11.9 12.4 13-beta3
run: 10.16 11.11 12.6 13.2

.PHONY: 10.14
10.14: export PG_VERSION = 10.14
10.14:
.PHONY: 10.16
10.16: export PG_VERSION = 10.16
10.16:
make -C column-set-default run
make -C column-unset-default run
make -C create-table run
Expand All @@ -25,9 +25,9 @@ run: 10.14 11.9 12.4 13-beta3
make -C unique-constraint-add run
make -C unique-constraint-drop run

.PHONY: 11.9
11.9: export PG_VERSION = 11.9
11.9:
.PHONY: 11.11
11.11: export PG_VERSION = 11.11
11.11:
make -C column-set-default run
make -C column-unset-default run
make -C create-table run
Expand All @@ -43,9 +43,9 @@ run: 10.14 11.9 12.4 13-beta3
make -C unique-constraint-add run
make -C unique-constraint-drop run

.PHONY: 12.4
12.4: export PG_VERSION = 12.4
12.4:
.PHONY: 12.6
12.6: export PG_VERSION = 12.6
12.6:
make -C column-set-default run
make -C column-unset-default run
make -C create-table run
Expand All @@ -61,9 +61,9 @@ run: 10.14 11.9 12.4 13-beta3
make -C unique-constraint-add run
make -C unique-constraint-drop run

.PHONY: 13-beta3
13-beta3: export PG_VERSION = 13-beta3
13-beta3:
.PHONY: 13.2
13.2: export PG_VERSION = 13.2
13.2:
make -C column-set-default run
make -C column-unset-default run
make -C create-table run
Expand Down

0 comments on commit aa99c99

Please sign in to comment.