summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/wrap/.travis.yml
blob: a73697f9c1a0d4f426b38b2a2ba9e0d52e58eaa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: php
php:
  - "7.2"
  - "7.1"
  - "7.0"
  - "5.6"
env:
  - DOKUWIKI=master
  - DOKUWIKI=stable
  - DOKUWIKI=old-stable
before_install: wget https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh
install: sh travis.sh
before_script:
  - wget https://phar.phpunit.de/phpunit-5.7.phar
  - cd _test
script:
  - if [ "$DOKUWIKI" != "old-stable" ]; then phpunit --stderr --group plugin_wrap; fi
  - if [ "$DOKUWIKI" = "old-stable" ]; then php ../phpunit-5.7.phar --stderr --group plugin_wrap; fi