diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 8fd4f66d..ace40a15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,4 +36,25 @@ after_success: - bash <(curl -s https://codecov.io/bash) -f env.txt - bash <(curl -s https://codecov.io/bash) -f rpc.txt - bash <(curl -s https://codecov.io/bash) -f http.txt - - bash <(curl -s https://codecov.io/bash) -f static.txt
\ No newline at end of file + - bash <(curl -s https://codecov.io/bash) -f static.txt + +jobs: + include: + - stage: Test + before_install: + - go version + - sudo add-apt-repository -y ppa:ondrej/php + - sudo apt-get update + - sudo apt-get install -y php7.1-cli + - sudo cp `which php7.1` `which php` + - php -v + - composer self-update + - stage: Test + before_install: + - go version + - sudo add-apt-repository -y ppa:ondrej/php + - sudo apt-get update + - sudo apt-get install -y php7.2-cli + - sudo cp `which php7.2` `which php` + - php -v + - composer self-update
\ No newline at end of file |