From 5099f189a5c9437c03bec51b15f4def51d79d80d Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Thu, 4 Apr 2019 18:14:05 -0400 Subject: 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 --- .cirrus.yml | 6 +++--- 1 file 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 -- cgit v1.2.3-54-g00ecf