From 39569ccb96bf58d057f6fad556970e33e58eb851 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 18 Mar 2020 13:47:53 -0400 Subject: [PATCH] Go back to working build --- .travis.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7d9630a..ef2e3df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,13 @@ dist: xenial os: linux -arch: - - amd64 - - arm64 - - ppc64le +arch: amd64 language: php services: - - if: arch = amd64 - - [ mysql, postgresql ] - - if: arch != amd64 - - mysql + - mysql + - postgresql php: - 7.2 @@ -21,9 +16,8 @@ php: - nightly before_script: - - if: arch = amd64 - - psql -c 'DROP DATABASE IF EXISTS test;' -U postgres - - psql -c 'create database test;' -U postgres + - psql -c 'DROP DATABASE IF EXISTS test;' -U postgres + - psql -c 'create database test;' -U postgres - mysql -e 'create database IF NOT EXISTS test;' - composer install --ignore-platform-reqs @@ -34,10 +28,9 @@ script: - cd ../ after_script: - - wget https://scrutinizer-ci.com/ocular.phar - - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml + - wget https://scrutinizer-ci.com/ocular.phar + - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml jobs: allow_failures: - php: nightly - - arch: [arm64, ppc64le]