Skip to content

Commit 437f7e3

Browse files
authored
ansible: add 2GB swap to debian x64 hosts (nodejs#3692)
Adds 2GB swap to - test-digitalocean-debian11-x64-1 - test-digitalocean-debian12-x64-1 - test-softlayer-debian12-x64-1 in an attempt to stabilize the CI after recent V8 updates.
1 parent eb7c35a commit 437f7e3

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

ansible/inventory.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ hosts:
111111
msft-win2016_vs2017-x64-2: {ip: nodejs.westus3.cloudapp.azure.com}
112112

113113
- digitalocean:
114-
debian11-x64-1: {ip: 174.138.79.159}
115-
debian12-x64-1: {ip: 159.203.105.159}
114+
debian11-x64-1: {ip: 174.138.79.159, swap_file_size_mb: 2048}
115+
debian12-x64-1: {ip: 159.203.105.159, swap_file_size_mb: 2048}
116116
fedora37-x64-1: {ip: 159.65.248.149}
117117
fedora38-x64-1: {ip: 162.243.187.89}
118118
fedora38-x64-2: {ip: 134.209.172.40}
@@ -306,4 +306,4 @@ hosts:
306306

307307
- softlayer:
308308
debian10-x64-1: {ip: 169.44.16.126}
309-
debian12-x64-1: {ip: 169.60.150.88}
309+
debian12-x64-1: {ip: 169.60.150.88, swap_file_size_mb: 2048}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
3+
#
4+
# debian 12
5+
#
6+
7+
- name: set up swap on Linux
8+
include_tasks: linux-swap.yml
9+
when: swap_file_size_mb is defined

0 commit comments

Comments
 (0)