diff options
author | Andres Freund <andres@anarazel.de> | 2023-08-23 15:15:28 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2023-08-23 15:15:28 -0700 |
commit | e8a8cd05d4b9533cf5bff0f4a4ee83a40df62875 (patch) | |
tree | 9bb503713ced25816843aa7df319ed24ae5625bb /src | |
parent | 9ed46c78a3625001a863bbcbfd5f1c696c1def46 (diff) | |
download | postgresql-e8a8cd05d4b9533cf5bff0f4a4ee83a40df62875.tar.gz postgresql-e8a8cd05d4b9533cf5bff0f4a4ee83a40df62875.zip |
ci: Make compute resources for CI configurable
See prior commit for an explanation for the goal of the change and why it had
to be split into two commits.
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Reviewed-by: Nazir Bilal Yavuz <byavuz81@gmail.com>
Discussion: https://postgr.es/m/20230808021541.7lbzdefvma7qmn3w@awork3.anarazel.de
Backpatch: 15-, where CI support was added
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/ci/README | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tools/ci/README b/src/tools/ci/README index 80d01939e84..30ddd200c96 100644 --- a/src/tools/ci/README +++ b/src/tools/ci/README @@ -65,3 +65,20 @@ messages. Currently the following controls are available: Only runs CI on operating systems specified. This can be useful when addressing portability issues affecting only a subset of platforms. + + +Using custom compute resources for CI +===================================== + +When running a lot of tests in a repository, cirrus-ci's free credits do not +suffice. In those cases a repository can be configured to use other +infrastructure for running tests. To do so, the REPO_CI_CONFIG_GIT_URL +variable can be configured for the repository in the cirrus-ci web interface, +at https://cirrus-ci.com/github/<user or organization>. The file referenced +(see https://cirrus-ci.org/guide/programming-tasks/#fs) by the variable can +overwrite the default execution method for different operating systems, +defined in .cirrus.yml, by redefining the relevant yaml anchors. + +Custom compute resources can be provided using +- https://cirrus-ci.org/guide/supported-computing-services/ +- https://cirrus-ci.org/guide/persistent-workers/ |