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:
authordiosmosis <benaka@piwik.pro>2015-07-19 03:06:27 +0300
committerdiosmosis <benaka@piwik.pro>2015-07-19 03:06:27 +0300
commit46c6493fe240d9c4781349813ead8b92444b0f3d (patch)
treec29887823be55061cf2e7a39841d68427f27c178 /.travis.yml
parent73e6d5253074f4b0d017a20bbb5cffcdc60eb93f (diff)
Configure git in before_install not install.
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 42dddae525..7c14851a39 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -87,6 +87,8 @@ before_install:
# do not use the Zend allocator on PHP 5.3 since it will randomly segfault after program execution
- '[[ "$TRAVIS_PHP_VERSION" == 5.3* ]] && export USE_ZEND_ALLOC=0 || true'
+ - ./tests/travis/configure_git.sh
+
install:
- '[ ! -f ./tests/travis/install_mysql_5.6.sh ] || ./tests/travis/install_mysql_5.6.sh'
@@ -113,8 +115,6 @@ before_script:
# disable opcache to avoid random failures on travis
- echo "opcache.enable=0" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- - ./tests/travis/configure_git.sh
-
# print out mysql information
- mysql --version
- mysql -e "SELECT VERSION();"