2016-05-22 15:09:00 +00:00
|
|
|
language: php
|
|
|
|
sudo: false
|
2019-07-27 06:19:01 +00:00
|
|
|
# only needed for PHP 5.5 support as of 2019-07
|
|
|
|
dist: trusty
|
2016-05-22 15:09:00 +00:00
|
|
|
php:
|
2017-02-12 14:03:08 +00:00
|
|
|
- '5.5'
|
|
|
|
- '5.6'
|
|
|
|
- '7.0'
|
|
|
|
- '7.1'
|
2017-12-03 14:39:05 +00:00
|
|
|
- '7.2'
|
2019-02-23 06:20:34 +00:00
|
|
|
- '7.3'
|
2017-02-12 13:57:20 +00:00
|
|
|
|
2019-02-23 06:20:34 +00:00
|
|
|
# as this is a php project, node.js (for JS unit testing) isn't installed
|
2017-02-12 13:57:20 +00:00
|
|
|
install:
|
2019-02-23 06:20:34 +00:00
|
|
|
- if [ ! -d "$HOME/.nvm" ]; then mkdir -p $HOME/.nvm && curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | NVM_METHOD=script bash; fi
|
2018-09-01 17:42:22 +00:00
|
|
|
- source ~/.nvm/nvm.sh && nvm install --lts
|
2016-07-05 15:01:26 +00:00
|
|
|
|
|
|
|
before_script:
|
2019-09-22 20:04:17 +00:00
|
|
|
- rm composer.lock
|
2016-07-05 15:52:32 +00:00
|
|
|
- composer install -n
|
2017-02-12 13:30:41 +00:00
|
|
|
- npm install -g mocha
|
2018-09-01 17:42:22 +00:00
|
|
|
- cd js && npm install
|
2016-07-05 15:01:26 +00:00
|
|
|
|
2016-05-22 15:09:00 +00:00
|
|
|
script:
|
2018-01-02 08:38:28 +00:00
|
|
|
- mocha
|
|
|
|
- cd ../tst && ../vendor/bin/phpunit
|
2016-07-05 15:01:26 +00:00
|
|
|
|
|
|
|
after_script:
|
2018-01-02 08:38:28 +00:00
|
|
|
- ../vendor/bin/test-reporter --coverage-report log/coverage-clover.xml
|
2018-01-06 07:19:00 +00:00
|
|
|
- cd .. && vendor/bin/codacycoverage clover tst/log/coverage-clover.xml
|
2018-01-01 08:31:48 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.composer/cache/files
|
|
|
|
- $HOME/.composer/cache/vcs
|
2018-01-02 06:14:58 +00:00
|
|
|
- $HOME/.nvm
|
2018-01-01 08:31:48 +00:00
|
|
|
- $HOME/.npm
|
|
|
|
- js/node_modules
|