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

Update all testing DBs, remove EOL versions #379

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
5 changes: 2 additions & 3 deletions scripts/test-run-cockroachdb
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ start-test() {
export -f start-test

VERSION_LIST="\
cockroachdb v20.2
cockroachdb v20.1
cockroachdb v19.2"
cockroachdb v24.3
cockroachdb v24.1"

while read ENGINE VERSION; do
LABEL=$ENGINE-$VERSION DB_PASSWORD_ENV=POSTGRES_PASSWORD DB_IMAGE=docker.io/$ENGINE/cockroach:latest-$VERSION DB_ARGS="start-single-node --insecure" run-test
Expand Down
6 changes: 3 additions & 3 deletions scripts/test-run-mysql
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ start-test() {
export -f start-test

VERSION_LIST="\
mysql 8.4
mysql 8.0
mysql 5.7
mariadb 11.4
dereknola marked this conversation as resolved.
Show resolved Hide resolved
mariadb 10.11
mariadb 10.5
mariadb 10.4"
mariadb 10.5"

while read ENGINE VERSION; do
LABEL=$ENGINE-$VERSION DB_PASSWORD_ENV=MYSQL_ROOT_PASSWORD DB_IMAGE=docker.io/library/$ENGINE:$VERSION run-test
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-run-nats
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export -f start-test
# test minimum supported version and most recent version of NATS
VERSION_LIST="\
nats 2.9.25
nats 2.10.12"
nats 2.10.23"

while read ENGINE VERSION; do
LABEL=$ENGINE-$VERSION DB_PASSWORD_ENV=NATS_JS_PASSWORD DB_ARGS="-js" DB_IMAGE=docker.io/library/$ENGINE:$VERSION run-test
Expand Down
8 changes: 4 additions & 4 deletions scripts/test-run-postgres
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ start-test() {
export -f start-test

VERSION_LIST="\
postgres 15.4
postgres 14.9
postgres 13.12
postgres 12.16"
postgres 17
postgres 16
postgres 15
postgres 14"

while read ENGINE VERSION; do
LABEL=$ENGINE-$VERSION DB_PASSWORD_ENV=POSTGRES_PASSWORD DB_IMAGE=docker.io/library/$ENGINE:$VERSION run-test
Expand Down
Loading