diff options
author | Jelle Licht <jlicht@fsfe.org> | 2025-05-06 20:38:35 +0200 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2025-10-13 09:55:13 +0200 |
commit | 504dda26bd8e6b18f0f1802a457760d1511bbd92 (patch) | |
tree | a17a991078a2ba77be0fc9ec9e749eb7a5f2e153 | |
parent | d35bac039be48892078ec1c191479687aea2375e (diff) |
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
-rw-r--r-- | gnu/packages/node.scm | 13 |
1 files 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 |