Skip to content

Commit ff50f59

Browse files
committed
Update .travis.yml to RC2 version
1 parent 13a3db9 commit ff50f59

File tree

1 file changed

+33
-25
lines changed

1 file changed

+33
-25
lines changed

.travis.yml

Lines changed: 33 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,42 @@
11
language: php
2-
php:
3-
- 5.3.3
4-
- 5.3
5-
- 5.4
6-
- 5.5
7-
- 5.6
8-
- hhvm
2+
3+
matrix:
4+
include:
5+
- php: 5.3.3
6+
env: DB=mysqli
7+
- php: 5.3
8+
env: DB=mysqli # MyISAM
9+
- php: 5.4
10+
env: DB=mysqli
11+
- php: 5.4
12+
env: DB=mysql
13+
- php: 5.4
14+
env: DB=mariadb
15+
- php: 5.4
16+
env: DB=postgres
17+
- php: 5.4
18+
env: DB=sqlite3
19+
- php: 5.5
20+
env: DB=mysqli
21+
- php: 5.6
22+
env: DB=mysqli
23+
- php: hhvm
24+
env: DB=mysqli
25+
allow_failures:
26+
- php: hhvm
27+
fast_finish: true
928

1029
env:
1130
global:
12-
- EXTNAME="phpbbde/movemessage"
13-
- SNIFF="0"
14-
- PHPBB_BRANCH="ticket/12483" # - PHPBB_BRANCH="develop-ascraeus"
15-
matrix:
16-
- DB=mysql
31+
- EXTNAME="phpbbde/movemessage" # CHANGE name of the extension HERE
32+
- SNIFF="1" # Should we run code sniffer on your code?
33+
- IMAGE_ICC="1" # Should we run icc profile sniffer on your images?
34+
- PHPBB_BRANCH="develop-ascraeus"
1735

1836
branches:
1937
only:
2038
- master
39+
- develop
2140
- /^develop-.*$/
2241

2342
install:
@@ -30,17 +49,6 @@ before_script:
3049
- travis/setup-database.sh $DB $TRAVIS_PHP_VERSION
3150

3251
script:
33-
- sh -c "if [ '$SNIFF' != '0' ]; then travis/phing-sniff.sh $DB $TRAVIS_PHP_VERSION; fi"
52+
- sh -c "if [ '$SNIFF' != '0' ]; then travis/ext-sniff.sh $DB $TRAVIS_PHP_VERSION $EXTNAME; fi"
53+
- sh -c "if [ '$IMAGE_ICC' != '0' ]; then travis/check-image-icc-profiles.sh $DB $TRAVIS_PHP_VERSION; fi"
3454
- phpBB/vendor/bin/phpunit --configuration phpBB/ext/$EXTNAME/travis/phpunit-$DB-travis.xml --bootstrap ./tests/bootstrap.php
35-
36-
matrix:
37-
include:
38-
- php: 5.4
39-
env: DB=mariadb
40-
- php: 5.4
41-
env: DB=postgres
42-
- php: 5.4
43-
env: DB=sqlite3
44-
allow_failures:
45-
- php: hhvm
46-
fast_finish: true

0 commit comments

Comments
 (0)