Sort the packages that we build smartly.
[goaljobs-goals.git] / fedora_ocaml_rebuild.ml
1 (* Perform a complete Fedora OCaml rebuild, in build order. *)
2
3 open Unix
4 open Printf
5
6 open Goaljobs
7 open Config
8 open Git
9 open Fedora
10
11 let branch = "master"
12 let koji_target = "rawhide"
13
14 (* The name of the rebuild, and also the magic substring that must
15  * appear in the %changelog when the package has been rebuilt.
16  *)
17 let rebuild_name = "ocaml-4.02.0-0.8.git10e45753.fc22"
18
19 (* Local repository that contains build dependencies. *)
20 let yum_repo = "koji-rawhide"
21
22 (* Packages that have problems.  These block the packages and all
23  * dependent packages.
24  *)
25 let blocked = [
26   "ocaml-mikmatch";                     (* build failure on 4.02.0 *)
27   "ocaml-omake";                        (* build failure on 4.02.0 with hevea *)
28   "ocaml-p3l";                          (* build failure on 4.02.0 -warn-error A *)
29   "ocaml-pa-do";                        (* build failure, complex *)
30   "ocaml-lwt";                          (* build failure on 4.02.0 *)
31   "ocaml-preludeml";                    (* build failure *)
32   "frama-c";                            (* build failure *)
33 ]
34 let blocked pkg = List.mem pkg blocked
35
36 (* These packages are treated as if they have been rebuilt. *)
37 let ignored = [
38   "ocaml-srpm-macros";             (* don't need to build this *)
39   "ocaml";                         (* rebuilt by hand *)
40   "whenjobs";                      (* obsolete *)
41   "libguestfs";                    (* rebuilt by hand *)
42   "graphviz";                      (* rebuilt by hand *)
43   "xen";                           (* already done *)
44   "plplot";                        (* already done *)
45 ]
46 let ignored pkg = List.mem pkg ignored
47
48 (* List of OCaml-related source package names. *)
49 let source_packages =
50   let dirs = shlines "cd %s && ls -1d ocaml*" fedora_dir in
51   dirs @ [ "alt-ergo"; "apron"; "brltty"; "coccinelle"; "coq";
52            "cduce"; "frama-c"; "gappalib-coq"; "graphviz"; "hivex";
53            "js-of-ocaml"; "llvm"; "plplot"; "why3"; "xen" ]
54
55 (* Dependencies of each package.  (pkg, [deps ...]) *)
56 let pkg_deps = dependencies branch source_packages
57
58 (* Remove blocked packages and packages which have a blocked package
59  * as a dependency (recursively).
60  *)
61 let source_packages =
62   let rec is_blocked pkg =
63     if blocked pkg then true
64     else (
65       let deps = List.assoc pkg pkg_deps in
66       List.exists is_blocked deps
67     )
68   in
69   List.filter (fun pkg -> not (is_blocked pkg)) source_packages
70
71 (* Short the dependencies lists so that the build order is stable
72  * each time it runs.
73  *)
74 let pkg_deps =
75   List.map (fun (pkg, deps) -> pkg, List.sort compare deps) pkg_deps
76
77 (* Sort the source packages so that the packages with the largest
78  * number of reverse dependencies [other packages that depend on it]
79  * appear earlier in the list, on the basis that building these
80  * packages first has the greatest advantage.
81  *)
82 let source_packages =
83   let rdeps pkg =
84     Utils.filter_map (
85       fun (rdep, deps) -> if List.mem pkg deps then Some rdep else None
86     ) pkg_deps
87   in
88   let cmp p1 p2 =
89     let r1 = rdeps p1 and r2 = rdeps p2 in
90     let n1 = List.length r1 and n2 = List.length r2 in
91     if n1 <> n2 then compare n2 n1 else compare p1 p2
92   in
93   List.sort cmp source_packages
94
95 let () =
96   printf "final list of source packages = %s\n%!"
97     (String.concat " " source_packages)
98
99 (* We could make this a goal, but it's cheap enough to run it unconditionally. *)
100 let install_build_dependencies pkg =
101   sh "sudo yum clean all --disablerepo=\\* --enablerepo=%s"
102     (quote yum_repo);
103   sh "sudo yum-builddep -y --disablerepo=\\* --enablerepo=%s %s"
104     (quote yum_repo) (fedora_specfile pkg branch)
105
106 (* Goal: rebuild all packages. *)
107 let rec goal all () =
108   List.iter (fun pkg -> require (rebuild_started pkg)) source_packages
109
110 (* Goal: That 'package' has been rebuilt and exists in Koji. *)
111 and rebuilt pkg =
112   let specfile = fedora_specfile pkg branch in
113
114   (* Note: verrel may change as we go along, so don't assign it to
115    * variable.
116    *)
117
118   (* Note the target must be both of these because the old verrel
119    * could exist as a koji build without it having been part of the
120    * rebuild.
121    *)
122   target (ignored pkg ||
123             (file_contains_string specfile rebuild_name &&
124                koji_build_state (fedora_verrel pkg branch) == `Complete));
125
126   (* Ignored packages are treated as if they have been rebuilt. *)
127   if not (ignored pkg) then (
128
129     (* Start the rebuild. *)
130     require (rebuild_started pkg);
131
132     (* Wait for the build state to reach a conclusion. *)
133     let rec loop () =
134       match koji_build_state (fedora_verrel pkg branch) with
135       | `No_such_build ->
136         failwith (sprintf "rebuild of package %s: no build found" pkg)
137       | `Building ->
138         sleep 60;
139         loop ()
140       | `Complete ->
141         ()
142       | `Deleted ->
143         failwith (sprintf "rebuild of package %s: deleted" pkg)
144       | `Failed ->
145         failwith (sprintf "rebuild of package %s: failed" pkg)
146       | `Canceled ->
147         failwith (sprintf "rebuild of package %s: canceled" pkg)
148     in
149     loop ();
150
151     (* Wait for the build to appear in Koji repo. *)
152     koji_wait_repo koji_target (fedora_verrel pkg branch)
153   )
154
155 (* Goal: The rebuild of the package has started, but we haven't waited
156  * for it to finish.
157  *)
158 and rebuild_started pkg =
159   let deps = List.assoc pkg pkg_deps in
160   let specfile = fedora_specfile pkg branch in
161
162   (* Note the target must be both of these because the old verrel
163    * could exist as a koji build without it having been part of the
164    * rebuild.
165    *)
166   target (ignored pkg ||
167             (file_contains_string specfile rebuild_name &&
168                (match koji_build_state (fedora_verrel pkg branch) with
169                | `Building | `Complete -> true
170                | `Deleted | `Failed | `Canceled | `No_such_build -> false)));
171
172   (* All dependent packages must have been fully rebuilt and in the
173    * repo first.
174    *)
175   List.iter (fun dep -> require (rebuilt dep)) deps;
176
177   (* Ignored packages are treated as if they have been rebuilt. *)
178   if not (ignored pkg) then (
179     (* A local test build must succeed. *)
180     require (local_build_succeeded pkg);
181
182     (* Rebuild the package in Koji.  Don't wait ... *)
183     koji_build ~wait:false pkg branch;
184
185     (* ... but the build doesn't appear in Koji (eg. in 'koji
186      * buildinfo') until the SRPM has been built.  This can take quite
187      * some time.  Loop here until the build appears.
188      *)
189     let rec loop () =
190       match koji_build_state (fedora_verrel pkg branch) with
191       | `No_such_build ->
192         sleep 60;
193         loop ();
194       | `Building | `Complete ->
195         ()
196       | `Deleted ->
197         failwith (sprintf "rebuild of package %s: deleted" pkg)
198       | `Failed ->
199         failwith (sprintf "rebuild of package %s: failed" pkg)
200       | `Canceled ->
201         failwith (sprintf "rebuild of package %s: canceled" pkg)
202     in
203     loop ()
204   )
205
206 and local_build_succeeded pkg =
207   (* The specfile must have been updated. *)
208   require (specfile_updated pkg);
209
210   let key =
211     sprintf "fedora_ocaml_local_build_%s_%s" pkg (fedora_verrel pkg branch) in
212
213   target (memory_exists key);
214
215   install_build_dependencies pkg;
216
217  (* Do a local test build to ensure the Koji build will work. *)
218   sh "
219     cd %s
220      fedpkg local
221   " (fedora_repo pkg branch);
222
223   memory_set key "1"
224
225 and specfile_updated pkg =
226   let repodir = fedora_repo pkg branch in
227   let specfile = fedora_specfile pkg branch in
228
229   sh "
230     cd %s
231     rm -rf x86_64 noarch *.src.rpm .build* clog
232     git fetch
233   " repodir;
234
235   if not (git_has_local_changes repodir) then
236     sh "
237       cd %s
238       git pull --rebase
239     " repodir;
240
241   install_build_dependencies pkg;
242
243   (* For rationale behind always bumping the spec file, see comment
244    * in 'fedora.ml'.
245    *)
246   let title =
247     if not (file_contains_string specfile rebuild_name) then
248       rebuild_name ^ " rebuild."
249     else
250       "Bump release and rebuild." in
251   sh "rpmdev-bumpspec -c %s %s" (quote title) specfile;
252
253   (* XXX Automate common specfile fixes. *)
254
255   sh "
256     cd %s
257     echo 'Please make further changes as required to the spec file %s.spec'
258     echo '(Press return key)'
259     read
260     emacs -nw %s
261     echo 'OK to commit this change? (press ^C if not)'
262     read
263     fedpkg commit -c
264     echo 'OK to push this change? (press ^C if not)'
265     read
266     fedpkg push
267   " repodir
268     pkg
269     specfile