10 - DB=none FUNCTIONALTESTS=1
15 - "irc.freenode.net#typo3-cms"
17 - typo3-team-core@lists.typo3.org
23 - sudo apt-get update && sudo apt-get install git
24 - git clone --single-branch --branch master --depth 1 git://github.com/typo3-ci/TYPO3-Travis-Integration.git build-environment
25 - source build-environment/install-helper.sh
28 if [[ "$UNITTESTS" == "1" ]]; then
29 if [[ "$TRAVIS_PHP_VERSION" == "5.3" ]]; then
30 installPhpModule -y apc;
32 if [[ "$TRAVIS_PHP_VERSION" != "5.5" ]]; then
33 installPhpModule igbinary
35 installPhpModule -y memcache
36 installPhpModule redis
37 mv build-environment/typo3conf .
38 git clone --single-branch --branch master --depth 1 git://git.typo3.org/TYPO3v4/Extensions/phpunit.git typo3conf/ext/phpunit/
45 if [[ "$FUNCTIONALTESTS" == "1" ]]; then
46 mv build-environment/typo3conf .
47 git clone --single-branch --branch master --depth 1 git://git.typo3.org/TYPO3v4/Extensions/phpunit.git typo3conf/ext/phpunit/
52 if [[ "$DB" == "mysql" ]]; then
53 mysql -e "DROP DATABASE IF EXISTS typo3_test;" -uroot
54 mysql -e "CREATE DATABASE IF NOT EXISTS typo3_test;" -uroot
55 php build-environment/dbimport/DatabaseImport.php
56 mysql -uroot typo3_test < build-environment/dbimport/cli_users.sql
61 if [[ "$PHPLINT" == "1" ]]; then
63 elif [[ "$UNITTESTS" == "1" ]]; then
64 ./typo3conf/ext/phpunit/Composer/vendor/bin/phpunit -c typo3/sysext/core/Build/UnitTests.xml
65 elif [[ "$FUNCTIONALTESTS" == "1" ]]; then
66 ./typo3conf/ext/phpunit/Composer/vendor/bin/phpunit -c typo3/sysext/core/Build/FunctionalTests.xml