dfc2c3353d
Relates to https://github.com/shaarli/Shaarli/issues/970 Relates to https://github.com/shaarli/Shaarli/pull/912 See: - https://docs.travis-ci.com/user/reference/trusty/ - https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming Added: - print available locales before running tests Removed: - do not install extra language packs Signed-off-by: VirtualTam <virtualtam@flibidi.net>
19 lines
278 B
YAML
19 lines
278 B
YAML
sudo: false
|
|
dist: trusty
|
|
language: php
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
php:
|
|
- 7.1
|
|
- 7.0
|
|
- 5.6
|
|
- 5.5
|
|
install:
|
|
- composer self-update
|
|
- composer install --prefer-dist
|
|
script:
|
|
- locale -a
|
|
- make clean
|
|
- make check_permissions
|
|
- make all_tests
|