phpseclib/.travis.yml

36 lines
726 B
YAML
Raw Normal View History

language: php
2019-12-08 13:09:57 +00:00
dist: xenial
php:
- 5.6
- 7.0
2016-09-20 09:39:41 +00:00
- 7.1
2017-11-30 13:12:27 +00:00
- 7.2
2018-10-27 08:08:31 +00:00
- 7.3
2019-12-08 13:09:57 +00:00
- 7.4
2018-01-17 12:04:35 +00:00
- nightly
before_install: true
2019-02-25 04:10:37 +00:00
matrix:
allow_failures:
- php: nightly
install:
2017-09-06 03:42:06 +00:00
- wget http://ftp.gnu.org/gnu/parallel/parallel-20170822.tar.bz2
- tar -xvjf parallel*
- cd parallel*
- ./configure
- make
- sudo make install
- cd ..
- eval `ssh-agent -s`
- travis/setup-secure-shell.sh
2016-09-24 16:57:59 +00:00
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' -a `php -r "echo (int) version_compare(PHP_VERSION, '7.0', '<');"` = "1" ]; then travis/install-php-extensions.sh; fi"
- travis/setup-composer.sh
script:
2014-04-12 05:47:53 +00:00
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' ]; then vendor/bin/phing -f build/build.xml sniff; fi"
2014-03-03 01:10:01 +00:00
- travis/run-phpunit.sh