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

Enable PHP nightly on Travis CI builds #1937

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

Travis: use `master` instead of `nightly`

f836501
Select commit
Failed to load commit list.
Draft

Enable PHP nightly on Travis CI builds #1937

Travis: use `master` instead of `nightly`
f836501
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jan 28, 2024 in 1m 14s

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 #1937 Enable PHP nightly on Travis CI builds.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Bionic)
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "services": [
    "postgresql",
    "mysql"
  ],
  "install": [
    "composer install"
  ],
  "before_script": [
    "chmod +x \"$TRAVIS_BUILD_DIR/tests/fakesendmail.sh\"",
    "echo 'sendmail_path = $TRAVIS_BUILD_DIR/tests/fakesendmail.sh' > ./tests/sendmail.ini",
    "phpenv config-add ./tests/sendmail.ini",
    "./build/travis_before_script.sh"
  ],
  "script": [
    "./build/travis_script.sh"
  ],
  "branches": {
    "only": [
      "master",
      "/master-[0-9.]+/"
    ]
  },
  "php": [
],
"env": [
"jobs={:DB=>"mysql"}"
],
"jobs": {
"include": [
{
"php": "master",
"env": [
{
"DB": "mysql"
}
],
"dist": "focal"
}
],
"fast_finish": true,
"allow_failures": [
{
"php": "nightly"
}
]
},
"notifications": {
"email": [
{
"on_success": "change",
"on_failure": "always"
}
],
"irc": [
{
"on_success": "change",
"on_failure": "always",
"channels": [
"chat.freenode.net#mantisbt"
],
"skip_join": true,
"template": [
"Build #%{build_number}: %{repository} %{branch} (%{commit}) %{author} - %{message}",
"Build details: %{build_url}",
"Code Changes: %{compare_url}"
]
}
]
}
}