From 340b5596fd64495411db982d9c0278c2bed9f6f6 Mon Sep 17 00:00:00 2001 From: Simon Wheatley Date: Mon, 21 Sep 2015 14:36:54 +0100 Subject: [PATCH 1/2] Travis config: Temporarily cut down on the amount of testing going on --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 312a4aa..e076604 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,9 @@ notifications: php: - 5.6 - - 5.3 - - 5.2 - - hhvm +# - 5.3 +# - 5.2 +# - hhvm env: # latest stable: From e1e8a252cb60539272b93c2efe7d53c5e3be5f66 Mon Sep 17 00:00:00 2001 From: Simon Wheatley Date: Mon, 21 Sep 2015 14:38:48 +0100 Subject: [PATCH 2/2] Travis config: Use `matrix` sections for environment variables. --- .travis.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index e076604..8f5f87a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,15 +12,11 @@ php: # - hhvm env: - # latest stable: - - WP_VERSION=latest WP_MULTISITE=0 - - WP_VERSION=latest WP_MULTISITE=1 - # previous stable: - - WP_VERSION=4.2.5 WP_MULTISITE=0 - - WP_VERSION=4.2.5 WP_MULTISITE=1 - # earliest supported: - - WP_VERSION=4.0.8 WP_MULTISITE=0 - - WP_VERSION=4.0.8 WP_MULTISITE=1 + matrix: + - WP_VERSION=latest # latest, obvs + - WP_VERSION=4.2.5 # penultimate version + - WP_VERSION=4.0.8 # earliest supported version + - WP_MULTISITE=0 install: - bash bin/install.sh