mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
4f9357c792
Update .travis.yml
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
language: php
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
# faster builds on new travis setup not using sudo
|
|
sudo: false
|
|
|
|
# cache vendor dirs
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
services: mysql
|
|
|
|
before_install:
|
|
- echo "extension=ldap.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
|
|
install:
|
|
- travis_retry composer self-update && composer --version
|
|
- travis_retry composer global require "fxp/composer-asset-plugin:~1.1.0"
|
|
- export PATH="$HOME/.composer/vendor/bin:$PATH"
|
|
- travis_retry composer install --dev --prefer-dist --no-interaction
|
|
- travis_retry composer global require "codeception/codeception=2.0.*" "codeception/specify=*" "codeception/verify=*"
|
|
|
|
- |
|
|
mysql -e 'CREATE DATABASE `humhub_test` CHARACTER SET utf8 COLLATE utf8_general_ci;'
|
|
cd protected/humhub/tests/codeception/bin
|
|
php yii migrate/up --includeModuleMigrations=1 --interactive=0
|
|
php yii installer/auto
|
|
cd ../../../../..
|
|
cd protected/humhub/tests
|
|
codecept build
|
|
cd ../../../
|
|
|
|
script:
|
|
- |
|
|
php -S localhost:8080 > /dev/null 2>&1 &
|
|
cd protected/humhub/tests/
|
|
codecept run
|