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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2015-09-22 11:13:57 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2015-09-22 11:41:58 +0300
commitb8debcb3c807fe53fafabd7ccf953bd3d0d366c2 (patch)
tree21518b3b8fba682e8c706538a847a81df25efa10 /.travis.yml
parent19c97d655c9ef9f4a0dd5797d3d474faef885f2b (diff)
run CI js tests only once
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index c5a58a622..3b0ff29d8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,6 +10,7 @@ php:
env:
global:
- CORE_BRANCH=master
+ - TEST_JS=FALSE
- secure: AaTeRG3kL/LeMOcMgul08EUBM7Kdtrkz9EAGPauKdxXbxggP0j5SxN8ciYxc8CiVni0CYJofW07YjG6tXqhvHeMINHx8Q+5KUUfiLwNrLgl1sMkh7vPR9EA5Z1Y8Nz4N1Qt7zxpqWKPHUsjUNFWxP2TPHEq2FEOGeKbsI7GOYas=
- secure: S5agbWaWSLgbujsVhZB9WkCAM0ris8uh9hPnspYw48bolkMhknJ7JxOWGV4rOcJ52kdOgifFRE9XYi65RFLL8zuaZDBU2zFoXO3fpatziYEiIWnxVrkogw1pnh/FeRnrUld+QDykFyUcfSGdFRw5R5FuZHrxe+Q5bHfiEjh4hlE=
matrix:
@@ -33,19 +34,19 @@ before_install:
- bash ./before_install.sh mail $CORE_BRANCH $DB
- cd ../core
- php occ app:enable mail
- - npm install -g npm@latest
+ - sh -c "if [ '$TEST_JS' = 'TRUE' ]; then npm install -g npm@latest; fi"
before_script:
- cd apps/mail
- - npm install --deps
- - npm run-script bower_deps
+ - sh -c "if [ '$TEST_JS' = 'TRUE' ]; then npm install --deps; fi"
+ - sh -c "if [ '$TEST_JS' = 'TRUE' ]; then npm run-script bower_deps; fi"
script:
# Test lint
- find . -name \*.php -not -path './vendor/*' -exec php -l "{}" \;
# Run js unit tests
- - grunt
+ - sh -c "if [ '$TEST_JS' = 'TRUE' ]; then grunt; fi"
# Run phpunit tests
- cd tests
@@ -57,7 +58,7 @@ script:
matrix:
include:
- php: 5.4
- env: DB=mysql
+ env: "DB=mysql TEST_JS=TRUE"
- php: 5.4
env: DB=pgsql
- php: 5.4