Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

don't run bldr install on Travis #399

Merged
merged 1 commit into from Mar 25, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 16 additions & 4 deletions .travis.yml
Expand Up @@ -9,21 +9,33 @@

language: php

php: [5.4, 5.5, hhvm-nightly]
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly

matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm-nightly
fast_finish: true

sudo: false

cache:
directories:
- $HOME/.composer/cache

env:
- GUSH_HOME=/tmp/gush GUSH_CACHE_DIR=/tmp/gush/cache

before_install:
# this is needed because something is broken in hhvm
- composer self-update
#- composer self-update
#- curl -sS http://bldr.io/installer | php
- php ./bldr.phar install

script:
- php ./bldr.phar run travis
Expand Down