Skip to content

Commit

Permalink
[CI] Allocate more memory
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed May 21, 2024
1 parent c69e321 commit 2c1a293
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 2c1a293

Please sign in to comment.