We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6567872 commit 31f7631Copy full SHA for 31f7631
.travis.yml
@@ -28,7 +28,11 @@ before_install:
28
install:
29
- sudo apt-get update -qq
30
- sudo apt-get install -y -qq libssh2-1-dev libssh2-php
31
- - pecl install -f ssh2-alpha < .noninteractive
+ - if [ "${TRAVIS_PHP_VERSION}" == "5.6" ]; then
32
+ pecl install -f ssh2 < .noninteractive
33
+ else
34
+ pecl install -f ssh2-alpha < .noninteractive
35
+ fi
36
- pip install yamllint
37
- if ! shellcheck --version ; then
38
curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
0 commit comments