From 84119ba11f71c974a0fd01b54ba0b6407336e503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Tue, 21 May 2024 11:31:14 +0100 Subject: [PATCH] [CI] Try to OOM --- .github/workflows/test.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a2d7e87a96..655faabb34 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,7 +18,9 @@ jobs: a = bytearray(1 * 1024 * 1024 * 1024) time.sleep(20) - b = bytearray(1 * 1024 * 1024 * 1024) + b = bytearray(2 * 1024 * 1024 * 1024) time.sleep(20) - c = bytearray(1 * 1024 * 1024 * 1024) + c = bytearray(3 * 1024 * 1024 * 1024) + time.sleep(20) + c = bytearray(4 * 1024 * 1024 * 1024) time.sleep(20)