systems:ci
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
systems:ci [2025/02/17 17:12] – Add provisioning guidelines calvinb | systems:ci [2025/02/27 15:33] (current) – make link calvinb | ||
---|---|---|---|
Line 11: | Line 11: | ||
^ Name ^ Architecture ^ OS ^ CI Platform ^ Provided by ^ Notes ^ | ^ Name ^ Architecture ^ OS ^ CI Platform ^ Provided by ^ Notes ^ | ||
- | | php-ci-ppc64 | PowerPC 64-bit, big endian | Gentoo | GitHub Actions (github-act-runner) | calvinb@php.net | Attached, not yet running jobs | | + | | [[systems:php-ci-ppc64|php-ci-ppc64]] |
==== Provisioning new runners ==== | ==== Provisioning new runners ==== | ||
Line 22: | Line 22: | ||
- If your added workflow is in a good state, create a PR for it. | - If your added workflow is in a good state, create a PR for it. | ||
- Once the workflow is ready to be merged, but before it is merged, get the runner added to the php/php-src repository. | - Once the workflow is ready to be merged, but before it is merged, get the runner added to the php/php-src repository. | ||
+ | |||
+ | == Notes on setup for non-Docker runners == | ||
+ | |||
+ | For platforms that aren't containerized, | ||
+ | |||
+ | Installing necessary libraries will depend on your OS and what extensions you want to test. | ||
+ | |||
+ | **DBA**: You may need to use QDBM instead of GDBM. | ||
+ | |||
+ | **Postgres**: | ||
+ | |||
+ | < | ||
+ | CREATE ROLE ‘ci’ WITH LOGIN; | ||
+ | \password ci | ||
+ | CREATE DATABASE test WITH OWNER ci; | ||
+ | </ | ||
+ | |||
+ | **MySQL**: The tests assume MySQL 8; you may run into issues with MariaDB. If you're running a non-root user, you must either set log_bin to off or log_bin_trust_function_creators to on. For creating a user and database: | ||
+ | |||
+ | < | ||
+ | CREATE DATABASE TEST; | ||
+ | CREATE USER ' | ||
+ | GRANT SELECT, CREATE, DROP, SUPER ON *.* TO ' | ||
+ | GRANT ALL PRIVILEGES ON test.* TO ' | ||
+ | </ |
systems/ci.1739812320.txt.gz · Last modified: 2025/02/17 17:12 by calvinb