diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-03-24 21:42:06 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-03-24 21:42:06 +0100 |
commit | ca8fa036597578f8782a3f8678029e8b151d01d3 (patch) | |
tree | 94c92889da2b3e360b794a054360f6ae2572e749 | |
parent | 574a9f4f2aa8f11c2ad27778c8f874d4fb896e9f (diff) | |
download | forums-ca8fa036597578f8782a3f8678029e8b151d01d3.tar forums-ca8fa036597578f8782a3f8678029e8b151d01d3.tar.gz forums-ca8fa036597578f8782a3f8678029e8b151d01d3.tar.bz2 forums-ca8fa036597578f8782a3f8678029e8b151d01d3.tar.xz forums-ca8fa036597578f8782a3f8678029e8b151d01d3.zip |
[ticket/12257] Use MyISAM in PHP 5.3 environment such that FULLTEXT tests run.
PHPBB3-12257
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 1e5f453c76..6915ba4304 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ before_script: - sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'DROP DATABASE IF EXISTS phpbb_tests;' -U postgres; fi" - sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database phpbb_tests;' -U postgres; fi" - sh -c "if [ '$DB' = 'mariadb' ]; then travis/setup-mariadb.sh; fi" + - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.3' -a '$DB' = 'mysql' ]; then mysql -e 'SET GLOBAL storage_engine=MyISAM;'; fi" - sh -c "if [ '$DB' = 'mysql' -o '$DB' = 'mariadb' ]; then mysql -e 'create database IF NOT EXISTS phpbb_tests;'; fi" - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then pear install --force phpunit/DbUnit; phpenv rehash; fi" - cd phpBB |