mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
32 lines
456 B
YAML
32 lines
456 B
YAML
language: php
|
|
|
|
sudo: required
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
install:
|
|
- eval `ssh-agent -s`
|
|
- test/travis/setup-secure-shell.sh
|
|
- composer self-update
|
|
- composer install --no-interaction --prefer-source
|
|
|
|
script:
|
|
- phpunit
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/3ffa605389816ec39774
|
|
on_success: change
|
|
on_failure: always
|
|
on_start: never
|