Skip to content
Snippets Groups Projects
Commit ad577114 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

base: 'spawn-builds' correctly keeps track of remaining builds.

Fixes <https://bugs.gnu.org/30645>.
Reported by Andreas Enge <andreas@enge.fr>.

* src/cuirass/base.scm (spawn-builds): Fix TOTAL vs. COUNT mismatches.
parent f083282f
No related branches found
No related tags found
No related merge requests found
......@@ -368,7 +368,7 @@ MAX-BATCH-SIZE items."
(define total (length jobs))
(log-message "building ~a derivations in batches of ~a"
(length jobs) max-batch-size)
total max-batch-size)
;; Shuffle jobs so that we don't build sequentially i686/x86_64/aarch64,
;; master/core-updates, etc., which would be suboptimal.
......@@ -377,7 +377,7 @@ MAX-BATCH-SIZE items."
(if (zero? count)
(log-message "done with ~a derivations" total)
(let*-values (((batch rest)
(if (> total max-batch-size)
(if (> count max-batch-size)
(split-at jobs max-batch-size)
(values jobs '())))
((drv)
......@@ -408,7 +408,7 @@ MAX-BATCH-SIZE items."
;; adjust DB here.
(update-build-statuses! store db drv)
(loop rest (max (- total max-batch-size) 0))))))
(loop rest (max (- count max-batch-size) 0))))))
(define* (handle-build-event db event)
"Handle EVENT, a build event sexp as produced by 'build-event-output-port',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment