Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8180615

Browse files
authored
Merge pull request #57 from ikari7789/bugfix/fix-tests
Install initial packages via TravisCI
2 parents 99532fc + df9945b commit 8180615

File tree

4 files changed

+11
-24
lines changed

4 files changed

+11
-24
lines changed

.travis.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
language: bash
22
os: osx
3-
osx_image: xcode7.3
3+
osx_image: xcode9.4
44

5-
install:
6-
- ./.travis/install.sh
5+
addons:
6+
homebrew:
7+
packages:
8+
9+
10+
11+
12+
update: true
713

814
script:
915
- ./.travis/clean.sh

.travis/clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

3-
for version in '5.6' '7.0' '7.1' '7.2'; do
3+
for version in '5.6' '7.1' '7.2' '7.3'; do
44
brew unlink php@$version
55
done

.travis/install.sh

Lines changed: 0 additions & 19 deletions
This file was deleted.

.travis/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
error=0
4-
for version in '5.6' '7.0' '7.1' '7.2' '7.3'; do
4+
for version in '5.6' '7.1' '7.2' '7.3'; do
55
. `echo $(dirname $0)"/../phpswitch.sh"` $version -s > /dev/null
66
switched=$(php -v | grep -e '^PHP' | cut -d' ' -f2 | cut -d. -f1,2)
77
if [ "$version" != "$switched" ]; then

0 commit comments

Comments
 (0)