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

functionMap: additions, improvement, corrections #127

Merged
merged 13 commits into from
Nov 2, 2023

Add trailing comma to last array item

02621e6
Select commit
Loading
Failed to load commit list.
Merged

functionMap: additions, improvement, corrections #127

Add trailing comma to last array item
02621e6
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Nov 1, 2023 in 1m 0s

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 #127 functionMap: additions, improvement, corrections.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job PHP OS State
322.1 8.0 Linux passed
322.2 7.4 Linux passed

Build Configuration

Build Option Setting
Language PHP
Operating System Linux (Bionic)
PHP Versions 8.0, 7.4
Build Configuration
{
  "language": "php",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "if": "branch = master",
  "php": [
    "8.0",
    "7.4"
  ],
  "cache": {
    "directories": [
      "$HOME/.composer/cache"
    ]
  },
  "before_install": [
    "phpenv config-rm xdebug.ini",
    "composer validate --strict"
  ],
  "install": [
    "if ! php --ri sodium; then\n    # https://github.com/paragonie/sodium_compat/pull/104\n    #composer require --no-interaction --dev \"paragonie/sodium_compat\"\n    LIBSODIUM_VERSION=\"1.0.18\"\n    wget \"https://github.com/jedisct1/libsodium/releases/download/${LIBSODIUM_VERSION}-RELEASE/libsodium-${LIBSODIUM_VERSION}.tar.gz\"\n    tar -xf libsodium-${LIBSODIUM_VERSION}.tar.gz\n    cd libsodium-${LIBSODIUM_VERSION} && ./configure --prefix=\"$HOME/libsodium\" && make check && make install && cd -\n    LD_LIBRARY_PATH=\"$HOME/libsodium/lib:$LD_LIBRARY_PATH\" \\\n        PKG_CONFIG_PATH=\"$HOME/libsodium/lib/pkgconfig:$PKG_CONFIG_PATH\" \\\n        LDFLAGS=\"-L$HOME/libsodium/lib\" \\\n        pecl install libsodium\n    php --ri sodium\nfi\n",
    "composer update --no-interaction",
    "composer run post-install-cmd"
  ],
  "before_script": [
    "cat ./source/wordpress/wp-includes/version.php"
  ],
  "script": [
    "./generate.sh",
    "php -l wordpress-stubs.php",
    "git diff --exit-code",
    "php -f wordpress-stubs.php",
    "composer run test"
  ]
}