]> git.mxchange.org Git - friendica-addons.git/blob - advancedcontentfilter/vendor/pimple/pimple/.travis.yml
"getUserNickname" is now "getLoggedInUserNickname"
[friendica-addons.git] / advancedcontentfilter / vendor / pimple / pimple / .travis.yml
1 language: php
2
3 env:
4   matrix:
5     - PIMPLE_EXT=no
6     - PIMPLE_EXT=yes
7   global:
8     - REPORT_EXIT_STATUS=1
9
10 php:
11   - 5.3
12   - 5.4
13   - 5.5
14   - 5.6
15   - 7.0
16   - 7.1
17
18 before_script:
19   - composer self-update
20   - COMPOSER_ROOT_VERSION=dev-master composer install
21   - if [ "$PIMPLE_EXT" == "yes" ]; then sh -c "cd ext/pimple && phpize && ./configure && make && sudo make install"; fi
22   - if [ "$PIMPLE_EXT" == "yes" ]; then echo "extension=pimple.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`; fi
23
24 script:
25   - cd ext/pimple
26   - if [ "$PIMPLE_EXT" == "yes" ]; then yes n | make test | tee output ; grep -E 'Tests failed +. +0' output; fi
27   - if [ "$PIMPLE_EXT" == "yes" ]; then export SYMFONY_DEPRECATIONS_HELPER=weak; fi
28   - cd ../..
29   - ./vendor/bin/simple-phpunit
30
31 matrix:
32   include:
33     - php: hhvm
34       dist: trusty
35       env: PIMPLE_EXT=no
36   exclude:
37     - php: 7.0
38       env: PIMPLE_EXT=yes
39     - php: 7.1
40       env: PIMPLE_EXT=yes