Add f26 branch.
[goaljobs-goals.git] / libguestfs_fedora.ml
index 10c82c9..dbcda32 100644 (file)
@@ -22,10 +22,12 @@ let package = "libguestfs"
 
 (* How branches in libguestfs upstream map to branches in Fedora. *)
 let branches = [
-(*  "1.22-stable", "f19"; *)       (* F19 built by hand. *)
-  "1.26-stable", "f20";            (* F20 follows 1.26. *)
-  "1.28-stable", "f21";            (* F21 follows 1.28. *)
-  "1.29-development", "master";    (* Rawhide follows development. *)
+  "1.37-development", "master";    (* Rawhide follows development. *)
+  "1.36-stable", "f26";            (* F26 follows 1.36. *)
+  "1.36-stable", "f25";            (* F25 follows 1.36. *)
+  "1.34-stable", "f24";            (* F24 follows 1.34. *)
+  "1.32-stable", "f23";            (* F23 follows 1.32. *)
+  "1.30-stable", "f22";            (* F22 follows 1.30. *)
 ]
 
 (* Goal: Latest website version has been built in every branch. *)
@@ -43,7 +45,9 @@ and fedora_built version branch =
   let specfile = fedora_specfile package branch in
 
   target (file_contains_string specfile version.version &&
-            koji_build_state (fedora_verrel package branch) == `Complete);
+            match koji_build_state (fedora_verrel package branch) with
+            | `Complete | `Building -> true
+            | _ -> false);
 
   require (sources_uploaded version branch);
   require (specfile_pushed version branch);
@@ -92,7 +96,8 @@ and specfile_updated version branch =
 
 and specfile_committed version branch =
   let repodir = fedora_repo package branch in
-  let key = sprintf "libguestfs_fedora_specfile_committed_%s" version.version in
+  let key = sprintf "libguestfs_fedora_specfile_committed_%s_%s"
+    branch version.version in
 
   target (memory_exists key);
   onrun (fun () -> memory_set key "1");
@@ -106,7 +111,8 @@ and specfile_committed version branch =
 
 and specfile_pushed version branch =
   let repodir = fedora_repo package branch in
-  let key = sprintf "libguestfs_fedora_specfile_pushed_%s" version.version in
+  let key =
+    sprintf "libguestfs_fedora_specfile_pushed_%s_%s" branch version.version in
 
   target (memory_exists key);
   onrun (fun () -> memory_set key "1");