diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-04-04 18:14:05 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-04-04 18:14:05 -0400 |
commit | 5099f189a5c9437c03bec51b15f4def51d79d80d (patch) | |
tree | fddd3725ca644130dd554bbfc906a9a2366f77ec /.cirrus.yml | |
parent | fd39849beef3cdc6cce08814aaa1e12f60b37951 (diff) | |
download | podman-5099f189a5c9437c03bec51b15f4def51d79d80d.tar.gz podman-5099f189a5c9437c03bec51b15f4def51d79d80d.tar.bz2 podman-5099f189a5c9437c03bec51b15f4def51d79d80d.zip |
Increase CI resources to help avoid hitting timeouts
The build_each_commit task builds each commit in a pull request
to verify that we have a (at least minimally) functional Podman
at every point, to aid in bisecting.
This task is, right now, extremely slow, taking around 1m40s to
build each commit - which quickly grows unreasonable as PRs grow
to 10+ commits.
Upping resources available to the task should decrease time spent
in CI and reduce the risk of hitting timeouts.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 3516c7d61..ee83ffeba 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -179,9 +179,9 @@ build_each_commit_task: gce_instance: image_project: "libpod-218412" zone: "us-central1-a" # Required by Cirrus for the time being - cpu: 2 - memory: "4Gb" - disk: 40 + cpu: 8 + memory: "8Gb" + disk: 200 image_name: "${FEDORA_CACHE_IMAGE_NAME}" timeout_in: 30m |