Skip to content
This repository has been archived by the owner on Mar 14, 2020. It is now read-only.

Commit

Permalink
Cleaned .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico Schoenmaker committed Jan 4, 2018
1 parent e6b94ca commit 4ae9688
Showing 1 changed file with 8 additions and 19 deletions.
27 changes: 8 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm

env:
global:
- PATH="$HOME/.composer/vendor/bin:$PATH"

sudo: false

Expand All @@ -20,28 +15,22 @@ cache:
matrix:
fast_finish: true
include:
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.3.*
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.8.*@dev
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION="3.0.x-dev as 2.8"
env: SYMFONY_VERSION="3.3.*"
- php: 5.6
env: SYMFONY_VERSION="3.4.*"
- php: 7.1
env: SYMFONY_VERSION="4.0.*"
allow_failures:
- php: nightly
- php: hhvm
- env: SYMFONY_VERSION=2.8.*@dev
- env: SYMFONY_VERSION="3.0.x-dev as 2.8"

before_script:
- composer selfupdate
- composer config -g github-oauth.github.com $GITHUB_OAUTH_TOKEN
- composer global require phpunit/phpunit:4.* --no-update
- composer global update --prefer-dist --no-interaction
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS

script: make test

0 comments on commit 4ae9688

Please sign in to comment.