From 2c1a293d1eb251f53e4bcb874158bc6b49de6531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Tue, 21 May 2024 11:24:36 +0100 Subject: [PATCH] [CI] Allocate more memory --- .github/workflows/test.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f8c9ccc2ec..a2d7e87a96 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,7 +12,13 @@ jobs: - name: Collect Workflow Telemetry uses: catchpoint/workflow-telemetry-action@v2 - name: Test + shell: python3 {0} run: | - date - python3 -c 'bytearray(2 * 1024 * 1024 * 1024); import time; time.sleep(60)' - date + import time + + a = bytearray(1 * 1024 * 1024 * 1024) + time.sleep(20) + b = bytearray(1 * 1024 * 1024 * 1024) + time.sleep(20) + c = bytearray(1 * 1024 * 1024 * 1024) + time.sleep(20)