From 018020ac64f66f2d3c8a32e8576602a9e77c4c11 Mon Sep 17 00:00:00 2001 From: Ole Fredrik Lie Date: Thu, 16 Mar 2017 20:50:14 +0100 Subject: [PATCH] Update PHP versions to use in Travis CI Build Checks --- .travis.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index a029c714f..ffc678086 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,14 +10,10 @@ language: php # Declare versions of PHP to use. Use one decimal max. php: - # aliased to a recent 5.5.x version - - "5.5" - # aliased to a recent 5.4.x version - - "5.4" - # aliased to a recent 5.3.x version - - "5.3" - # Current $required_php_version for WordPress: 5.2.4 - - "5.2" + # aliased to a recent 7.1.x version + - "7.1" + # aliased to a recent 7.0.x version + - "7.0" # Declare which versions of WordPress to test against. # Also declare whether or not to test in Multisite. @@ -35,15 +31,15 @@ env: - WP_VERSION=4.1 WP_MULTISITE=0 - WP_VERSION=4.1 WP_MULTISITE=1 -# Declare 5.6 beta in test matrix. +# Declare 7.1 beta in test matrix. # @link https://buddypress.trac.wordpress.org/ticket/5620 # @link http://docs.travis-ci.com/user/build-configuration/ matrix: include: - - php: 5.6 + - php: 7.1 env: WP_VERSION=master allow_failures: - - php: 5.6 + - php: 7.1 fast_finish: true # Use this to prepare the system to install prerequisites or dependencies.