Skip to content

Commit

Permalink
[CI] Allocate more
Browse files Browse the repository at this point in the history
Now we should have much more memory available
  • Loading branch information
giordano committed May 22, 2024
1 parent 44cc826 commit 2190681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2190681

Please sign in to comment.