Skip to content

Remove WP_CLI::halt from extension.neon

8887d07
Select commit
Loading
Failed to load commit list.
Merged

Remove WP_CLI::halt from earlyTerminatingMethodCalls #289

Remove WP_CLI::halt from extension.neon
8887d07
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jul 7, 2025 in 2m 21s

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 #289 Remove WP\_CLI::halt from earlyTerminatingMethodCalls.
Any changes that have been made to the 2.x branch before the build ran are also included.

Jobs and Stages

This build has eight jobs, running in parallel.

Job PHP ENV OS State
663.1 8.3 TYPOS_VERSION="1.27.3" Linux passed
663.2 8.2 TYPOS_VERSION="1.27.3" Linux passed
663.3 8.1 TYPOS_VERSION="1.27.3" Linux passed
663.4 8.0 TYPOS_VERSION="1.27.3" Linux passed
663.5 PHP 7.4 7.4 TYPOS_VERSION="1.27.3" Linux passed
663.6 With lowest deps 7.4 TYPOS_VERSION="1.27.3" Linux passed
663.7 Search for misspellings 8.3 TYPOS_VERSION="1.27.3" Linux passed
663.8 Check exported files 7.4 TYPOS_VERSION="1.27.3" Linux passed

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Bionic)
PHP Versions 8.3, 8.2, 8.1, 8.0
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "if": "branch IN (master, 2.x)",
  "php": [
    "8.3",
    "8.2",
    "8.1",
    "8.0"
  ],
  "env": [
    "jobs={:TYPOS_VERSION=>\"\\\"1.27.3\\\"\"}"
  ],
  "jobs": {
    "include": [
      {
        "name": "PHP 7.4",
        "php": "7.4",
        "script": [
          "composer test:syntax -- --no-progress --exclude tests/data/hook-callback-named-args.php",
          "composer test:phpunit -- --verbose",
          "composer test:cs -- -s",
          "composer test:phpstan -- --ansi --no-progress"
        ]
      },
      {
        "name": "With lowest deps",
        "php": "7.4",
        "install": [
          "composer update --no-interaction --prefer-lowest",
          "composer update --no-interaction --with-all-dependencies szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset 'php-stubs/wordpress-stubs:^6.1'"
        ],
        "script": [
          "composer test:phpunit -- --verbose",
          "composer test:phpstan -- --ansi --no-progress"
        ]
      },
      {
        "name": "Search for misspellings",
        "before_install": [
          "skip"
        ],
        "install": [
          "mkdir -p \"${HOME}/typos\"\nwget --progress=dot:mega --directory-prefix=\"${HOME}/typos\" \\\n    \"https://github.com/crate-ci/typos/releases/download/v${TYPOS_VERSION}/typos-v${TYPOS_VERSION}-x86_64-unknown-linux-musl.tar.gz\"\ntar -xzvf \"${HOME}/typos/typos-v${TYPOS_VERSION}-x86_64-unknown-linux-musl.tar.gz\" -C \"${HOME}/typos\" ./typos\n"
        ],
        "script": [
          "\"${HOME}/typos/typos\"\n"
        ]
      },
      {
        "name": "Check exported files",
        "php": "7.4",
        "before_install": [
          "skip"
        ],
        "install": [
          "skip"
        ],
        "script": [
          "EXPECTED=\"LICENSE,README.md,bootstrap.php,composer.json,extension.neon\"\nCURRENT=\"$(git archive HEAD | tar --list --exclude=\"src\" --exclude=\"src/*\" | paste --serial --delimiters=\",\")\"\necho \"CURRENT =${CURRENT}\"\necho \"EXPECTED=${EXPECTED}\"\ntest \"${CURRENT}\" = \"${EXPECTED}\"\n"
        ]
      }
    ]
  },
  "cache": {
    "directories": [
      "${HOME}/.composer/cache"
    ]
  },
  "before_install": [
    "phpenv config-rm xdebug.ini",
    "composer validate --strict"
  ],
  "install": [
    "composer update --no-interaction"
  ],
  "script": [
    "composer test:syntax -- --no-progress",
    "composer test:phpunit -- --verbose",
    "composer test:cs -- -s",
    "composer test:phpstan -- --ansi --no-progress"
  ]
}