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

Handle BSD checksum and file utilities #14690

Merged
merged 2 commits into from
Jul 8, 2024

Prefer GNU touch

47a6deb
Select commit
Loading
Failed to load commit list.
Merged

Handle BSD checksum and file utilities #14690

Prefer GNU touch
47a6deb
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jun 27, 2024 in 32m 10s

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 #14690 Handle BSD checksum utilities.
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 C
Operating System Linux (Focal)
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "git": {
    "quiet": true
  },
  "addons": {
    "apt": {
      "packages": [
        "locales",
        "language-pack-de",
        "re2c",
        "ccache",
        "mysql-server",
        "libbz2-dev",
        "libcurl4-gnutls-dev",
        "libenchant-dev",
        "libfreetype6-dev",
        "libgmp-dev",
        "libicu-dev",
        "libjpeg-dev",
        "libonig-dev",
        "libpng-dev",
        "libpq-dev",
        "libsasl2-dev",
        "libsqlite3-dev",
        "libsodium-dev",
        "libtidy-dev",
        "libwebp-dev",
        "libxml2-dev",
        "libxpm-dev",
        "libxslt1-dev",
        "libzip-dev"
      ]
    }
  },
  "services": [
    "mysql",
    "postgresql"
  ],
  "notifications": {
    "email": [
      {
        "on_failure": "change"
      }
    ],
    "irc": [
      {
        "template": [
          "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} -  Change view : %{compare_url} - Build details : %{build_url}"
        ],
        "channels": [
          "irc.efnet.org#php.pecl"
        ],
        "on_success": "change",
        "on_failure": "always"
      }
    ]
  },
  "cache": {
    "apt": true,
    "ccache": true
  },
  "env": [
    "global={:MYSQL_TEST_HOST=>\"127.0.0.1\"}={:MYSQL_TEST_USER=>\"travis\"}={:PDO_MYSQL_TEST_DSN=>\"\\\"mysql:host=127.0.0.1;dbname=test\\\"\"}={:PDO_MYSQL_TEST_USER=>\"travis\"}={:PDO_MYSQL_TEST_PASS=>\"\"}={:PDO_MYSQL_TEST_HOST=>\"127.0.0.1\"}={:PDO_PGSQL_TEST_DSN=>\"\\\"pgsql:host=localhost port=5432 dbname=test user=postgres password=\\\"\"}={:REPORT_EXIT_STATUS=>\"1\"}"
  ],
  "jobs": {
    "include": [
      {
        "env": [
          {
            "ENABLE_ZTS": "1",
            "ENABLE_DEBUG": "1",
            "S390X": "1"
          }
        ],
        "arch": "s390x"
      }
    ]
  },
  "before_script": [
    "ccache --version",
    "ccache --zero-stats",
    "export USE_CCACHE=1",
    "sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'",
    "travis_wait ./travis/compile.sh",
    "./travis/setup-mysql.sh",
    "./travis/setup-pgsql.sh"
  ],
  "script": [
    "./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M",
    "sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl(\"zend_test\");'"
  ],
  "after_success": [
    "ccache --show-stats"
  ]
}