mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 10:11:29 +08:00
22 lines
655 B
Bash
Executable File
22 lines
655 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 "$@" -v8 \
|
|
2.9.0-pg15 2.9.1-pg15 2.9.2-pg15 2.9.3-pg15
|
|
|
|
run_tests "$@" -v8 \
|
|
2.10.0-pg15 2.10.1-pg15 2.10.2-pg15 2.10.3-pg15 2.11.0-pg15 2.11.1-pg15 \
|
|
2.11.2-pg15 2.12.0-pg15 2.12.1-pg15 2.12.2-pg15 2.13.0-pg15 2.13.1-pg15
|
|
|
|
# Run repair tests for >=2.10.x versions due to PR #5441
|
|
run_tests "$@" -r -v8 \
|
|
2.10.0-pg15 2.10.1-pg15 2.10.2-pg15 2.10.3-pg15 2.11.0-pg15 2.11.1-pg15 \
|
|
2.11.2-pg15 2.12.0-pg15 2.12.1-pg15 2.12.2-pg15 2.13.0-pg15 2.13.1-pg15
|
|
|