Skip to content
Snippets Groups Projects
  • Christian Kuhn's avatar
    [TASK] Move UnitTests.xml file to EXT:core/Build · 2e6046eb
    Christian Kuhn authored
    This was decided at the latest release manager meeting:
    To get rid of the top level tests/ directory, the UnitTests.xml
    file is moved to the core extension to a new folder Build/. This
    directory will later be used for other build specific things.
    
    Change-Id: Id541f1e0bab3b1d2891f13697f48ea16e6c86d5e
    Resolves: #40837
    Releases: 6.0
    Reviewed-on: http://review.typo3.org/14528
    Reviewed-by: Christian Kuhn
    Tested-by: Christian Kuhn
    2e6046eb
.travis.yml 1.48 KiB
language: php
php:
  - 5.3
  - 5.4

env:
  - DB=mysql

branches:
  only:
    - master

before_script:
# Install build dependencies
  - git clone git://github.com/typo3-ci/TYPO3-Travis-Integration.git build-environment
  - source build-environment/install-helper.sh
  - installPhpModule igbinary
  - installPhpModule -y memcache
  - installPhpModule redis
  - if [[ "$TRAVIS_PHP_VERSION" == "5.3" ]]; then installPhpModule -y apc; fi

# Install rudimentary TYPO3
  - git clone git://git.typo3.org/TYPO3v4/Distributions/Introduction.git build-environment/Introduction
  - mv build-environment/typo3conf .
  - git clone git://git.typo3.org/TYPO3v4/Extensions/phpunit.git typo3conf/ext/phpunit/
  - mkdir fileadmin
  - if [[ "$DB" == "mysql" ]]; then mysql -e "DROP DATABASE IF EXISTS typo3_test;" -uroot; fi
  - if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS typo3_test;" -uroot; fi
  - if [[ "$DB" == "mysql" ]]; then mysql -uroot typo3_test < build-environment/Introduction/typo3conf/ext/introduction/Resources/Private/Subpackages/Introduction/Database/introduction.sql; fi
  - if [[ "$DB" == "mysql" ]]; then mysql -uroot typo3_test < build-environment/dbimport/cache_tables.sql; fi
  - if [[ "$DB" == "mysql" ]]; then mysql -uroot typo3_test < build-environment/dbimport/cli_users.sql; fi
  - if [[ "$DB" == "mysql" ]]; then mysql -uroot typo3_test < build-environment/dbimport/phpunit.sql; fi

script: php $PWD/typo3/cli_dispatch.phpsh phpunit -c typo3/sysext/core/Build/UnitTests.xml