Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mainnet karlsenhashv2 #54

Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Increase Linux swapfile size in GitHub runner to avoid OOM
  • Loading branch information
lemois-1337 committed Aug 28, 2024
commit c56f01eaa981dc0694486d42314738135a61d613
15 changes: 15 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jobs:
if: runner.os == 'Windows'
run: powershell -command .github\workflows\SetPageFileSize.ps1

# Increase the swap size on Linux to aviod running out of memory
- name: Increase swap size on Linux
if: runner.os == 'Linux'
uses: thejerrybao/setup-swap-space@v1
with:
swap-size-gb: 12

- name: Setup Go
uses: actions/setup-go@v4
with:
Expand All @@ -43,6 +50,14 @@ jobs:
runs-on: ubuntu-latest
name: Fast stability tests
steps:

# Increase the swap size on Linux to aviod running out of memory
- name: Increase swap size on Linux
if: runner.os == 'Linux'
uses: thejerrybao/setup-swap-space@v1
with:
swap-size-gb: 12

- name: Setup Go
uses: actions/setup-go@v4
with:
Expand Down
Loading