aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-03 15:33:08 +0200
committerGitHub <noreply@github.com>2016-10-03 15:33:08 +0200
commit24add95e9eaa1211655aff6d3d06c30e94252bcc (patch)
tree59fde27b0ec839434b725a276743027672efefd1 /.travis.yml
parent9d3603147b0a4219a8065861351439cbe5e52772 (diff)
parent88d8125a5fa3b5c6c91cb22fc2bef1243d7391fc (diff)
downloadwallabag-24add95e9eaa1211655aff6d3d06c30e94252bcc.tar.gz
wallabag-24add95e9eaa1211655aff6d3d06c30e94252bcc.tar.zst
wallabag-24add95e9eaa1211655aff6d3d06c30e94252bcc.zip
Merge pull request #2338 from wallabag/install-2.1
Fix for 2.1 installation
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index c5fe7b01..b0b26b56 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -91,8 +91,8 @@ 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.sh 94 - travis_wait bash install_dev.sh
95 - ant prepare-$DB 95 - ant prepare-$DB
96 - phpunit -v 96 - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; 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;