mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 03:21:01 +00:00
remove install scripts and tweak travis
This commit is contained in:
parent
a494c33ef7
commit
5759c9aac1
3 changed files with 3 additions and 29 deletions
|
@ -91,8 +91,9 @@ before_install:
|
|||
- if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi;
|
||||
|
||||
script:
|
||||
- travis_wait bash install_dev.sh
|
||||
- travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist
|
||||
- ant prepare-$DB
|
||||
- if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then phpunit -v ; fi;
|
||||
- if [[ $VALIDATE_TRANSLATION_FILE = '' || $ASSETS = '' ]]; then phpunit -v ; fi;
|
||||
- if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi;
|
||||
- if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi;
|
||||
- if [[ $ASSETS = build ]]; then node_modules/grunt-cli/bin/grunt ; fi;
|
||||
|
|
13
install.sh
13
install.sh
|
@ -1,13 +0,0 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
echo " > Installing PHP dependencies through Composer..."
|
||||
SYMFONY_ENV=prod composer install --no-interaction --no-progress --prefer-dist -o --no-dev
|
||||
|
||||
chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm
|
||||
echo " > Downloading librairies through npm..."
|
||||
vendor/mouf/nodejs-installer/bin/local/npm install
|
||||
|
||||
echo " > Concat, minify and installing assets..."
|
||||
node_modules/grunt/bin/grunt
|
||||
|
||||
echo " > Install finished"
|
|
@ -1,14 +0,0 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
echo " > Installing PHP dependencies (including dev) through Composer..."
|
||||
composer install -o --no-interaction --no-progress --prefer-dist
|
||||
|
||||
if [[ $ASSETS == 'build' || $TRAVIS_BUILD_DIR == '' ]]; then
|
||||
echo " > Downloading librairies through npm..."
|
||||
npm install
|
||||
|
||||
echo " > Concat, minify and installing assets..."
|
||||
grunt
|
||||
fi
|
||||
|
||||
echo " > Install finished"
|
Loading…
Reference in a new issue