workflows/eval: add swapfile to tackle recent borderline OOM (#371203)

This commit is contained in:
Silvan Mosberger
2025-01-05 21:16:46 +01:00
committed by GitHub
+7
View File
@@ -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: