guix_mirror_bot pushed a commit to branch javascript-team
in repository guix.

commit 504dda26bd8e6b18f0f1802a457760d1511bbd92
Author: Jelle Licht <[email protected]>
AuthorDate: Tue May 6 20:38:35 2025 +0200

    gnu: node-lts: Update to 24.0.1.
    
    * gnu/packages/node.scm (node-lts): Update to 24.0.1.
    [arguments]<#:phases>: Add timing-sensitive test to 
'delete-problematic-tests
    phase.
    [native-inputs]: Add gcc-14.
    
    Change-Id: I28fc890e40070dc50bd40b89c1bd98ffabc7be5d
---
 gnu/packages/node.scm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 1e460f8db5..1bb1256e8f 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -747,14 +747,14 @@ source files.")
 (define-public node-lts
   (package
     (inherit node-bootstrap)
-    (version "22.14.0")
+    (version "24.0.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://nodejs.org/dist/v"; version
                                   "/node-v" version ".tar.gz"))
               (sha256
                (base32
-                "12msprh604s6qdsgwymxw4kl8ivaldbaydf4v37lbp02aznk2kkc"))
+                "024mr7260zk8n0ny1rdlf9qlmxwrkh0pcbkzcms4dxsnzv9jlbz0"))
               (modules '((guix build utils)))
               (snippet
                '(begin
@@ -846,9 +846,11 @@ source files.")
                (for-each delete-file
                          '("test/parallel/test-https-agent-unref-socket.js"))
 
-               ;; This test is timing-sensitive, and fails sporadically on
+               ;; These tests are timing-sensitive, and fail sporadically on
                ;; slow, busy, or even very fast machines.
-               (delete-file "test/parallel/test-fs-utimes.js")
+               (for-each delete-file
+                         '("test/parallel/test-fs-utimes.js"
+                           
"test/sequential/test-performance-eventloopdelay.js"))
 
                ;; FIXME: This test fails randomly:
                ;; https://github.com/nodejs/node/issues/31213
@@ -974,7 +976,8 @@ fi"
            pkg-config
            procps
            python
-           util-linux))
+           util-linux
+           gcc-14))
     (inputs
      (list bash-minimal
            coreutils

Reply via email to