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

Travis: switch to focal distribution for builds #1960

Open
wants to merge 21 commits into
base: master
Choose a base branch
from

Add pg_connect test

9968631
Select commit
Failed to load commit list.
Open

Travis: switch to focal distribution for builds #1960

Add pg_connect test
9968631
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Feb 10, 2024 in 1m 14s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #1960 Travis: switch to focal distribution for 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 (Focal)
PHP Version 8.2
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "services": [
    "mysql",
    "postgresql"
  ],
  "addons": {
    "postgresql": "12",
    "apt": {
      "packages": [
        "postgresql-12",
        "postgresql-client-12"
      ]
    }
  },
  "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": [
    "8.2"
  ],
  "env": [
    "jobs={:DB=>\"pgsql\", :PGPORT=>\"5433\", :PGUSER=>\"travis\"}"
  ],
  "jobs": {
    "allow_failures": [
]

},
"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}"
]
}
]
}
}