language: php
-php:
- - 5.3
- - 5.4
- - 5.5
+matrix:
+ fast_finish: true
-env:
- - DB=mysql UNITTESTS=1
- - DB=none FUNCTIONALTESTS=1
- - DB=none PHPLINT=1
+ include:
+ - php: 7
-notifications:
- irc:
- - "irc.freenode.net#typo3-cms"
- email:
- - typo3-team-core@lists.typo3.org
-
-services:
- - memcached
+sudo: required
-before_script:
- - sudo apt-get update && sudo apt-get install git
- - git clone --single-branch --branch master --depth 1 git://github.com/typo3-ci/TYPO3-Travis-Integration.git build-environment
- - source build-environment/install-helper.sh
+addons:
+ apt:
+ packages:
+ - language-pack-de
+ sonarcloud:
+ organization: "typo3"
- - >
- if [[ "$UNITTESTS" == "1" ]]; then
- if [[ "$TRAVIS_PHP_VERSION" == "5.3" ]]; then
- installPhpModule -y apc;
- fi
- if [[ "$TRAVIS_PHP_VERSION" != "5.5" ]]; then
- installPhpModule igbinary
- fi
- installPhpModule -y memcache
- installPhpModule redis
- mv build-environment/typo3conf .
- git clone --single-branch --branch master --depth 1 git://git.typo3.org/TYPO3CMS/Extensions/phpunit.git typo3conf/ext/phpunit/
- mkdir fileadmin
- mkdir uploads
- mkdir typo3temp
- fi
+jdk:
+ - oraclejdk8
- - >
- if [[ "$FUNCTIONALTESTS" == "1" ]]; then
- mv build-environment/typo3conf .
- git clone --single-branch --branch master --depth 1 git://git.typo3.org/TYPO3CMS/Extensions/phpunit.git typo3conf/ext/phpunit/
- mkdir typo3temp
- fi
+cache:
+ directories:
+ - $HOME/.sonar/cache
- - >
- if [[ "$DB" == "mysql" ]]; then
- mysql -e "DROP DATABASE IF EXISTS typo3_test;" -uroot
- mysql -e "CREATE DATABASE IF NOT EXISTS typo3_test;" -uroot
- php build-environment/dbimport/DatabaseImport.php
- mysql -uroot typo3_test < build-environment/dbimport/cli_users.sql
- fi
+notifications:
+ slack:
+ rooms:
+ secure: nHWVTPyG3CQWIcYA1LASS11dD0/NBcmrAyr3xxQW0XYtH47ZUKRlEtxrVLuL7ptciNwMbfZgsiRQ1QGWDerHUlBkg0iwRxpUZgeylzWaiXsHFVAp2IBfEX54KrWeYm9gewIBDDtnp+sLgpXGgmpIs2bAGkZe5129UsUExoWh0+g=
+ on_success: change
+ on_failure: always
+ webhooks:
+ urls:
+ - http://www.t3bot.de/hooks/travis/index.php
+ on_success: always
+ on_failure: always
+ on_start: never
script:
- - >
- if [[ "$PHPLINT" == "1" ]]; then
- phpLint all
- elif [[ "$UNITTESTS" == "1" ]]; then
- ./typo3conf/ext/phpunit/Composer/vendor/bin/phpunit -c typo3/sysext/core/Build/UnitTests.xml
- elif [[ "$FUNCTIONALTESTS" == "1" ]]; then
- ./typo3conf/ext/phpunit/Composer/vendor/bin/phpunit -c typo3/sysext/core/Build/FunctionalTests.xml
- else
- exit 1
- fi
+ - sonar-scanner -Dproject.settings=Build/.sonar-project.properties