diff --git a/.github/workflows/cron-tests.yaml b/.github/workflows/cron-tests.yaml index 633fb616dea..985d99eb174 100644 --- a/.github/workflows/cron-tests.yaml +++ b/.github/workflows/cron-tests.yaml @@ -4,6 +4,8 @@ name: Additional tests branches: - main - prerelease_test + - trigger/additional_tests + jobs: config: runs-on: ubuntu-latest diff --git a/scripts/test_restore_points.sh b/scripts/test_restore_points.sh index f33a7e0f169..6cdbdf37078 100755 --- a/scripts/test_restore_points.sh +++ b/scripts/test_restore_points.sh @@ -297,6 +297,11 @@ if [ ${PG_VERSION_MAJOR} -lt 13 ]; then exit 1 fi +if [ ${PG_VERSION_MAJOR} -ge 16 ]; then + echo "Multi-node is currently not supported on PG >= 16" + exit 0 +fi + mkdir -p ${RESULT_DIR} echo "Running single node tests"