mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-22 05:31:41 +08:00
Run update test in GMT timezone
Due to a validation bug involving interval validation and the current daylight savings time switch in the 1.7 releases the update tests that includes 1.7 versions is currently failing. This patch changes CI to run in GMT instead.
This commit is contained in:
parent
72c6114c68
commit
ed62df721f
@ -130,12 +130,12 @@ docker_pgdiff_all() {
|
||||
}
|
||||
|
||||
docker_run() {
|
||||
docker run --env TIMESCALEDB_TELEMETRY=off --env POSTGRES_HOST_AUTH_METHOD=trust -d --name $1 -v ${BASE_DIR}:/src $2 -c timezone="US/Eastern" -c max_prepared_transactions=100
|
||||
docker run --env TIMESCALEDB_TELEMETRY=off --env POSTGRES_HOST_AUTH_METHOD=trust -d --name $1 -v ${BASE_DIR}:/src $2 -c timezone="GMT" -c max_prepared_transactions=100
|
||||
wait_for_pg $1
|
||||
}
|
||||
|
||||
docker_run_vol() {
|
||||
docker run --env TIMESCALEDB_TELEMETRY=off --env POSTGRES_HOST_AUTH_METHOD=trust -d --name $1 -v ${BASE_DIR}:/src -v $2 $3 -c timezone="US/Eastern" -c max_prepared_transactions=100
|
||||
docker run --env TIMESCALEDB_TELEMETRY=off --env POSTGRES_HOST_AUTH_METHOD=trust -d --name $1 -v ${BASE_DIR}:/src -v $2 $3 -c timezone="GMT" -c max_prepared_transactions=100
|
||||
wait_for_pg $1
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user