From d8274996f0aca1ef588415307a66a8779f140a22 Mon Sep 17 00:00:00 2001 From: Joe Anderson Date: Sun, 18 May 2025 23:07:52 +0100 Subject: [PATCH 1/5] Set CPU limit for Next build --- site/next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/next.config.js b/site/next.config.js index 658890d374..4b611aece0 100644 --- a/site/next.config.js +++ b/site/next.config.js @@ -15,4 +15,8 @@ module.exports = { }) return config }, + // https://answers.netlify.com/t/basic-nextjs-website-failing-to-build-with-exit-code-129/120273/2 + experimental: { + cpus: 1, + }, } From 541e205c39e9a20c719a80268f617016d1830864 Mon Sep 17 00:00:00 2001 From: Joe Anderson Date: Sun, 18 May 2025 23:16:43 +0100 Subject: [PATCH 2/5] It looks like it worked, re-running to be sure From c811c910ef654122a7067b989113d22e4ee2dff5 Mon Sep 17 00:00:00 2001 From: Joe Anderson Date: Sun, 18 May 2025 23:19:30 +0100 Subject: [PATCH 3/5] That worked too, one more time... From d7e06c8ad822ce789ea0a9c857cd4690c152ce9f Mon Sep 17 00:00:00 2001 From: Joe Anderson Date: Sun, 18 May 2025 23:20:26 +0100 Subject: [PATCH 4/5] Revert "Set CPU limit for Next build" to make sure this is the fix This reverts commit d8274996f0aca1ef588415307a66a8779f140a22. --- site/next.config.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/site/next.config.js b/site/next.config.js index 4b611aece0..658890d374 100644 --- a/site/next.config.js +++ b/site/next.config.js @@ -15,8 +15,4 @@ module.exports = { }) return config }, - // https://answers.netlify.com/t/basic-nextjs-website-failing-to-build-with-exit-code-129/120273/2 - experimental: { - cpus: 1, - }, } From 3dcf5fce9d161603e3c79b9925550f8674867ade Mon Sep 17 00:00:00 2001 From: Joe Anderson Date: Sun, 18 May 2025 23:21:57 +0100 Subject: [PATCH 5/5] Un-revert "Set CPU limit for Next build" This reverts commit d7e06c8ad822ce789ea0a9c857cd4690c152ce9f. --- site/next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/next.config.js b/site/next.config.js index 658890d374..4b611aece0 100644 --- a/site/next.config.js +++ b/site/next.config.js @@ -15,4 +15,8 @@ module.exports = { }) return config }, + // https://answers.netlify.com/t/basic-nextjs-website-failing-to-build-with-exit-code-129/120273/2 + experimental: { + cpus: 1, + }, }