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 golang from 1.20 to 1.21 in /docker/mailhog #396

Merged
merged 1 commit into from
Oct 6, 2023

[SETUP]: Bump golang from 1.20 to 1.21 in /docker/mailhog

08ba5e8
Select commit
Loading
Failed to load commit list.
Merged

[SETUP]: Bump golang from 1.20 to 1.21 in /docker/mailhog #396

[SETUP]: Bump golang from 1.20 to 1.21 in /docker/mailhog
08ba5e8
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Aug 9, 2023 in 57s

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 #396 [SETUP]: Bump golang from 1.20 to 1.21 in /docker/mailhog.
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
896.1 8.0 Linux passed
896.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
  }
}