From bf09baf0d4f23d2b295ff5791ec611a38a3aebfe Mon Sep 17 00:00:00 2001 From: sv3tli0 Date: Tue, 29 Oct 2013 10:19:11 +0200 Subject: add travis php 5.5 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index ab0aa5616..4b745b786 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: php php: - 5.3 - 5.4 + - 5.5 env: - DB=mysql @@ -24,4 +25,4 @@ script: phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml branches: only: - develop - - /^feature\/.+$/ \ No newline at end of file + - /^feature\/.+$/ -- cgit v1.2.3-24-g4f1b From 2d5ebf754546f680879831f58b9236d8d53af8b5 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Tue, 29 Oct 2013 13:27:59 +0200 Subject: Update sess_time_to_update description (rel #2397) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 4b745b786..fa9d5e563 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,4 +25,4 @@ script: phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml branches: only: - develop - - /^feature\/.+$/ + - /^feature\/.+$/ \ No newline at end of file -- cgit v1.2.3-24-g4f1b From c75cb6981076dbe88db55250e6e5c9c7fbbb84e3 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Tue, 14 Jan 2014 10:29:36 -0800 Subject: Enable HHVM on travis-ci --- .travis.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index fa9d5e563..bc1361209 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ php: - 5.3 - 5.4 - 5.5 + - hhvm env: - DB=mysql -- cgit v1.2.3-24-g4f1b From 2e8ee6e5c4a4355d4330918b4a6a362e92956eae Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Tue, 14 Jan 2014 11:12:35 -0800 Subject: Dont break the build if tests only fail on HHVM --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index bc1361209..27fe3c670 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,10 @@ before_script: script: phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml +matrix: + allow_failures: + - php: hhvm + branches: only: - develop -- cgit v1.2.3-24-g4f1b From 8e93b79ece9828c9d43796ce66aec9ae82becd86 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Thu, 16 Jan 2014 10:59:31 -0800 Subject: Disable HHVM mysqli and pgsql tests mysqli and PostGre support isn't going to be in a good state for a while. --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 27fe3c670..718e6aaa6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,11 @@ script: phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml matrix: allow_failures: - php: hhvm + exclude: + - php: hhvm + env: DB=mysqli + env: DB=pgsql + env: DB=pdo/pgsql branches: only: -- cgit v1.2.3-24-g4f1b From d56ecf59c10e801814ace09f72285ee4dd1c63cb Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Tue, 11 Feb 2014 20:31:51 +0200 Subject: Add PHP 5.6 (currently alpha) to .travis.yml --- .travis.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 718e6aaa6..1d3562980 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ php: - 5.3 - 5.4 - 5.5 + - 5.6 - hhvm env: -- cgit v1.2.3-24-g4f1b From 839ee3a39d90cedccf1a4a89cc3c13b6917190f8 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Thu, 13 Feb 2014 15:32:26 +0200 Subject: Try to avoid 'zend_mm_heap corrupted' failures with phpunit --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 1d3562980..5085ba1f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ before_script: - sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'create database ci_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ] || [ '$DB' = 'mysqli' ] || [ '$DB' = 'pdo/mysql' ]; then mysql -e 'create database IF NOT EXISTS ci_test;'; fi" -script: phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml +script: phpunit -d zend.enable_gc=0 --coverage-text --configuration tests/travis/$DB.phpunit.xml matrix: allow_failures: -- cgit v1.2.3-24-g4f1b