ci: Increase requested memory size.
authorThomas Munro <tmunro@postgresql.org>
Wed, 21 Sep 2022 23:35:46 +0000 (11:35 +1200)
committerThomas Munro <tmunro@postgresql.org>
Wed, 21 Sep 2022 23:36:19 +0000 (11:36 +1200)
CI builds recently started failing with:

"Memory size for 4.0 vCPU instance should be between 3840MiB and
26624MiB, while 2048MiB is requested."

Ok then, let's ask for 4G instead of 2G.

This may be due to a change in the type of instance used to work around
an outage, per:

https://twitter.com/cirrus_labs/status/1572657320093712384

.cirrus.yml

index 81eb8a9996d7b914e5738f55e336afd2d817a1cd..df91b8935372634b125d18faede359024a13d65d 100644 (file)
@@ -55,7 +55,7 @@ task:
     image: family/pg-ci-freebsd-13
     platform: freebsd
     cpu: $CPUS
-    memory: 2G
+    memory: 4G
     disk: 50
 
   sysinfo_script: |
@@ -166,7 +166,7 @@ task:
     image: family/pg-ci-bullseye
     platform: linux
     cpu: $CPUS
-    memory: 2G
+    memory: 4G
 
   ccache_cache:
     folder: ${CCACHE_DIR}