Update branches for libguestfs 1.32.
[goaljobs-goals.git] / libguestfs_upstream.ml
1 (* This goal script is responsible for:
2  *  - testing each new commit to the libguestfs source repo
3  *  - checking for new upstream releases of libguestfs
4  *  - testing new upstream releases
5  *  - packaging them as a source tarball
6  *  - testing the source tarball on a variety of systems
7  *  - if all the above works, uploading the external website
8  * Note this doesn't build the Fedora releases.  See 'libguestfs_fedora.ml'.
9  *)
10
11 open Goaljobs
12 open Printf
13 open Config
14 open Libguestfs
15
16 (* Enable debugging. *)
17 let () =
18   Unix.putenv "LIBGUESTFS_DEBUG" "1";
19   Unix.putenv "LIBGUESTFS_TRACE" "1"
20
21 (* Log program output. *)
22 let from = "rjones@redhat.com"
23 let to_ = "rjones@redhat.com"
24 (*
25 let logfile = log_program_output ()
26 let () = eprintf "logging to %s\n%!" logfile
27 *)
28
29 let package = "libguestfs"
30
31 (* Goal: the website has been updated to 'version'. *)
32 let rec goal website_updated version =
33   target (url_exists version.url);
34
35   require (tarball_created version);
36   require (tarball_tested version);
37
38   (* We only update the website for the development releases. *)
39   if not version.is_stable then
40     require (website_built version);
41
42   require (website_checked_in version);
43   require (website_rsync_done version)
44
45 (* Goal: website has been rsync'd. *)
46 and website_rsync_done version =
47   target (url_contains_string "http://libguestfs.org" version.version &&
48           url_exists version.url);
49
50   sh "
51     cd %s
52     ./.rsync
53   " libguestfs_website_repo
54
55 (* Goal: Tarball added to repository and checked in. *)
56 and website_checked_in version =
57   let key = sprintf "libguestfs_website_checked_in_%s" version.version in
58   target (memory_exists key);
59   onrun (fun () -> memory_set key "1");
60
61   require (tarball_created version);
62   require (tarball_tested version);
63
64   sh "
65     cd %s
66     cp %s/tarballs/%s %s
67     git add %s
68     git add *.txt *.html
69     git commit -m \"Version %s\"
70   " libguestfs_website_repo
71     buildtmp version.tarball version.urlpath
72     version.urlpath
73     version.version
74
75 (* Goal: website (local copy) has been built. *)
76 and website_built version =
77   let index_file = sprintf "%s/index.html" libguestfs_website_repo in
78   target (file_contains_string index_file version.version);
79
80   require (tarball_created version);
81   require (tarball_tested version);
82
83   (* We should only update the website on development releases. *)
84   assert (not version.is_stable);
85
86   sh "
87     tar zxf %s/tarballs/%s
88     cd %s
89
90     echo %s > localconfigure
91     chmod +x localconfigure
92     echo %s > localenv
93
94     ./localconfigure
95     make V=1
96     make maintainer-upload-website WEBSITEDIR=%s
97   " buildtmp version.tarball
98     version.package_version
99     (quote (libguestfs_localconfigure `Tarball))
100     (quote (libguestfs_localenv (supermin version)))
101     (quote libguestfs_website_repo)
102
103 (* Goal: the tarball has passed the required set of tests before
104  * a release is allowed.
105  *)
106 and tarball_tested version =
107   let key = sprintf "libguestfs_tarball_tested_%s" version.version in
108   target (memory_exists key);
109   onrun (fun () -> memory_set key "1");
110
111   require (tarball_created version);
112
113   sh "
114     tar zxf %s/tarballs/%s
115     cd %s
116
117     echo %s > localconfigure
118     chmod +x localconfigure
119     echo %s > localenv
120
121     ./localconfigure
122     make V=1
123     make check-release
124   " buildtmp version.tarball
125     version.package_version
126     (quote (libguestfs_localconfigure `Tarball))
127     (quote (libguestfs_localenv (supermin version)))
128
129 (* Goal: the tarball has been created from git. *)
130 and tarball_created version =
131   let filename = sprintf "%s/tarballs/%s" buildtmp version.tarball in
132   target (file_exists filename);
133
134   require (repo_up_to_date version.branch);
135
136   let repodir = sprintf "%s/repos/%s-%s" buildtmp package version.branch in
137
138   sh "
139     cp -a %s libguestfs
140     cd libguestfs
141     git reset --hard %s
142
143     echo %s > localconfigure
144     chmod +x localconfigure
145     echo %s > localenv
146
147     ./localconfigure
148
149     # Ensure the po-docs are updated.  Grrr this is ugly ...
150     make ||:
151     rm po-docs/podfiles
152     make -C po-docs update-po
153
154     make V=1
155     make dist
156
157     # Ensure redhat hardening flags didn't leak into the tarball.
158     # https://bugzilla.redhat.com/show_bug.cgi?id=1214506
159     if zcat %s | grep -q redhat-hardened; then exit 1; fi
160
161     mv %s %s/tarballs/%s
162   " repodir
163     version.version
164     (quote (libguestfs_localconfigure `Git))
165     (quote (libguestfs_localenv (supermin version)))
166     version.tarball
167     version.tarball buildtmp version.tarball
168
169 (* Goal: test a commit. *)
170 and commit_tested branch commit =
171   onfail (
172     fun _ ->
173       let subject = sprintf "goal: %s: FAILED" goalname in
174       mailto ~from ~subject (*~attach:[logfile]*) to_
175   );
176
177   let key = sprintf "libguestfs_commit_tested_%s" commit in
178   target (memory_exists key);
179   onrun (fun () -> memory_set key "1");
180
181   require (repo_up_to_date branch);
182
183   let repodir = sprintf "%s/repos/%s-%s" buildtmp package branch in
184
185   sh "
186     cp -a %s libguestfs
187     cd libguestfs
188     git reset --hard %s
189
190     echo %s > localconfigure
191     chmod +x localconfigure
192     echo %s > localenv
193
194     ./localconfigure
195     make V=1
196     make check-release
197   " repodir
198     commit
199     (quote (libguestfs_localconfigure `Git))
200     (quote (libguestfs_localenv None))
201
202 and repo_up_to_date branch =
203   git_force branch
204
205 let () =
206   (* Add a periodic job to check for new git commits and test them. *)
207   every libguestfs_query_mins minutes ~name:"new libguestfs commit" (
208     fun () ->
209       require (repo_up_to_date "master");
210       let commit = git_latest_commit "master" in
211       require (commit_tested "master" commit);
212   );
213
214   (* Periodic job to build new tarballs. *)
215   every libguestfs_query_mins minutes ~name:"new libguestfs version" (
216     fun () ->
217       require (repo_up_to_date "master");
218       let version = git_latest_version "master" in
219       require (website_updated version)
220   )
221
222 (* Allow these jobs to run from the command line. *)
223 let () =
224   publish "commit" (
225     function
226     | [commit] -> require (commit_tested "master" commit)
227     | [branch; commit] -> require (commit_tested branch commit)
228     | _ ->
229       failwith "use './libguestfs_upstream commit [<branch>] <commit>'"
230   );
231   publish "release" (
232     function
233     | [version] -> require (website_updated (vernames version))
234     | _ ->
235       failwith "use './libguestfs_upstream release <version>'"
236   )