1 # CI configuration file for CI utilizing cirrus-ci.org
3 # For instructions on how to enable the CI integration in a repository and
4 # further details, see src/tools/ci/README
7 # The actual CI tasks are defined in .cirrus.tasks.yml. To make the compute
8 # resources for CI configurable on a repository level, the "final" CI
9 # configuration is the combination of:
11 # 1) the contents of this file
13 # 2) if defined, the contents of the file referenced by the, repository
14 # level, REPO_CI_CONFIG_GIT_URL variable (see
15 # https://cirrus-ci.org/guide/programming-tasks/#fs for the accepted
18 # 3) .cirrus.tasks.yml
20 # This composition is done by .cirrus.star
24 # Source of images / containers
25 GCP_PROJECT: pg-ci-images
26 IMAGE_PROJECT: $GCP_PROJECT
27 CONTAINER_REPO: us-docker.pkg.dev/${GCP_PROJECT}/ci
31 # Define how to run various types of tasks.
33 # VMs provided by cirrus-ci. Each user has a limited number of "free" credits
35 cirrus_community_vm_template: &cirrus_community_vm_template
36 compute_engine_instance:
37 image_project: $IMAGE_PROJECT
38 image: family/$IMAGE_FAMILY
44 default_linux_task_template: &linux_task_template
47 <<: *cirrus_community_vm_template
50 default_freebsd_task_template: &freebsd_task_template
53 <<: *cirrus_community_vm_template
56 default_windows_task_template: &windows_task_template
59 <<: *cirrus_community_vm_template
62 # macos workers provided by cirrus-ci
63 default_macos_task_template: &macos_task_template
70 # Contents of REPO_CI_CONFIG_GIT_URL, if defined, will be inserted here,
71 # followed by the contents .cirrus.tasks.yml. This allows
72 # REPO_CI_CONFIG_GIT_URL to override how the task types above will be
73 # executed, e.g. using a custom compute account or permanent workers.