1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-12 10:04:14 +02:00
pgbackrest/.travis.yml
2020-12-09 17:26:52 -05:00

37 lines
931 B
YAML

branches:
only:
- integration
- /-ci$/
- /-cit$/
os: linux
dist: bionic
language: c
jobs:
# Run unit tests that provide wide coverage on multiple architectures.
include:
# Valgrind is disabled due to some platform-specific issues in getpwuid() and getgrgid() that do not seem to be pgBackRest bugs.
- arch: ppc64le
env:
- PGB_CI="test --vm=none --param=no-coverage --param=module=command --param=module=storage --param=no-valgrind"
services:
- arch: arm64
env:
- PGB_CI="test --vm=none --param=no-coverage --param=module=command --param=module=storage"
services:
- arch: s390x
env:
- PGB_CI="test --vm=none --param=no-coverage --param=module=command --param=module=storage"
services:
install:
- umask 0022 && cd ~ && pwd && whoami && umask && groups
- df -Th && top -bn1
script:
- ${TRAVIS_BUILD_DIR?}/test/ci.pl ${PGB_CI?}