X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=.travis.yml;h=bf905e0597c0e7e14b6217817ab2031509a19702;hb=d0e773c105a78ab504f360256086f63690e3d420;hp=9dc2ef7789f25734e7edfd75a5744112d57f5553;hpb=9101bf588bc2a2537f91a62fca84cf52ab186f5d;p=lhc%2Fweb%2Fwiklou.git diff --git a/.travis.yml b/.travis.yml index 9dc2ef7789..bf905e0597 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,10 +13,6 @@ language: php # - Required for non-buggy xml library for XmlTypeCheck/UploadBaseTest (T75176). dist: trusty -git: - depth: 3 - quiet: true - # Cache NPM and Composer directories # cache: @@ -28,18 +24,10 @@ cache: matrix: fast_finish: true include: - # On Trusty, mysql user 'travis' doesn't have create database rights - # Postgres has no user called 'root'. - - env: dbtype=mysql dbuser=root - php: 7.3 - - env: dbtype=mysql dbuser=root - php: 7.2 - - env: dbtype=mysql dbuser=root - php: 7.1 - - env: dbtype=postgres dbuser=travis - php: 7.1 - - env: dbtype=mysql dbuser=root - php: 7 + - php: 7.3 + - php: 7.2 + - php: 7.1 + - php: 7 allow_failures: - php: 7.3 @@ -62,14 +50,15 @@ addons: - tidy before_script: + - echo 'opcache.enable_cli = 1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - composer install --prefer-source --quiet --no-interaction - - if [ "$dbtype" = postgres ]; then psql -c "CREATE DATABASE traviswiki WITH OWNER travis;" -U postgres; fi + # At Travis CI, the mysql user 'travis' doesn't have create database rights, use 'root' instead. - > php maintenance/install.php traviswiki admin --pass travis - --dbtype "$dbtype" + --dbtype "mysql" --dbname traviswiki - --dbuser "$dbuser" + --dbuser "root" --dbpass "" --scriptpath "/w" - echo -en "\n\nrequire_once __DIR__ . '/includes/DevelopmentSettings.php';\n" >> ./LocalSettings.php