Skip to content

Commit

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

0 comments on commit 84119ba

Please sign in to comment.