From 4d8c36715ddd67c11d1ab166dcd0b4850631d83d Mon Sep 17 00:00:00 2001 From: David Steele Date: Fri, 6 May 2022 19:44:46 -0400 Subject: [PATCH] Remove legacy Travis-CI configuration. Travis-CI is now strictly a paid service. Multiple attempts to use their "free" service have failed due to lack of community credit and general issues with their plugin. Remove the configuration so it does not appear we are testing on Travis-CI. --- .travis.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 108a9923f..000000000 --- a/.travis.yml +++ /dev/null @@ -1,36 +0,0 @@ -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?}