From 219068128951f2e993e926f37478f766132a21de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Wed, 22 May 2024 18:39:49 +0100 Subject: [PATCH] [CI] Allocate more Now we should have much more memory available --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a4d8ab5778..fb0f5eeb01 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -42,7 +42,7 @@ jobs: for i in range(11): print(str(datetime.now())) - size = i * 1024 ** 2 * 256 + size = i * 1024 ** 2 * 1024 print(f"I am about to allocate {size / 1024 ** 3} GiB of memory", flush=True) a = bytearray(size) time.sleep(5)