You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if dpkg --compare-versions ${SERVER_VERSION} le "2.4"; then export SERVER_PACKAGE=mongodb-10gen-enterprise; else export SERVER_PACKAGE=mongodb-enterprise; fi
26
-
- sudo apt-get install ${SERVER_PACKAGE}
27
-
- sudo apt-get -y install gdb
55
+
- sudo apt-get install ${SERVER_PACKAGE} -y
56
+
- sudo apt-get install gdb -y
57
+
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then pecl install -f mongodb-${PECL_VERSION}; fi;
58
+
- if [[ "$TRAVIS_PHP_VERSION" = "hhvm" ]]; then .travis/build_hhvm.sh ${HHVM_BUCKET}/${HHVM_VERSION}; fi;
28
59
29
60
before_script:
30
-
- phpenv config-rm xdebug.ini
31
61
- if dpkg --compare-versions ${SERVER_VERSION} le "2.4"; then export SERVER_SERVICE=mongodb; else export SERVER_SERVICE=mongod; fi
32
62
- if ! nc -z localhost 27017; then sudo service ${SERVER_SERVICE} start; fi
0 commit comments