Add update test for PG13

This commit is contained in:
Sven Klemm 2021-03-15 01:26:36 +01:00 committed by Sven Klemm
parent 51b9505524
commit 72c6114c68
2 changed files with 19 additions and 1 deletions

View File

@ -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
View 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