From 558fa486b84afccdaa18fe8f9759bf069359f61d Mon Sep 17 00:00:00 2001 From: Robbie Averill Date: Thu, 15 Jun 2017 10:58:13 +1200 Subject: [PATCH] Add PHP7 + SS3.6 build to Travis configuration --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 303e94c..1f6883f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details +# See https://github.com/silverstripe/silverstripe-travis-support for setup details language: php @@ -7,10 +7,9 @@ sudo: false php: - 5.4 - 5.5 - - 5.6 env: - - DB=MYSQL CORE_RELEASE=3.2 + - DB=MYSQL CORE_RELEASE=3.5 matrix: include: @@ -22,10 +21,12 @@ matrix: env: DB=MYSQL CORE_RELEASE=3.3 SUBSITES=1 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3.3 QUEUEDJOBS=1 + - php: 7.1 + env: DB=MYSQL CORE_RELEASE=3.6 before_script: - composer self-update || true - - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support + - git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support - "if [ \"$SUBSITES\" = \"\" -a \"$QUEUEDJOBS\" = \"\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss; fi" - "if [ \"$SUBSITES\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/subsites; fi" - "if [ \"$QUEUEDJOBS\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/queuedjobs; fi"