Skip to content

Commit

Permalink
Updated tests to add back PHP 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-miller-rakuten committed Apr 4, 2018
1 parent b80ee13 commit 4e4e14e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis/clean.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for version in '5.6' '7.1' '7.2';
for version in '5.6' '7.0' '7.1' '7.2';
do
brew unlink php@$version;
done
2 changes: 2 additions & 0 deletions .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
brew update
brew install [email protected]
brew unlink [email protected]
brew install [email protected]
brew unlink [email protected]
brew install [email protected]
brew unlink [email protected]
brew install [email protected]
Expand Down
2 changes: 1 addition & 1 deletion .travis/test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

error=0
for version in '5.6' '7.1' '7.2'
for version in '5.6' '7.0' '7.1' '7.2'
do
. `echo $(dirname $0)"/../phpswitch.sh"` $version -s > /dev/null
switched=$(php -v | grep -e '^PHP' | cut -d' ' -f2 | cut -d. -f1,2)
Expand Down

0 comments on commit 4e4e14e

Please sign in to comment.