Skip to content

Commit

Permalink
Merge pull request #7792 from mrclay/fix_travis
Browse files Browse the repository at this point in the history
fix(travis): eliminates composer install failures
  • Loading branch information
mrclay committed Jan 18, 2015
2 parents 8b3f1e7 + f96ea17 commit f5a0a16
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Expand Up @@ -19,6 +19,7 @@ matrix:
env: VARIA=true
install:
- phpenv rehash
- composer self-update
- composer install
- wget https://scrutinizer-ci.com/ocular.phar
script:
Expand Down Expand Up @@ -56,6 +57,7 @@ matrix:
- php: 5.6
env: E2E=true
install:
- composer self-update
- composer install
- mysql -e 'create database elgg;'
- echo "USE mysql; UPDATE user SET password=PASSWORD('password') WHERE user='root'; FLUSH PRIVILEGES;" | mysql -u root
Expand All @@ -69,7 +71,8 @@ matrix:
services:
- mysql

install:
install:
- composer self-update
- composer install
- mysql -e 'create database elgg;'
- echo "USE mysql; UPDATE user SET password=PASSWORD('password') WHERE user='root'; FLUSH PRIVILEGES;" | mysql -u root
Expand Down

0 comments on commit f5a0a16

Please sign in to comment.