Update dependency symfony/http-foundation to v5.4.46 [SECURITY] #272
Travis CI / Travis CI - Branch
required action
Nov 6, 2024 in 1m 1s
Build Errored
The build errored.
Details
This is a normal build for the renovate/packagist-symfony-http-foundation-vulnerability branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has six jobs, running in parallel.
Job | PHP | ENV | OS | State |
---|---|---|---|---|
8.1 | WP_DB_USER=wp | Linux | errored | |
8.0 | WP_DB_USER=wp | Linux | errored | |
8.2 | WP_DB_USER=wp | Linux | errored | |
7.2 | WP_DB_USER=wp | Linux | errored | |
7.2 | WP_DB_USER=wp | Linux | errored | |
8.3 | WP_DB_USER=wp | Linux | errored |
Build Configuration
Build Option | Setting |
---|---|
Language | PHP |
Operating System | Linux (Focal) |
PHP Versions | 8.1, 8.0 |
Build Configuration
{
"language": "php",
"os": [
"linux"
],
"dist": "focal",
"version": "~> 1.0",
"notifications": {
"email": [
{
"on_success": "never",
"on_failure": "change"
}
]
},
"cache": {
"directories": [
"$HOME/.composer/cache"
]
},
"services": [
"mysql"
],
"env": [
"global={:WP_DB_USER=>\"wp\"}={:WP_DB_PASS=>\"password\"}={:WP_DB_NAME=>\"wp_tests\"}={:WP_VERSION=>\"*\"}={:CF7_VERSION=>\"v5.7.3\"}={:PHPUNIT_VERSION=>\"^9.0\"}"
],
"php": [
"8.1",
"8.0"
],
"jobs": {
"fast_finish": true,
"include": [
{
"name": "php_8_2",
"php": "8.2",
"addons": {
"apt": {
"packages": [
"libonig5"
]
}
}
},
{
"name": "php_7_2",
"dist": "xenial",
"php": "7.2",
"env": [
{
"PHPUNIT_VERSION": "^7.0"
}
]
},
{
"name": "php_7_2_and_wp_5_9",
"dist": "xenial",
"php": "7.2",
"env": [
{
"WP_VERSION": "5.9.9",
"CF7_VERSION": "v5.1.6",
"PHPUNIT_VERSION": "^8.0"
}
]
},
{
"name": "bleeding edge",
"php": "8.3",
"dist": "jammy",
"env": [
{
"CF7_VERSION": "master"
}
],
"addons": {
"apt": {
"packages": [
"libonig5"
]
}
}
}
]
},
"install": [
"composer self-update --2",
"composer require --ignore-platform-req=php --dev --with-dependencies roots/wordpress:${WP_VERSION} wp-phpunit/wp-phpunit:${WP_VERSION} phpunit/phpunit:${PHPUNIT_VERSION}",
"composer show",
"nvm install 16 && nvm use 16",
"yarn install",
"git clone --depth=50 --branch=${CF7_VERSION} https://github.com/rocklobster-in/contact-form-7"
],
"before_script": [
"mysql -u root -e \"CREATE USER ${WP_DB_USER} IDENTIFIED BY '${WP_DB_PASS}';\"",
"mysql -u root -e \"GRANT ALL PRIVILEGES ON ${WP_DB_NAME}.* TO ${WP_DB_USER};\"",
"mysql -u root -e \"CREATE DATABASE ${WP_DB_NAME};\"",
"phpenv config-rm xdebug.ini || return 0"
],
"script": [
"composer test",
"yarn test",
"yarn build"
]
}
Loading