Skip to content

Commit

Permalink
[CI] More memory
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed May 31, 2024
1 parent d4c2eda commit 4493305
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
print("Hello, world!", flush=True)
for i in range(7):
for i in range(8):
print(str(datetime.now()))
size = i * 1024 ** 2 * 1024
size = i * 1024 ** 3
print(f"I am about to allocate {size / 1024 ** 3} GiB of memory", flush=True)
a = bytearray(size)
time.sleep(20)
time.sleep(5)
a

0 comments on commit 4493305

Please sign in to comment.