2021-07-07 10:46:53 +00:00
|
|
|
let orb_left_in_builds =
|
|
|
|
Caqti_request.collect ~oneshot:true
|
|
|
|
Caqti_type.unit
|
|
|
|
(Caqti_type.tup2 (Builder_db.Rep.id `build_artifact) Builder_db.Rep.fpath)
|
|
|
|
{| SELECT id, localpath FROM build_artifact
|
|
|
|
WHERE filepath = 'orb.deb' OR filepath = 'orb.txz'
|
|
|
|
|}
|
|
|
|
|
|
|
|
let fixup datadir (module Db : Caqti_blocking.CONNECTION) =
|
2021-10-20 09:10:43 +00:00
|
|
|
let open Grej.Infix in
|
2021-07-07 10:46:53 +00:00
|
|
|
Grej.check_version ~user_version:12L (module Db) >>= fun () ->
|
|
|
|
Db.rev_collect_list orb_left_in_builds () >>= fun leftover_orb ->
|
|
|
|
Grej.list_iter_result
|
|
|
|
(fun (id, path) ->
|
|
|
|
Bos.OS.File.delete (Fpath.append datadir path) >>= fun () ->
|
|
|
|
Db.exec Builder_db.Build_artifact.remove id)
|
|
|
|
leftover_orb
|