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

WIP : Issue 557 #560

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Rename _() to __()

ee5b461
Select commit
Failed to load commit list.
Open

WIP : Issue 557 #560

Rename _() to __()
ee5b461
Select commit
Failed to load commit list.
Travis CI / Travis CI - Branch required action May 29, 2024 in 2m 4s

Build Errored

The build errored, just like the previous build.

Details

This is a normal build for the nightly branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has four jobs, running in parallel.

Job PHP OS State
137.1 7.1 Linux failed
137.2 7.0 Linux failed
137.3 5.6 Linux failed
137.4 5.5 Linux errored

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Xenial)
PHP Versions 7.1, 7.0, 5.6, 5.5
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "services": [
    "mysql"
  ],
  "php": [
    "7.1",
    "7.0",
    "5.6",
    "5.5"
  ],
  "script": [
    "grep --exclude-dir=../.git/ --exclude-dir=../vendor/ -l -r -e '#!/bin/[bash|sh]' ../ | uniq | xargs shellcheck",
    "../vendor/bin/phpcs --ignore=../vendor/ ../",
    "../vendor/bin/phpunit --coverage-clover=coverage.clover"
  ],
  "before_script": [
    "composer require 'phpunit/dbunit=<3.0.2' squizlabs/php_codesniffer",
    "mysql -e 'create database alternc_test DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'",
    "cd phpunit"
  ],
  "after_script": [
    "wget https://scrutinizer-ci.com/ocular.phar",
    "php ocular.phar code-coverage:upload --format=php-clover coverage.clover"
  ]
}