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 php from 8.1.20-fpm to 8.1.24-fpm in /docker/styleguide/php8.1 #405

Merged

[SETUP]: Bump php in /docker/styleguide/php8.1

2eeb617
Select commit
Loading
Failed to load commit list.
Merged

[SETUP]: Bump php from 8.1.20-fpm to 8.1.24-fpm in /docker/styleguide/php8.1 #405

[SETUP]: Bump php in /docker/styleguide/php8.1
2eeb617
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 2, 2023 in 58s

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 #405 [SETUP]: Bump php from 8.1.20-fpm to 8.1.24-fpm in /docker/styleguide/php8.1.
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
905.1 8.0 Linux passed
905.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
  }
}