diff options
author | Ferenc Kovacs <tyrael@php.net> | 2015-10-19 22:47:23 +0200 |
---|---|---|
committer | Ferenc Kovacs <tyrael@php.net> | 2015-10-19 22:47:23 +0200 |
commit | 395ef4efb72aab6a660612be4632794f00991d85 (patch) | |
tree | 0ca7d83cf49160e0c870f5290c3a445d95801f05 /.travis.yml | |
parent | 0b35e0c5a120c9ff98dad7e44259f26ca828a8e4 (diff) | |
parent | f3838a9c3561022cfeeb649093e4fdec715d39b0 (diff) | |
download | php-git-395ef4efb72aab6a660612be4632794f00991d85.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
fixup, both catched by nikic
use another character device in this test as /dev/console seems that it is different for lxc containers
the de_DE(iso-8859-1) locale is not available on ubuntu by default, but there is no reason to require that over the utf-8 one
let's try running our testsuite without sudo
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 658548b9af..c13009a983 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,19 @@ language: c +sudo: false +addons: + apt: + packages: + - locales + - language-pack-de + - re2c + - libgmp-dev + - libicu-dev + - libmcrypt-dev + - libtidy-dev + - libenchant-dev + - libaspell-dev + - libpspell-dev + - librecode-dev notifications: email: @@ -27,13 +42,6 @@ env: - ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=0 - ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1 -before_install: - - sudo apt-get update -qq - - sudo apt-get install -y libenchant-dev libaspell-dev libpspell-dev librecode-dev - - sudo cp ./travis/de /var/lib/locales/supported.d/de - - sudo dpkg-reconfigure locales - - ./travis/install.sh - before_script: # Compile PHP - ./travis/compile.sh |