annotate vendor/symfony-cmf/routing/.travis.yml @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 4c8ae668cc8c
children
rev   line source
Chris@0 1 language: php
Chris@0 2
Chris@0 3 php:
Chris@0 4 - 5.3
Chris@0 5 - 5.4
Chris@0 6 - 5.5
Chris@0 7 - 5.6
Chris@0 8 - 7.0
Chris@0 9 - hhvm
Chris@0 10
Chris@0 11 sudo: false
Chris@0 12
Chris@0 13 cache:
Chris@0 14 directories:
Chris@0 15 - $HOME/.composer/cache/files
Chris@0 16
Chris@0 17 env: SYMFONY_VERSION=2.8.*
Chris@0 18
Chris@0 19 matrix:
Chris@0 20 include:
Chris@0 21 - php: 5.6
Chris@0 22 env: DEPS=dev
Chris@0 23 - php: 5.3
Chris@0 24 env: COMPOSER_FLAGS="--prefer-lowest"
Chris@0 25 - php: 5.6
Chris@0 26 env: SYMFONY_VERSION=2.3.*
Chris@0 27 - php: 5.6
Chris@0 28 env: SYMFONY_VERSION=2.7.*
Chris@0 29 - php: 5.6
Chris@0 30 env: SYMFONY_VERSION=3.0.*
Chris@0 31 finish_fast: true
Chris@0 32
Chris@0 33 before_install:
Chris@0 34 - if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then echo "memory_limit = -1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
Chris@0 35 - phpenv config-rm xdebug.ini || true
Chris@0 36 - composer self-update
Chris@0 37 - if [ "$DEPS" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi
Chris@0 38 - if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
Chris@0 39
Chris@0 40 install: composer update --prefer-dist $COMPOSER_FLAGS
Chris@0 41
Chris@0 42 script: phpunit
Chris@0 43
Chris@0 44 notifications:
Chris@0 45 irc: "irc.freenode.org#symfony-cmf"
Chris@0 46 email: "symfony-cmf-devs@googlegroups.com"