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

Fixing Issue #563 #564

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

[fix] fixing #563 : also add autoconfig (for outlook & microsoft imap…

5b2c739
Select commit
Failed to load commit list.
Open

Fixing Issue #563 #564

[fix] fixing #563 : also add autoconfig (for outlook & microsoft imap…
5b2c739
Select commit
Failed to load commit list.
Travis CI / Travis CI - Branch required action Mar 4, 2024 in 1m 53s

Build Errored

The build errored.

Details

This is a normal build for the issue-563 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
116.1 7.1 Linux failed
116.2 7.0 Linux failed
116.3 5.6 Linux failed
116.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"
  ]
}