libguestfs: Website directory has moved, and it's now a git repo not CVS.
[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     # Copy in the builder/website templates.
95     cp -a $HOME/d/libguestfs/builder/website/*.xz builder/website/
96
97     ./localconfigure
98     make
99     make website WEBSITEDIR=%s
100   " buildtmp version.tarball
101     version.package_version
102     (quote (libguestfs_localconfigure `Tarball))
103     (quote libguestfs_localenv)
104     (quote libguestfs_website_repo)
105
106 (* Goal: the tarball has passed the required set of tests before
107  * a release is allowed.
108  *)
109 and tarball_tested version =
110   let key = sprintf "libguestfs_tarball_tested_%s" version.version in
111   target (memory_exists key);
112   onrun (fun () -> memory_set key "1");
113
114   require (tarball_created version);
115
116   sh "
117     tar zxf %s/tarballs/%s
118     cd %s
119
120     echo %s > localconfigure
121     chmod +x localconfigure
122     echo %s > localenv
123
124     ./localconfigure
125     make
126     make check-release
127   " buildtmp version.tarball
128     version.package_version
129     (quote (libguestfs_localconfigure `Tarball))
130     (quote libguestfs_localenv)
131
132 (* Goal: the tarball has been created from git. *)
133 and tarball_created version =
134   let filename = sprintf "%s/tarballs/%s" buildtmp version.tarball in
135   target (file_exists filename);
136
137   require (repo_up_to_date version.branch);
138
139   let repodir = sprintf "%s/repos/%s-%s" buildtmp package version.branch in
140
141   sh "
142     cp -a %s libguestfs
143     cd libguestfs
144     git reset --hard %s
145
146     echo %s > localconfigure
147     chmod +x localconfigure
148     echo %s > localenv
149
150     ./localconfigure
151     make
152     make dist
153     mv %s %s/tarballs/%s
154   " repodir
155     version.version
156     (quote (libguestfs_localconfigure `Git))
157     (quote libguestfs_localenv)
158     version.tarball buildtmp version.tarball
159
160 (* Goal: test a commit. *)
161 and commit_tested branch commit =
162   onfail (
163     fun _ ->
164       let subject = sprintf "goal: %s: FAILED" goalname in
165       mailto ~from ~subject (*~attach:[logfile]*) to_
166   );
167
168   let key = sprintf "libguestfs_commit_tested_%s" commit in
169   target (memory_exists key);
170   onrun (fun () -> memory_set key "1");
171
172   require (repo_up_to_date branch);
173
174   let repodir = sprintf "%s/repos/%s-%s" buildtmp package branch in
175
176   sh "
177     cp -a %s libguestfs
178     cd libguestfs
179     git reset --hard %s
180
181     echo %s > localconfigure
182     chmod +x localconfigure
183     echo %s > localenv
184
185     ./localconfigure
186     make
187     make check-release
188   " repodir
189     commit
190     (quote (libguestfs_localconfigure `Git))
191     (quote libguestfs_localenv)
192
193 and repo_up_to_date branch =
194   git_force branch
195
196 let () =
197   (* Add a periodic job to check for new git commits and test them. *)
198   every libguestfs_query_mins minutes ~name:"new libguestfs commit" (
199     fun () ->
200       require (repo_up_to_date "master");
201       let commit = git_latest_commit "master" in
202       require (commit_tested "master" commit);
203   );
204
205   (* Periodic job to build new tarballs. *)
206   every libguestfs_query_mins minutes ~name:"new libguestfs version" (
207     fun () ->
208       require (repo_up_to_date "master");
209       let version = git_latest_version "master" in
210       require (website_updated version)
211   )
212
213 (* Allow these jobs to run from the command line. *)
214 let () =
215   publish "commit" (
216     function
217     | [commit] -> require (commit_tested "master" commit)
218     | [branch; commit] -> require (commit_tested branch commit)
219     | _ ->
220       failwith "use './libguestfs_upstream commit [<branch>] <commit>'"
221   );
222   publish "release" (
223     function
224     | [version] -> require (website_updated (vernames version))
225     | _ ->
226       failwith "use './libguestfs_upstream release <version>'"
227   )