Skip to content

Commit

Permalink
workflows/eval: add swapfile to tackle recent borderline OOM (#371203)
Browse files Browse the repository at this point in the history
  • Loading branch information
infinisil authored Jan 5, 2025
2 parents 4d24b79 + 9ccdc41 commit 7f9f600
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 7f9f600

Please sign in to comment.