Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-10-07 23:03:23 +0300
committerbrantje <brantje@gmail.com>2016-10-07 23:03:23 +0300
commit03bbd235f14259f7c5045aca4fbb7af16e1c98c4 (patch)
tree1ba9c0369abc435e2bdfda34d657a317ff6c263d /.travis.yml
parent3357c02da0a5e7567421c021894c67115629d76b (diff)
update travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml40
1 files changed, 36 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 1c838c6a..4bd045c1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,7 @@ env:
global:
- CORE_BRANCH=master
- APP_NAME=passman
-# matrix:
+ matrix:
- DB=mysql
branches:
only:
@@ -56,12 +56,44 @@ before_script:
script:
+ # Test the app
+ - sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' = '1' ]; then find . -name \*.php -exec php -l \"{}\" \;; fi"
+ - cd ../../
+ - sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' = '1' ]; then ./occ app:check-code $APP_NAME -c private -c strong-comparison; fi"
+ - sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' = '2' ]; then ./occ app:check-code $APP_NAME -c deprecation; fi"
+ - cd apps/$APP_NAME/
+
+ #- php build/phpunit.phar -c phpunit.xml
+
+ # Create coverage report
+ #- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' != '1' -a '$CODECHECK' != '2' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"
+ #- sh -c "if [ '$JSTESTS' != '1' -a '$CODECHECK' != '1' -a '$CODECHECK' != '2' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi"
+ #- cd ../
+
- grunt jshint
-# - php build/phpunit.phar -c phpunit.xml
-# - php build/phpunit.phar -c phpunit.integration.xml
+
#after_failure:
# - cat ../../data/owncloud.log
addons:
- firefox: "latest" \ No newline at end of file
+ firefox: "latest"
+
+matrix:
+ include:
+ - php: 5.6
+ env: DB=mysql
+ - php: 5.6
+ env: DB=pgsql
+ - php: 5.6
+ env: DB=mysql;CODECHECK=1
+ - php: 5.6
+ env: DB=mysql;CODECHECK=2
+ - php: 5.6
+ env: DB=mysql;JSTESTS=1
+ - php: 7.0
+ env: DB=mysql;CODECHECK=1
+ - php: 7.0
+ env: DB=mysql;CODECHECK=2
+ allow_failures:
+ - env: DB=mysql;CODECHECK=2 \ No newline at end of file