mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
workflows/eval: add swap to tackle recent borderline OOM
Removed in https://github.com/NixOS/nixpkgs/pull/356023#discussion_r1844961453 Due to https://github.com/NixOS/nixpkgs/issues/355847#issuecomment-2566688172 https://github.com/NixOS/nixpkgs/issues/355847#issuecomment-2559907806 https://github.com/NixOS/nixpkgs/issues/355847#issuecomment-2543915995
This commit is contained in:
parent
538b8b43e2
commit
9ccdc413e4
1 changed files with 7 additions and 0 deletions
7
.github/workflows/eval.yml
vendored
7
.github/workflows/eval.yml
vendored
|
@ -85,6 +85,13 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
system: ${{ fromJSON(needs.attrs.outputs.systems) }}
|
system: ${{ fromJSON(needs.attrs.outputs.systems) }}
|
||||||
steps:
|
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
|
- name: Download the list of all attributes
|
||||||
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue