mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 01:10:37 +08:00
Adjust the upgrade/downgrade scripts and add the tests. (cherry picked from commit d5fea0a842cbd38d2d72db16e9e67f1c9b1ccf36)
24 lines
835 B
Bash
Executable File
24 lines
835 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
|
|
|
|
# There are repair steps between:
|
|
# 1.7.1 and 1.7.2
|
|
# 2.0.0-rc1 and 2.0.0-rc2
|
|
#
|
|
# Please extend this list if repairs are needed between more steps.
|
|
run_tests "$@" -r -v7 \
|
|
2.0.0-rc1-pg12
|
|
run_tests "$@" -v7 \
|
|
2.0.0-rc2-pg12 2.0.0-rc3-pg12 2.0.0-rc4-pg12 2.0.0-pg12 2.0.1-pg12 2.0.2-pg12 2.1.0-pg12 \
|
|
2.1.1-pg12 2.2.0-pg12 2.2.1-pg12 2.3.0-pg12 2.3.1-pg12 2.4.0-pg12 2.4.1-pg12 2.4.2-pg12
|
|
run_tests "$@" -v8 \
|
|
2.5.0-pg12 2.5.1-pg12 2.5.2-pg12 2.6.0-pg12 2.6.1-pg12 2.7.0-pg12 2.7.1-pg12 2.7.2-pg12 \
|
|
2.8.0-pg12 2.8.1-pg12 2.9.0-pg12 2.9.1-pg12 2.9.2-pg12 2.9.3-pg12 2.10.0-pg12 2.10.1-pg12 \
|
|
2.10.2-pg12 2.10.3-pg12 2.11.0-pg12
|