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

Update dependency autoprefixer to v10.4.20 #359

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Update dependency autoprefixer to v10.4.20

621c0ff
Select commit
Loading
Failed to load commit list.
Open

Update dependency autoprefixer to v10.4.20 #359

Update dependency autoprefixer to v10.4.20
621c0ff
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Aug 2, 2024 in 1m 18s

Build Errored

The build errored, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #359 Update dependency autoprefixer to v10.3.7.
Any changes that have been made to the develop branch before the build ran are also included.

Jobs and Stages

This build has seven jobs, running in two sequential stages.

Stage 1: lint

This stage errored.

Job PHP ENV OS State
1517.1 Lint (PHP, JavaScript, and configuration files) 7.4 COVERALLS_PARALLEL=true Linux errored

Stage 2: test

This stage canceled.

Job PHP ENV OS State
1517.2 E2E tests with Docker (7.4, WordPress latest, with code coverage) 7.4 COVERALLS_PARALLEL=true Linux canceled
1517.3 JS unit tests (7.4, WordPress latest, with code coverage) 7.4 COVERALLS_PARALLEL=true Linux canceled
1517.4 PHP unit tests (7.4, WordPress latest, with code coverage) 7.4 COVERALLS_PARALLEL=true Linux canceled
1517.5 PHP unit tests (7.4, WordPress trunk) 7.4 COVERALLS_PARALLEL=true Linux canceled
1517.6 PHP unit tests (5.6, WordPress latest) 5.6 COVERALLS_PARALLEL=true Linux canceled
1517.7 PHP unit tests (5.6, WordPress 5.0) 5.6 COVERALLS_PARALLEL=true Linux canceled

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Xenial)
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "cache": {
    "directories": [
      "$HOME/.composer/cache",
      "$HOME/.jest-cache",
      "$HOME/.npm",
      "$HOME/.nvm/.cache",
      "$HOME/phpunit-bin"
    ]
  },
  "notifications": {
    "email": [
      {
        "on_success": "never",
        "on_failure": "change"
      }
    ],
    "webhooks": [
      {
        "urls": [
          "https://coveralls.io/webhook"
        ]
      }
    ]
  },
  "services": [
    "mysql",
    "docker"
  ],
  "addons": {
    "apt": {
      "packages": [
        "libxml2-utils"
      ]
    }
  },
  "branches": {
    "only": [
      "master",
      "develop",
      "/^\\d+\\.\\d+$/"
    ]
  },
  "env": [
    "global={:COVERALLS_PARALLEL=>\"true\"}={:XDEBUG_MODE=>\"coverage\"}"
  ],
  "before_install": [
    "nvm install",
    "nvm use"
  ],
  "install": [
    "npm install",
    "export DEV_LIB_PATH=vendor/xwp/wp-dev-lib/scripts",
    "export DIFF_HEAD=HEAD",
    "source \"$DEV_LIB_PATH/travis.install.sh\""
  ],
  "before_script": [
    "phpenv config-rm xdebug.ini || echo \"xdebug.ini does not exist.\""
  ],
  "script": [
    "source \"$DEV_LIB_PATH/travis.script.sh\""
  ],
  "after_script": [
    "source \"$DEV_LIB_PATH/travis.after_script.sh\""
  ],
  "jobs": {
    "fast_finish": true,
    "include": [
      {
        "stage": "lint",
        "name": "Lint (PHP, JavaScript, and configuration files)",
        "php": "7.4",
        "env": [
          {
            "WP_VERSION": "latest",
            "DEV_LIB_ONLY": "xmllint,phpsyntax,composer"
          }
        ],
        "script": [
          "source \"$DEV_LIB_PATH/travis.script.sh\"",
          "npm run lint"
        ]
      },
      {
        "stage": "test",
        "name": "E2E tests with Docker (7.4, WordPress latest, with code coverage)",
        "php": "7.4",
        "env": [
          {
            "NODE_ENV": "e2e"
          }
        ],
        "install": [
          "sudo service mysql stop",
          "npm install",
          "docker-compose pull"
        ],
        "before_script": [
          "echo \"Running E2E tests with code coverage ...\""
        ],
        "script": [
          "npm run env:start",
          "npm run wp -- bash -c \"while ! nc -z mysql 3306; do sleep 1; done\"",
          "npm run wp -- wp core install --title=WordPress --admin_user=admin --admin_password=password [email protected] --skip-email --url=http://localhost:8088 --quiet",
          "npm run wp -- wp plugin activate foo-bar",
          "npm run build:js",
          "npm run test:e2e:coveralls"
        ],
        "after_script": [
          "echo \"E2E tests complete\""
        ]
      },
      {
        "name": "JS unit tests (7.4, WordPress latest, with code coverage)",
        "php": "7.4",
        "env": [
          {
            "WP_VERSION": "latest"
          }
        ],
        "install": [
          "sudo service mysql stop",
          "npm install"
        ],
        "before_script": [
          "echo \"Running JS unit tests with code coverage ...\""
        ],
        "script": [
          "npm run build:js",
          "npm run test:js:coveralls"
        ],
        "after_script": [
          "echo \"JS unit tests complete\""
        ]
      },
      {
        "name": "PHP unit tests (7.4, WordPress latest, with code coverage)",
        "php": "7.4",
        "env": [
          {
            "WP_VERSION": "latest",
            "DEV_LIB_ONLY": "phpunit,coverage,composer"
          }
        ],
        "before_script": [
          "echo \"Running PHP unit tests with code coverage ...\""
        ]
      },
      {
        "name": "PHP unit tests (7.4, WordPress trunk)",
        "php": "7.4",
        "env": [
          {
            "WP_VERSION": "trunk",
            "DEV_LIB_ONLY": "phpunit,composer"
          }
        ]
      },
      {
        "name": "PHP unit tests (5.6, WordPress latest)",
        "php": "5.6",
        "env": [
          {
            "WP_VERSION": "latest",
            "DEV_LIB_ONLY": "phpunit,composer"
          }
        ],
        "before_script": [
          "composer config --unset platform.php",
          "composer require --dev phpunit/phpunit:^5 phpunit/phpcov php-coveralls/php-coveralls --update-with-dependencies"
        ]
      },
      {
        "name": "PHP unit tests (5.6, WordPress 5.0)",
        "php": "5.6",
        "env": [
          {
            "WP_VERSION": "5.0",
            "DEV_LIB_ONLY": "phpunit,composer"
          }
        ],
        "before_script": [
          "composer config --unset platform.php",
          "composer require --dev phpunit/phpunit:^5 phpunit/phpcov php-coveralls/php-coveralls --update-with-dependencies"
        ]
      }
    ]
  }
}