From d90da12afc3cbe107b0535fb1271d2248bc214bd Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 26 May 2014 19:06:21 +0200 Subject: [ticket/12592] Add PHP 5.4 environment using mysql driver. PHPBB3-12592 --- travis/phpunit-mysql-travis.xml | 42 +++++++++++++++++++++++++++++++++++++++++ travis/setup-database.sh | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 travis/phpunit-mysql-travis.xml (limited to 'travis') diff --git a/travis/phpunit-mysql-travis.xml b/travis/phpunit-mysql-travis.xml new file mode 100644 index 0000000000..21122ccaeb --- /dev/null +++ b/travis/phpunit-mysql-travis.xml @@ -0,0 +1,42 @@ + + + + + ../tests + ../tests/functional + ../tests/lint_test.php + + + ../tests/functional + + + + + + slow + + + + + + + + + + + + + + + diff --git a/travis/setup-database.sh b/travis/setup-database.sh index 0b578d180c..8c19086191 100755 --- a/travis/setup-database.sh +++ b/travis/setup-database.sh @@ -20,7 +20,7 @@ then mysql -e 'SET GLOBAL storage_engine=MyISAM;' fi -if [ "$DB" == "mysqli" -o "$DB" == "mariadb" ] +if [ "$DB" == "mysql" -o "$DB" == "mysqli" -o "$DB" == "mariadb" ] then mysql -e 'create database IF NOT EXISTS phpbb_tests;' fi -- cgit v1.2.1