Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SETUP]: Bump blackfire/blackfire from 2.16.2 to 2.21.0 in /docker/blackfire #399

[SETUP]: Bump blackfire/blackfire in /docker/blackfire

1da0c5a
Select commit
Loading
Failed to load commit list.
Closed

[SETUP]: Bump blackfire/blackfire from 2.16.2 to 2.21.0 in /docker/blackfire #399

[SETUP]: Bump blackfire/blackfire in /docker/blackfire
1da0c5a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Aug 22, 2023 in 59s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #399 [SETUP]: Bump blackfire/blackfire from 2.16.2 to 2.21.0 in /docker/blackfire.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job PHP OS State Notes
899.1 8.0 Linux passed
899.2 8.1.0 Linux passed This job is allowed to fail.

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Focal)
PHP Versions 8.0, 8.1.0
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "php": [
    "8.0",
    "8.1.0"
  ],
  "branches": {
    "only": [
      "main"
    ]
  },
  "services": [
    "mysql"
  ],
  "cache": {
    "directories": [
      "/home/travis/.composer/cache",
      "tests/tmp"
    ]
  },
  "before_install": [
    "composer selfupdate",
    "chmod +rw ./tests/tmp",
    "curl -L https://github.com/fabpot/local-php-security-checker/releases/download/v1.0.0/local-php-security-checker_1.0.0_linux_amd64 --output ./bin/php-security-checker",
    "chmod 755 ./bin/php-security-checker"
  ],
  "install": [
    "travis_retry composer install -a",
    "travis_retry composer install -a --working-dir=tools/php_codesniffer"
  ],
  "before_script": [
    "mysql -e 'CREATE DATABASE IF NOT EXISTS wordpress_test;'"
  ],
  "script": [
    "composer check-platform-reqs --no-dev",
    "./tools/php_codesniffer/vendor/bin/phpcs . --severity=1",
    "./bin/php-security-checker",
    "export WP_MULTISITE=0; ./bin/phpunit --exclude-group=ms-required",
    "export WP_MULTISITE=1; ./bin/phpunit --exclude-group=ms-excluded"
  ],
  "jobs": {
    "allow_failures": [
      {
        "php": "8.1.0"
      }
    ],
    "fast_finish": true
  }
}