Skip to content

Commit

Permalink
workflows/eval: add swap to tackle recent borderline OOM
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRTitor authored and yechielw committed Jan 6, 2025
1 parent 1f6e726 commit a0628ad
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ jobs:
matrix:
system: ${{ fromJSON(needs.attrs.outputs.systems) }}
steps:
- name: Enable swap
run: |
sudo fallocate -l 10G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
- name: Download the list of all attributes
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
Expand Down

0 comments on commit a0628ad

Please sign in to comment.