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

PartyTown Integration #987

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from

Fixed subdir path issue. Removed debug code and unused code.

65aafaa
Select commit
Loading
Failed to load commit list.
Draft

PartyTown Integration #987

Fixed subdir path issue. Removed debug code and unused code.
65aafaa
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Nov 22, 2024 in 6m 4s

Build Passed

The build passed, just like the previous build.

Details

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

Jobs and Stages

This build has two jobs, running in parallel.

Job PHP OS State
1777.1 7.2 Linux passed
1777.2 8.3 Linux passed

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Xenial)
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "services": [
    "mysql"
  ],
  "notifications": {
    "slack": [
      {
        "rooms": [
          {
            "secure": "Me2FCeSQNVpIx7lvf5o9gTP60+WQiaxwDIeTsE9NB6+fHRDwrt5Jju1sTXbEgbB7CDQWKuAL6CouL4ZOoUUtHe00u6D0ifwDhj1M3IMeD3NjnWr2dbvZltHkMTCLbtdfD6F5VLhYWFTSNLS4EQAOuITCi1Ph4H+WcYttaw4ldbauSmPnKRvaLGh6tHG+/zLzwdhlwUVeT3hGtZdZXB2mibxtvdx+fMJIBcd0q+smI7VIMQXKNsZ/BZ8QW/qRO2neWI3CBYigeNwXuvlxYv/UBBgneBaPGYNo3DcwHARPTSwKByyLzbG+fN4ymx7iRioQ0x74Dex16u7BNhyeOdj8E3MxR3wDTlUkwXXDJI2YpBp/jmB3lPpEu+LPUxlBV5d8HuiMSf1g4vc2VBBUypWBjq2wWCyQzuRcKDwiyc60bFKtSCOHIzRwO+hDHLW7INzDedA2W0JYerLEgmlQj7yVB8Ly4dl38Gals/X4+y4gkpOSKyCsvAOePYcPFs+BIUMRVR3kueF3fu/sWGQEDJD2oTljLm45ue/x7ytyQOHVw94Ao0A0sf1G1nMwqmIFT90z137yGrlwoh8vXHeUWxFfPV6TB75+E8QLFjoo0Gs3nzfi//kd7UMlnRKkuF1+/5Hvo3VS3GTo0nO6Xo3dCHT2f4HZdR5PVZqhTGAPxdgORa8="
          }
        ]
      }
    ]
  },
  "install": [
    "composer self-update",
    "composer update -o",
    "bash bin/install-wp-tests.sh wordpress_test root '' localhost",
    "yarn install"
  ],
  "script": [
    "if [[ ${TRAVIS_PHP_VERSION:0:3} == \"7.2\" ]]; then vendor/phpunit/phpunit/phpunit --debug --verbose --coverage-clover=coverage.xml; else vendor/phpunit/phpunit/phpunit --debug --verbose; fi",
    "composer install --no-dev -o",
    "find . -name composer -prune -o -name node_modules -prune -o -name '*.php' -exec php -lf {} \\; > /dev/null"
  ],
  "after_success": [
    "if [[ ${TRAVIS_PHP_VERSION:0:3} == \"7.2\" ]]; then curl -Os https://uploader.codecov.io/latest/linux/codecov && chmod +x codecov && ./codecov -f coverage.xml; fi"
  ],
  "deploy": [
    {
      "provider": "script",
      "script": "chmod +x ./bin/release.sh && ./bin/release.sh",
      "skip_cleanup": true,
      "on": {
        "tags": true,
        "php": "7.2"
      }
    },
    {
      "provider": "releases",
      "file": [
        "w3-total-cache.zip"
      ],
      "skip_cleanup": true,
      "on": {
        "tags": true,
        "php": "7.2"
      },
      "token": "${GITHUB_TOKEN}"
    }
  ],
  "jobs": {
    "include": [
      {
        "php": "7.2",
        "dist": "bionic",
        "before_install": [
          "nvm install 16",
          "nvm use 16"
        ]
      },
      {
        "php": "8.3",
        "dist": "jammy",
        "before_install": [
          "nvm install 20",
          "nvm use 20"
        ]
      }
    ]
  }
}