src/Pure/Build/build_schedule.scala
changeset 79628 e349a274a932
parent 79627 0f01c575ff3e
child 79629 4d81c0391da2
equal deleted inserted replaced
79627:0f01c575ff3e 79628:e349a274a932
  1312       val cluster_hosts = build_context.build_hosts
  1312       val cluster_hosts = build_context.build_hosts
  1313 
  1313 
  1314       val hosts_current =
  1314       val hosts_current =
  1315         cluster_hosts.forall(host => isabelle.Host.read_info(host_database, host.name).isDefined)
  1315         cluster_hosts.forall(host => isabelle.Host.read_info(host_database, host.name).isDefined)
  1316       if (!hosts_current) {
  1316       if (!hosts_current) {
  1317         Build_Cluster.make(build_context, progress = progress)
  1317         using(Build_Cluster.make(build_context, progress = progress).open())(_.init().benchmark())
  1318           .open().init().benchmark().close()
       
  1319       }
  1318       }
  1320 
  1319 
  1321       val host_infos = Host_Infos.load(cluster_hosts, host_database)
  1320       val host_infos = Host_Infos.load(cluster_hosts, host_database)
  1322       val timing_data = Timing_Data.load(host_infos, log_database)
  1321       val timing_data = Timing_Data.load(host_infos, log_database)
  1323 
  1322