sumanas27 / pdo_sqlrelay_builder

This tool automates building of the pdo_sqlrelay php extension and runs a suite of phpt tests against it.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open Source Project Template

Release Lint Contributor Covenant Maintainer

About The Project

The mainline purpose of this project is to build the PHP extension pdo_sqlrelay for various PHP versions and various operating systems, and to perform continuous integration and testing, utilizing the available containers already built and maintained by other teams, and the SQLRelay maintainers' prebuild binaries.

We do not intend on maintaining a fork of the pdo_sqlrelay.cpp source file, but only to mirror a suitable release or patch from the upstream maintainer, and to support an orchestration, using github actions, that ensure the usability of this extension in the latest versions of PHP and operating system releases, database releases, etc as prudent software lifecycle management practices indicate.

This project may not ever have releases or provide anything other than artifacts of testing.

File Catalog

Directory Filename Provenance Description
/ config.m4 Wayfair The input to the phpize command
/ * Wayfair README etc
/src * Firstworks from SQLRelay src/api/phppdo
/tests * Wayfair phpt files containing sql
/.github * Wayfair Workflows and templates
/bin * Wayfair Scripts to help build and test

Getting Started

In a suitable PHP development environment, with prequisite software installed, the pdo_sqlrelay.so can be built by:

phpize --clean; phpize; ./configure; make clean; make;

The make test will fail until the generated Makefile is edited to include the loading of the extension=pdo.so or until we figure out what to change in the config.m4 to get this to happen automatically. The github actions will have calls to sed to do this editing.

Prerequisites

These all refer to prebuild binaries, e.g. RPM, APT, from customary sources.

  1. php-devel possibly from blog.remirepo.net or provided by your OS distro.
  2. rudiments-devel from firstworks.com/opensource
  3. sqlrelay-c++-devel as above.
  4. php-debuginfo (strongly suggested)
  5. sqlrelay-debuginfo (strongly suggested)
  6. gcc-c++, valgrind, gdb, strace, ltrace, binutils (obviously).

Installation

phpize --clean; phpize; ./configure; make clean; make;

Usage

See firstworks.com/opensource

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. For detailed contributing guidelines, please see CONTRIBUTING.md

License

Wayfair provided files distributed under the MIT License. See LICENSE for more information. other files as indicated by the upstream sources.

Contact

Project Link: https://github.com/wayfair-incubator/pdo_sqlrelay_builder

Acknowledgements

This template was adapted from https://github.com/othneildrew/Best-README-Template.

About

This tool automates building of the pdo_sqlrelay php extension and runs a suite of phpt tests against it.

License:MIT License


Languages

Language:PHP 46.2%Language:C++ 29.5%Language:C 15.1%Language:Shell 6.5%Language:M4 2.7%