mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 18:43:18 +08:00
Add 2.9.0 to update test scripts and adjust downgrade scripts for 2.9.0. Additionally adjust CHANGELOG to sync with the actual release CHANGELOG and add PG15 to CI.
17 lines
450 B
Bash
Executable File
17 lines
450 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
|
|
|
# shellcheck source=scripts/test_functions.inc
|
|
source ${SCRIPT_DIR}/test_functions.inc
|
|
|
|
run_tests "$@" -v7 \
|
|
2.1.0-pg13 2.1.1-pg13 2.2.0-pg13 2.2.1-pg13 2.3.0-pg13 2.3.1-pg13 \
|
|
2.4.0-pg13 2.4.1-pg13 2.4.2-pg13
|
|
run_tests "$@" -v8 \
|
|
2.5.0-pg13 2.5.1-pg13 2.5.2-pg13 2.6.0-pg13 2.6.1-pg13 2.7.0-pg13 2.7.1-pg13 2.7.2-pg13 \
|
|
2.8.0-pg13 2.8.1-pg13 2.9.0-pg13
|
|
|