Updated PHP version requirement to ^8.1. #264
Open
Travis CI / Travis CI - Pull Request
succeeded
Jul 25, 2024 in 4m 58s
Build Passed
The build passed. This is a change from the previous build, which failed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #264 Updated PHP version requirement to ^8.1..
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has three jobs, running in parallel.
Job | PHP | OS | State |
---|---|---|---|
20.1 | 7.4 | Linux | passed |
20.2 | 8.0 | Linux | passed |
20.3 | 8.1 | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | PHP |
Operating System | Linux (Xenial) |
Build Configuration
{
"language": "php",
"os": [
"linux"
],
"dist": "xenial",
"sudo": false,
"install": [
"travis_retry composer install"
],
"script": [
"composer ci"
],
"after_success": [
"if [[ \"`phpenv version-name`\" != \"8.0\" ]]; then exit 0; fi",
"vendor/bin/phpunit --coverage-clover coverage.clover",
"wget https://scrutinizer-ci.com/ocular.phar",
"php ocular.phar code-coverage:upload --format=php-clover coverage.clover"
],
"notifications": {
"irc": [
{
"channels": [
"irc.libera.chat#wikidata-feed"
],
"on_success": "change",
"on_failure": "always",
"template": [
"%{repository}/%{branch}/%{commit} : %{author} %{message} %{build_url}"
]
}
]
},
"cache": {
"directories": [
"$HOME/.composer/cache"
]
},
"jobs": {
"fast_finish": true,
"include": [
{
"php": "7.4"
},
{
"php": "8.0"
},
{
"php": "8.1"
}
]
}
}
Loading