1
0
mirror of https://github.com/danog/phpseclib.git synced 2025-01-18 19:22:14 +01:00
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 11:39:41 +02:00
- 7.1
2017-11-30 07:12:27 -06:00
- 7.2
2018-10-27 11:08:31 +03:00
- 7.3
2019-12-08 13:09:57 +00:00
- 7.4
2018-01-17 14:04:35 +02:00
- nightly
before_install: true
2019-02-24 22:10:37 -06:00
matrix:
allow_failures:
- php: nightly
install:
2017-09-05 22:42:06 -05: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 11:57:59 -05: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 07:47:53 +02:00
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' ]; then vendor/bin/phing -f build/build.xml sniff; fi"
2014-03-03 02:10:01 +01:00
- travis/run-phpunit.sh