mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-17 02:53:51 +08:00
Add update test for PG13
This commit is contained in:
parent
51b9505524
commit
72c6114c68
4
.github/workflows/update-test.yaml
vendored
4
.github/workflows/update-test.yaml
vendored
@ -13,13 +13,15 @@ jobs:
|
||||
runs-on: 'ubuntu-18.04'
|
||||
strategy:
|
||||
matrix:
|
||||
pg: ["11.11","12.6"]
|
||||
pg: ["11.11","12.6","13.2"]
|
||||
opt: ["", "-r"]
|
||||
include:
|
||||
- pg: 11.11
|
||||
pg_major: 11
|
||||
- pg: 12.6
|
||||
pg_major: 12
|
||||
- pg: 13.2
|
||||
pg_major: 13
|
||||
- opt: "-r"
|
||||
kind: "with repair test"
|
||||
fail-fast: false
|
||||
|
16
scripts/test_updates_pg13.sh
Executable file
16
scripts/test_updates_pg13.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -o pipefail
|
||||
|
||||
SCRIPT_DIR=$(dirname $0)
|
||||
echo $SCRIPT_DIR
|
||||
|
||||
TAGS="2.1.0-pg13"
|
||||
TEST_VERSION="v7"
|
||||
|
||||
TAGS=$TAGS TEST_VERSION=$TEST_VERSION bash ${SCRIPT_DIR}/test_updates.sh "$@"
|
||||
EXIT_CODE=$?
|
||||
if [ $EXIT_CODE -ne 0 ]; then
|
||||
exit $EXIT_CODE
|
||||
fi
|
Loading…
x
Reference in New Issue
Block a user