Unset MAKEFLAGS so it doesn't affect local builds.
[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 (* Unset MAKEFLAGS so it doesn't affect local builds. *)
107 let () = Unix.putenv "MAKEFLAGS" ""
108
109 (* Goal: rebuild all packages. *)
110 let rec goal all () =
111   List.iter (fun pkg -> require (rebuild_started pkg)) source_packages
112
113 (* Goal: That 'package' has been rebuilt and exists in Koji. *)
114 and rebuilt pkg =
115   let specfile = fedora_specfile pkg branch in
116
117   (* Note: verrel may change as we go along, so don't assign it to
118    * variable.
119    *)
120
121   (* Note the target must be both of these because the old verrel
122    * could exist as a koji build without it having been part of the
123    * rebuild.
124    *)
125   target (ignored pkg ||
126             (file_contains_string specfile rebuild_name &&
127                koji_build_state (fedora_verrel pkg branch) == `Complete));
128
129   (* Ignored packages are treated as if they have been rebuilt. *)
130   if not (ignored pkg) then (
131
132     (* Start the rebuild. *)
133     require (rebuild_started pkg);
134
135     (* Wait for the build state to reach a conclusion. *)
136     let rec loop () =
137       match koji_build_state (fedora_verrel pkg branch) with
138       | `No_such_build ->
139         failwith (sprintf "rebuild of package %s: no build found" pkg)
140       | `Building ->
141         sleep 60;
142         loop ()
143       | `Complete ->
144         ()
145       | `Deleted ->
146         failwith (sprintf "rebuild of package %s: deleted" pkg)
147       | `Failed ->
148         failwith (sprintf "rebuild of package %s: failed" pkg)
149       | `Canceled ->
150         failwith (sprintf "rebuild of package %s: canceled" pkg)
151     in
152     loop ();
153
154     (* Wait for the build to appear in Koji repo. *)
155     koji_wait_repo koji_target (fedora_verrel pkg branch)
156   )
157
158 (* Goal: The rebuild of the package has started, but we haven't waited
159  * for it to finish.
160  *)
161 and rebuild_started pkg =
162   let deps = List.assoc pkg pkg_deps in
163   let specfile = fedora_specfile pkg branch in
164
165   (* Note the target must be both of these because the old verrel
166    * could exist as a koji build without it having been part of the
167    * rebuild.
168    *)
169   target (ignored pkg ||
170             (file_contains_string specfile rebuild_name &&
171                (match koji_build_state (fedora_verrel pkg branch) with
172                | `Building | `Complete -> true
173                | `Deleted | `Failed | `Canceled | `No_such_build -> false)));
174
175   (* All dependent packages must have been fully rebuilt and in the
176    * repo first.
177    *)
178   List.iter (fun dep -> require (rebuilt dep)) deps;
179
180   (* Ignored packages are treated as if they have been rebuilt. *)
181   if not (ignored pkg) then (
182     (* A local test build must succeed. *)
183     require (local_build_succeeded pkg);
184
185     (* Rebuild the package in Koji.  Don't wait ... *)
186     koji_build ~wait:false pkg branch;
187
188     (* ... but the build doesn't appear in Koji (eg. in 'koji
189      * buildinfo') until the SRPM has been built.  This can take quite
190      * some time.  Loop here until the build appears.
191      *)
192     let rec loop () =
193       match koji_build_state (fedora_verrel pkg branch) with
194       | `No_such_build ->
195         sleep 60;
196         loop ();
197       | `Building | `Complete ->
198         ()
199       | `Deleted ->
200         failwith (sprintf "rebuild of package %s: deleted" pkg)
201       | `Failed ->
202         failwith (sprintf "rebuild of package %s: failed" pkg)
203       | `Canceled ->
204         failwith (sprintf "rebuild of package %s: canceled" pkg)
205     in
206     loop ()
207   )
208
209 and local_build_succeeded pkg =
210   (* The specfile must have been updated. *)
211   require (specfile_updated pkg);
212
213   let key =
214     sprintf "fedora_ocaml_local_build_%s_%s" pkg (fedora_verrel pkg branch) in
215
216   target (memory_exists key);
217
218   install_build_dependencies pkg;
219
220  (* Do a local test build to ensure the Koji build will work. *)
221   sh "
222     cd %s
223      fedpkg local
224   " (fedora_repo pkg branch);
225
226   memory_set key "1"
227
228 and specfile_updated pkg =
229   let repodir = fedora_repo pkg branch in
230   let specfile = fedora_specfile pkg branch in
231
232   sh "
233     cd %s
234     rm -rf x86_64 noarch *.src.rpm .build* clog
235     git fetch
236   " repodir;
237
238   if not (git_has_local_changes repodir) then
239     sh "
240       cd %s
241       git pull --rebase
242     " repodir;
243
244   install_build_dependencies pkg;
245
246   (* For rationale behind always bumping the spec file, see comment
247    * in 'fedora.ml'.
248    *)
249   let title =
250     if not (file_contains_string specfile rebuild_name) then
251       rebuild_name ^ " rebuild."
252     else
253       "Bump release and rebuild." in
254   sh "rpmdev-bumpspec -c %s %s" (quote title) specfile;
255
256   (* XXX Automate common specfile fixes. *)
257
258   sh "
259     cd %s
260     echo 'Please make further changes as required to the spec file %s.spec'
261     echo '(Press return key)'
262     read
263     emacs -nw %s
264     echo 'OK to commit this change? (press ^C if not)'
265     read
266     fedpkg commit -c
267     echo 'OK to push this change? (press ^C if not)'
268     read
269     fedpkg push
270   " repodir
271     pkg
272     specfile