src/Pure/Admin/isabelle_cronjob.scala
changeset 65764 1af6d544c2a3
parent 65747 5a3052b2095f
child 65768 b8da621a3297
--- a/src/Pure/Admin/isabelle_cronjob.scala	Sun May 07 22:10:48 2017 +0200
+++ b/src/Pure/Admin/isabelle_cronjob.scala	Sun May 07 23:18:23 2017 +0200
@@ -88,7 +88,7 @@
   /* remote build_history */
 
   sealed case class Remote_Build(
-    name: String,
+    description: String,
     host: String,
     user: String = "",
     port: Int = 0,
@@ -103,37 +103,37 @@
         Build_Log.Prop.build_engine + " = " + SQL.string(Build_History.engine) + " AND " +
         Build_Log.Prop.build_host + " = " + SQL.string(host) +
         (if (detect == "") "" else " AND " + SQL.enclose(detect))
-      Build_Status.Profile(name, sql)
+      Build_Status.Profile(description, sql)
     }
   }
 
   private val remote_builds: List[List[Remote_Build]] =
   {
     List(
-      List(Remote_Build("polyml-test", "lxbroy8",
+      List(Remote_Build("Poly/ML test", "lxbroy8",
         options = "-m32 -B -M1x2,2 -t polyml-test -e 'init_component /home/isabelle/contrib/polyml-5.7-20170217'",
         args = "-N -g timing",
         detect = Build_Log.Prop.build_tags + " = " + SQL.string("polyml-test"))),
-      List(Remote_Build("linux1", "lxbroy9",
+      List(Remote_Build("Linux A", "lxbroy9",
         options = "-m32 -B -M1x2,2", args = "-N -g timing")),
-      List(Remote_Build("linux2", "lxbroy10",
+      List(Remote_Build("Linux B", "lxbroy10",
         options = "-m32 -B -M1x4,2,4,6", args = "-N -g timing")),
       List(
-        Remote_Build("macos1", "macbroy2", options = "-m32 -M8", args = "-a",
+        Remote_Build("Mac OS X Mavericks", "macbroy2", options = "-m32 -M8", args = "-a",
           detect = Build_Log.Prop.build_tags + " IS NULL"),
-        Remote_Build("macos1_quick_and_dirty", "macbroy2",
+        Remote_Build("Mac OS X Mavericks, quick_and_dirty", "macbroy2",
           options = "-m32 -M8 -t quick_and_dirty", args = "-a -o quick_and_dirty",
           detect = Build_Log.Prop.build_tags + " = " + SQL.string("quick_and_dirty")),
-        Remote_Build("macos1_skip_proofs", "macbroy2",
+        Remote_Build("Mac OS X Mavericks, skip_proofs", "macbroy2",
           options = "-m32 -M8 -t skip_proofs", args = "-a -o skip_proofs",
           detect = Build_Log.Prop.build_tags + " = " + SQL.string("skip_proofs"))),
-      List(Remote_Build("macos2", "macbroy30", options = "-m32 -M2", args = "-a")),
-      List(Remote_Build("macos3", "macbroy31", options = "-m32 -M2", args = "-a")),
+      List(Remote_Build("Mac OS X Yosemite", "macbroy30", options = "-m32 -M2", args = "-a")),
+      List(Remote_Build("Mac OS X Sierra", "macbroy31", options = "-m32 -M2", args = "-a")),
       List(
-        Remote_Build("windows", "vmnipkow9", shared_home = false,
+        Remote_Build("Windows", "vmnipkow9", shared_home = false,
           options = "-m32 -M4", args = "-a",
           detect = Build_Log.Settings.ML_PLATFORM + " = " + SQL.string("x86-windows")),
-        Remote_Build("windows", "vmnipkow9", shared_home = false,
+        Remote_Build("Windows", "vmnipkow9", shared_home = false,
           options = "-m64 -M4", args = "-a",
           detect = Build_Log.Settings.ML_PLATFORM + " = " + SQL.string("x86_64-windows"))))
   }