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
Removed in #356023 (comment)

Due to #355847 (comment) #355847 (comment) #355847 (comment)

(cherry picked from commit 9ccdc41)
  • Loading branch information
JohnRTitor authored and wolfgangwalther committed Jan 11, 2025
1 parent c2ab54c commit a6ea384
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 a6ea384

Please sign in to comment.