mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 02:23:49 +08:00
Due to the changes of the default view behaviour of continuous aggregates we need a new testsuite for the update tests for 1.7.0 This patch also changes the update test for 9.6 and 10 to run on cron and 11 and 12 on pull request.
16 lines
250 B
Bash
16 lines
250 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
|
|
|
TAGS="1.7.0-pg12"
|
|
TEST_VERSION="v6-pg12"
|
|
|
|
TAGS=$TAGS TEST_VERSION=$TEST_VERSION bash ${SCRIPT_DIR}/test_updates.sh
|
|
EXIT_CODE=$?
|
|
if [ $EXIT_CODE -ne 0 ]; then
|
|
exit $EXIT_CODE
|
|
fi
|