diff options
author | Wolfy-J <[email protected]> | 2018-09-23 14:05:23 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-23 14:05:23 +0300 |
commit | fa5d984890f1529eb577c88a6ba5ad9e57496bdf (patch) | |
tree | 706b5aad20828371b7d9d7052e09f608c595f039 /.travis.yml | |
parent | 02cfe4882464ca99317e05a925fba99394ca25ae (diff) |
more php versions to test
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 |