PHP 8 upgrade #20
Open
PHP 8 upgrade #20
Travis CI / Travis CI - Branch
required action
Dec 5, 2024 in 19s
Build Errored
The build errored, just like the previous build.
Details
This is a normal build for the TGR-115 branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | PHP |
Operating System | Linux (Xenial) |
PHP Version | 8.3 |
Build Configuration
{
"language": "php",
"os": [
"linux"
],
"dist": "xenial",
"php": [
"8.3"
],
"cache": {
"directories": [
"node_modules"
]
},
"install": [
"npm install"
],
"script": [
"composer install",
"vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
],
"after_success": [
"vendor/bin/coveralls -v",
"vendor/bin/phpcs -n --standard=PSR1,PSR2 src/",
"vendor/bin/phpcbf src/",
"ENVIRONMENT_NAME=$TRAVIS_BRANCH",
"if [ \"$TRAVIS_BRANCH\" == \"master\" ]; then ENVIRONMENT_NAME=production; fi"
],
"deploy": [
{
"provider": "script",
"skip_cleanup": true,
"script": "./scripts/travis-deploy.sh $ENVIRONMENT_NAME",
"on": {
"all_branches": true,
"condition": [
"$ENVIRONMENT_NAME =~ ^(development|qa|production)$"
]
}
}
],
"after_deploy": [
"echo 'Successfully executed deploy trigger for Checkin Request Service on AWS'"
],
"env": [
"global=AWS_ACCESS_KEY_ID_DEVELOPMENT=[secure] AWS_SECRET_ACCESS_KEY_DEVELOPMENT=[secure]=AWS_ACCESS_KEY_ID_QA=[secure] AWS_SECRET_ACCESS_KEY_QA=[secure]=AWS_ACCESS_KEY_ID_PRODUCTION=[secure] AWS_SECRET_ACCESS_KEY_PRODUCTION=[secure]"
]
}
Loading