aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-03 23:21:02 +0200
committerThomas Citharel <tcit@tcit.fr>2016-10-03 23:21:02 +0200
commit5759c9aac1f13f2776319c3f249acb4c97ea14d8 (patch)
tree038470c30251952e26a1a921dffeca40ce6113ff /.travis.yml
parenta494c33ef7e574e68ab5bb83d0bdbd67348af0ef (diff)
downloadwallabag-5759c9aac1f13f2776319c3f249acb4c97ea14d8.tar.gz
wallabag-5759c9aac1f13f2776319c3f249acb4c97ea14d8.tar.zst
wallabag-5759c9aac1f13f2776319c3f249acb4c97ea14d8.zip
remove install scripts and tweak travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index b0b26b56..9973bcae 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -91,8 +91,9 @@ before_install:
91 - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; 91 - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi;
92 92
93script: 93script:
94 - travis_wait bash install_dev.sh 94 - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist
95 - ant prepare-$DB 95 - ant prepare-$DB
96 - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then phpunit -v ; fi; 96 - if [[ $VALIDATE_TRANSLATION_FILE = '' || $ASSETS = '' ]]; then phpunit -v ; fi;
97 - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi; 97 - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi;
98 - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; 98 - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi;
99 - if [[ $ASSETS = build ]]; then node_modules/grunt-cli/bin/grunt ; fi;