Skip to content
Snippets Groups Projects
Unverified Commit 31342ff8 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

database: Add db-restart-build! support.

* src/cuirass/database.scm (db-restart-build!): New procedure.
* tests/database.scm (db-restart-build!): New test.
parent 860fffa2
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,7 @@
db-register-builds
db-update-build-status!
db-update-build-worker!
db-restart-build!
db-get-build-products
db-get-builds-by-search
db-get-builds
......@@ -833,6 +834,13 @@ UPDATE Builds SET stoptime =" now
(exec-query/bind db "UPDATE Builds SET worker=" worker
"WHERE derivation=" drv ";")))
(define (db-restart-build! build-id)
"Restart the build with BUILD-ID id."
(with-db-worker-thread db
(exec-query/bind db "UPDATE Builds SET status="
(build-status scheduled)
"WHERE id=" build-id ";")))
(define (query->bind-arguments query-string)
"Return a list of keys to query strings by parsing QUERY-STRING."
(define status-values
......
......@@ -490,6 +490,12 @@ timestamp, checkouttime, evaltime) VALUES ('guix', 0, 0, 0, 0);")
(db-update-build-status! "/new-build.drv" 1)
(assq-ref (db-get-build "/new-build.drv") #:weather)))
(test-assert "db-restart-build!"
(let ((build (db-get-build "/new-build.drv")))
(db-restart-build! (assq-ref build #:id))
(eq? (assq-ref (db-get-build "/new-build.drv") #:status)
(build-status scheduled))))
(test-assert "db-close"
(begin
(exec-query (%db) (format #f "DROP OWNED BY CURRENT_USER;"))
......
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