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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
-rw-r--r--plugins/TestRunner/templates/travis.yml.twig14
2 files changed, 9 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index 31846254da..223c808d63 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -83,10 +83,10 @@ before_install:
- '[[ "$TRAVIS_PHP_VERSION" == 5.3* ]] && export USE_ZEND_ALLOC=0 || true'
install:
- - git fetch
+ - git fetch -q
# make sure travis test scripts are always latest (so in older releases/branches, the latest scripts will still be used)
- - git checkout master -- ./tests/travis ./plugins/TestRunner || true
+ - git checkout master -q -- ./tests/travis ./plugins/TestRunner || true
before_script:
- ./tests/travis/install_mysql_5.6.sh
diff --git a/plugins/TestRunner/templates/travis.yml.twig b/plugins/TestRunner/templates/travis.yml.twig
index 9b81f14a05..9cb4ca3b73 100644
--- a/plugins/TestRunner/templates/travis.yml.twig
+++ b/plugins/TestRunner/templates/travis.yml.twig
@@ -87,9 +87,9 @@ install:
{% endif %}
{% if generationMode != 'core' %}
# checkout piwik in the current directory
- - git clone https://github.com/piwik/piwik.git piwik
+ - git clone -q https://github.com/piwik/piwik.git piwik
- cd piwik
- - git fetch --all
+ - git fetch -q --all
- |
if [ "$TEST_AGAINST_PIWIK_BRANCH" == "" ]; then
if [ "$TEST_AGAINST_CORE" == "latest_stable" ]; then
@@ -100,11 +100,11 @@ install:
fi
fi
- echo "Testing against '$TEST_AGAINST_PIWIK_BRANCH'"
- - git checkout "$TEST_AGAINST_PIWIK_BRANCH"
- - git submodule init
- - git submodule update || true
+ - git checkout "$TEST_AGAINST_PIWIK_BRANCH" -q
+ - git submodule init -q
+ - git submodule update -q || true
{% else %}
- - git fetch
+ - git fetch -q
{% endif %}
{% if generationMode == 'plugin' %}
# move plugin contents to folder in the plugins subdirectory
@@ -118,7 +118,7 @@ install:
{% endif %}
# make sure travis test scripts are always latest (so in older releases/branches, the latest scripts will still be used)
- - git checkout master -- ./tests/travis ./plugins/TestRunner || true
+ - git checkout master -q -- ./tests/travis ./plugins/TestRunner || true
{% if generationMode == 'plugin' %}
# clone dependent repos
- ./tests/travis/checkout_dependent_plugins.sh