1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-11-28 09:33:54 +02:00
pg_probackup/.travis.yml

57 lines
1.7 KiB
YAML
Raw Normal View History

2020-04-01 14:48:51 +02:00
os: linux
dist: bionic
language: c
2016-09-15 23:26:02 +02:00
services:
2020-04-01 14:48:51 +02:00
- docker
before_install:
- cp travis/* .
install:
- ./make_dockerfile.sh
- docker-compose build
2016-09-15 23:26:02 +02:00
script:
2020-04-01 14:48:51 +02:00
- docker-compose run tests
# - docker-compose run $(bash <(curl -s https://codecov.io/env)) tests
# - docker run -v $(pwd):/tests --rm centos:7 /tests/travis/backup_restore.sh
notifications:
email:
on_success: change
on_failure: always
# Default MODE is basic, i.e. all tests with PG_PROBACKUP_TEST_BASIC=ON
env:
- PG_VERSION=14 PG_BRANCH=REL_14_STABLE
2021-06-18 09:38:15 +02:00
- PG_VERSION=13 PG_BRANCH=REL_13_STABLE
2020-04-01 14:48:51 +02:00
- PG_VERSION=12 PG_BRANCH=REL_12_STABLE
- PG_VERSION=11 PG_BRANCH=REL_11_STABLE
- PG_VERSION=10 PG_BRANCH=REL_10_STABLE
- PG_VERSION=9.6 PG_BRANCH=REL9_6_STABLE
2020-04-06 17:11:02 +02:00
- PG_VERSION=9.5 PG_BRANCH=REL9_5_STABLE
2021-06-17 20:59:04 +02:00
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=archive
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=backup
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=compression
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=delta
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=locking
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=merge
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=page
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=replica
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=retention
# - PG_VERSION=12 PG_BRANCH=REL_12_STABLE MODE=restore
- PG_VERSION=15 PG_BRANCH=master
2020-04-01 14:48:51 +02:00
jobs:
allow_failures:
- env: PG_BRANCH=master
# - if: env(MODE) IN (archive, backup, delta, locking, merge, replica, retention, restore)
# Only run CI for master branch commits to limit our travis usage
#branches:
# only:
# - master