2014-11-28 09:11:06 +00:00
|
|
|
language: php
|
2018-06-25 21:53:22 +01:00
|
|
|
dist: trusty
|
2017-06-28 22:00:51 +01:00
|
|
|
sudo: false
|
|
|
|
|
2018-06-18 10:29:36 +01:00
|
|
|
branches:
|
|
|
|
except:
|
2018-10-18 23:21:33 +01:00
|
|
|
- l10n_2.3
|
|
|
|
- l10n_2.4
|
2018-06-18 10:29:36 +01:00
|
|
|
|
2016-08-13 17:04:51 +01:00
|
|
|
before_install:
|
|
|
|
- cp .env.example .env
|
2016-08-08 17:32:23 +01:00
|
|
|
|
2018-10-18 23:13:12 +01:00
|
|
|
install:
|
|
|
|
- travis_retry composer install --no-interaction --no-suggest
|
2015-01-03 23:11:50 +00:00
|
|
|
|
2018-10-18 23:13:12 +01:00
|
|
|
jobs:
|
|
|
|
include:
|
2019-08-14 07:38:59 +01:00
|
|
|
# - stage: Security check
|
|
|
|
# script:
|
|
|
|
# - phpenv config-rm xdebug.ini || true
|
|
|
|
# - wget https://get.sensiolabs.org/security-checker.phar
|
|
|
|
# - php security-checker.phar security:check ./composer.lock
|
|
|
|
# php: 7.1
|
2018-10-18 23:13:12 +01:00
|
|
|
- stage: Unit tests
|
2018-11-14 21:33:32 +00:00
|
|
|
script:
|
|
|
|
- phpenv config-rm xdebug.ini || true
|
|
|
|
- vendor/bin/phpunit
|
2018-10-18 23:13:12 +01:00
|
|
|
php: 7.1
|
|
|
|
- stage: Unit tests
|
2018-11-14 21:33:32 +00:00
|
|
|
script:
|
|
|
|
- phpenv config-rm xdebug.ini || true
|
|
|
|
- vendor/bin/phpunit
|
2018-10-18 23:13:12 +01:00
|
|
|
php: 7.2
|
2018-10-18 23:21:00 +01:00
|
|
|
- stage: Unit tests
|
2018-11-14 21:33:32 +00:00
|
|
|
script:
|
|
|
|
- phpenv config-rm xdebug.ini || true
|
|
|
|
- vendor/bin/phpunit
|
2018-10-18 23:21:00 +01:00
|
|
|
php: 7.3
|