src/Pure/Admin/isabelle_cronjob.scala
author wenzelm
Sat, 14 Oct 2023 20:24:39 +0200
changeset 78777 3b424f9cd5eb
parent 78771 d7f4c5c7bebb
child 78783 b78158997a28
permissions -rw-r--r--
update platforms: discontinue macOS 10.13 High Sierra, macOS 10.14 Mojave, macOS 10.15 Catalina;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Admin/isabelle_cronjob.scala
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     3
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     4
Main entry point for administrative cronjob at TUM.
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     5
*/
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     6
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     7
package isabelle
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     8
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
     9
67854
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    10
import java.nio.file.Files
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    11
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
    12
import scala.annotation.tailrec
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
    13
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
    14
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
    15
object Isabelle_Cronjob {
66897
wenzelm
parents: 66896
diff changeset
    16
  /* global resources: owned by main cronjob */
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
    17
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    18
  val backup = "lxbroy10:cronjob"
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    19
  val main_dir: Path = Path.explode("~/cronjob")
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    20
  val main_state_file: Path = main_dir + Path.explode("run/main.state")
75551
4103b945c7b5 more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents: 75520
diff changeset
    21
  val build_release_log: Path = main_dir + Path.explode("run/build_release.log")
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    22
  val current_log: Path = main_dir + Path.explode("run/main.log")  // owned by log service
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    23
  val cumulative_log: Path = main_dir + Path.explode("log/main.log")  // owned by log service
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
    24
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    25
  val isabelle_repos: Path = main_dir + Path.explode("isabelle")
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    26
  val afp_repos: Path = main_dir + Path.explode("AFP")
64236
358f9ff08681 discontinued somewhat pointless cronjob.options -- compile-time constants are sufficient;
wenzelm
parents: 64235
diff changeset
    27
72559
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    28
  val mailman_archives_dir = Path.explode("~/cronjob/Mailman")
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    29
66896
85e6748bf8b2 clarified signature;
wenzelm
parents: 66895
diff changeset
    30
  val build_log_dirs =
85e6748bf8b2 clarified signature;
wenzelm
parents: 66895
diff changeset
    31
    List(Path.explode("~/log"), Path.explode("~/afp/log"), Path.explode("~/cronjob/log"))
85e6748bf8b2 clarified signature;
wenzelm
parents: 66895
diff changeset
    32
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
    33
64192
wenzelm
parents: 64187
diff changeset
    34
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    35
  /** logger tasks **/
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    36
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    37
  sealed case class Logger_Task(name: String = "", body: Logger => Unit)
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
    38
64192
wenzelm
parents: 64187
diff changeset
    39
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    40
  /* init and exit */
64192
wenzelm
parents: 64187
diff changeset
    41
67753
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    42
  def get_rev(): String = Mercurial.repository(isabelle_repos).id()
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    43
  def get_afp_rev(): String = Mercurial.repository(afp_repos).id()
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    44
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    45
  val init: Logger_Task =
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    46
    Logger_Task("init",
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    47
      { logger =>
66859
dd846a805fb1 tuned whitespace;
wenzelm
parents: 66858
diff changeset
    48
        Isabelle_Devel.make_index()
65771
688a7dd22cbb make index formally within Isabelle/Scala;
wenzelm
parents: 65770
diff changeset
    49
73611
cc36841eeff6 clarified signature: more operations;
wenzelm
parents: 73608
diff changeset
    50
        Mercurial.setup_repository(Isabelle_System.afp_repository.root, afp_repos)
64192
wenzelm
parents: 64187
diff changeset
    51
66859
dd846a805fb1 tuned whitespace;
wenzelm
parents: 66858
diff changeset
    52
        File.write(logger.log_dir + Build_Log.log_filename("isabelle_identify", logger.start_date),
67753
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
    53
          Build_Log.Identify.content(logger.start_date, Some(get_rev()), Some(get_afp_rev())))
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    54
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    55
        Isabelle_System.bash(
77788
c2ce9ac85859 use remote copy of locally installed rsync component: for uniform version and options;
wenzelm
parents: 77751
diff changeset
    56
          File.bash_path(Component_Rsync.local_program) +
c2ce9ac85859 use remote copy of locally installed rsync component: for uniform version and options;
wenzelm
parents: 77751
diff changeset
    57
            """ -a --include="*/" --include="plain_identify*" --exclude="*" """ +
69199
e5e4de2b93d9 more robust: allow log to be a symlink;
wenzelm
parents: 68650
diff changeset
    58
            Bash.string(backup + "/log/.") + " " + File.bash_path(main_dir) + "/log/.").check
67854
8374c80165e1 publish current log file, e.g. for easy error detection;
wenzelm
parents: 67775
diff changeset
    59
78094
wenzelm
parents: 77788
diff changeset
    60
        if (!Isabelle_Devel.cronjob_log.is_file) {
73945
e61add9d5b5e tuned signature;
wenzelm
parents: 73929
diff changeset
    61
          Files.createSymbolicLink(Isabelle_Devel.cronjob_log.java_path, current_log.java_path)
78094
wenzelm
parents: 77788
diff changeset
    62
        }
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    63
      })
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    64
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    65
  val exit: Logger_Task =
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    66
    Logger_Task("exit",
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    67
      { logger =>
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
    68
        Isabelle_System.bash(
77788
c2ce9ac85859 use remote copy of locally installed rsync component: for uniform version and options;
wenzelm
parents: 77751
diff changeset
    69
          File.bash_path(Component_Rsync.local_program) +
c2ce9ac85859 use remote copy of locally installed rsync component: for uniform version and options;
wenzelm
parents: 77751
diff changeset
    70
            " -a " + File.bash_path(main_dir) + "/log/." + " " + Bash.string(backup) + "/log/.")
67769
20c262dcfdf5 proper target directory;
wenzelm
parents: 67766
diff changeset
    71
            .check
67751
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    72
      })
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    73
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    74
72559
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    75
  /* Mailman archives */
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    76
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    77
  val mailman_archives: Logger_Task =
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    78
    Logger_Task("mailman_archives",
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
    79
      { logger =>
74921
74655fd58f8e more mailing list content;
wenzelm
parents: 74907
diff changeset
    80
        Mailman.Isabelle_Users.download(mailman_archives_dir)
74655fd58f8e more mailing list content;
wenzelm
parents: 74907
diff changeset
    81
        Mailman.Isabelle_Dev.download(mailman_archives_dir)
72559
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    82
      })
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    83
274c9986e55b maintain Isabelle mailing list archives;
wenzelm
parents: 72483
diff changeset
    84
67751
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    85
  /* build release */
361d41701de0 clarified tasks;
wenzelm
parents: 67750
diff changeset
    86
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
    87
  val build_release: Logger_Task =
75551
4103b945c7b5 more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents: 75520
diff changeset
    88
    Logger_Task("build_release", { logger =>
4103b945c7b5 more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents: 75520
diff changeset
    89
      build_release_log.file.delete
4103b945c7b5 more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents: 75520
diff changeset
    90
      Isabelle_Devel.release_snapshot(logger.options, get_rev(), get_afp_rev(),
4103b945c7b5 more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents: 75520
diff changeset
    91
        progress = new File_Progress(build_release_log))
4103b945c7b5 more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents: 75520
diff changeset
    92
    })
64192
wenzelm
parents: 64187
diff changeset
    93
wenzelm
parents: 64187
diff changeset
    94
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
    95
  /* remote build_history */
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
    96
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
    97
  sealed case class Item(
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
    98
    known: Boolean,
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
    99
    isabelle_version: String,
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   100
    afp_version: Option[String],
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   101
    pull_date: Date
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   102
  ) {
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   103
    def unknown: Boolean = !known
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   104
    def versions: (String, Option[String]) = (isabelle_version, afp_version)
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   105
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   106
    def known_versions(rev: String, afp_rev: Option[String]): Boolean =
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   107
      known && rev != "" && isabelle_version == rev &&
71380
5965e6e3c3ec proper comparison of Option values, following hint by IntelliJ;
wenzelm
parents: 70757
diff changeset
   108
      (afp_rev.isEmpty || afp_rev.get != "" && afp_version == afp_rev)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   109
  }
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   110
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   111
  def recent_items(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   112
    db: SQL.Database,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   113
    days: Int,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   114
    rev: String,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   115
    afp_rev: Option[String],
75968
5a782ca6872b tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents: 75954
diff changeset
   116
    sql: PostgreSQL.Source
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   117
  ): List[Item] = {
66880
486f4af28db9 more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents: 66879
diff changeset
   118
    val afp = afp_rev.isDefined
77552
080422b3d914 clarified signature: reduce boilerplate;
wenzelm
parents: 77479
diff changeset
   119
080422b3d914 clarified signature: reduce boilerplate;
wenzelm
parents: 77479
diff changeset
   120
    db.execute_query_statement(
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   121
      Build_Log.Data.select_recent_versions(
77581
wenzelm
parents: 77552
diff changeset
   122
        days = days, rev = rev, afp_rev = afp_rev, sql = SQL.where(sql)),
77552
080422b3d914 clarified signature: reduce boilerplate;
wenzelm
parents: 77479
diff changeset
   123
      List.from[Item],
080422b3d914 clarified signature: reduce boilerplate;
wenzelm
parents: 77479
diff changeset
   124
      { res =>
65807
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   125
        val known = res.bool(Build_Log.Data.known)
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   126
        val isabelle_version = res.string(Build_Log.Prop.isabelle_version)
66880
486f4af28db9 more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents: 66879
diff changeset
   127
        val afp_version = if (afp) proper_string(res.string(Build_Log.Prop.afp_version)) else None
486f4af28db9 more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents: 66879
diff changeset
   128
        val pull_date = res.date(Build_Log.Data.pull_date(afp))
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   129
        Item(known, isabelle_version, afp_version, pull_date)
77552
080422b3d914 clarified signature: reduce boilerplate;
wenzelm
parents: 77479
diff changeset
   130
      })
65807
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   131
  }
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   132
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   133
  def unknown_runs(items: List[Item]): List[List[Item]] = {
65807
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   134
    val (run, rest) = Library.take_prefix[Item](_.unknown, items.dropWhile(_.known))
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   135
    if (run.nonEmpty) run :: unknown_runs(rest) else Nil
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   136
  }
a830c6257393 tuned -- more open to experimentation;
wenzelm
parents: 65806
diff changeset
   137
64409
70c87ca55f2c tuned signature -- more friendly for experimentation;
wenzelm
parents: 64405
diff changeset
   138
  sealed case class Remote_Build(
65764
1af6d544c2a3 clarified description vs. file name;
wenzelm
parents: 65747
diff changeset
   139
    description: String,
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   140
    host: String,
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   141
    user: String = "",
65594
659305708959 clarified treatment of default port;
wenzelm
parents: 65063
diff changeset
   142
    port: Int = 0,
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   143
    historic: Boolean = false,
65789
fccd7be5fa55 enter deeper into history;
wenzelm
parents: 65785
diff changeset
   144
    history: Int = 0,
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   145
    history_base: String = "build_history_base",
77132
53ce5a39c987 more uniform components context for the managing "self_isabelle" and the managed "other_isabelle";
wenzelm
parents: 77131
diff changeset
   146
    components_base: String = Components.dynamic_components_base,
77135
515b6aaede32 enable clean_components by default: it saves a lot of local disk space, notably on virtual nodes;
wenzelm
parents: 77133
diff changeset
   147
    clean_components: Boolean = true,
71993
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   148
    java_heap: String = "",
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   149
    options: String = "",
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   150
    args: String = "",
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   151
    afp: Boolean = false,
69693
06153e2e0cdb more official AFP.groups;
wenzelm
parents: 69432
diff changeset
   152
    bulky: Boolean = false,
67075
eada9bd5fff2 avoid lxbroy7, which is presently inaccessible, but retain its build history in db queries;
wenzelm
parents: 67070
diff changeset
   153
    more_hosts: List[String] = Nil,
75968
5a782ca6872b tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents: 75954
diff changeset
   154
    detect: PostgreSQL.Source = "",
77163
7ceed24c88dc alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents: 77135
diff changeset
   155
    active: () => Boolean = () => true
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   156
  ) {
76115
f17393e21388 clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents: 76027
diff changeset
   157
    def open_session(options: Options): SSH.Session =
76123
4a0b7151fedc removed remains of proxy_host management: delegated to .ssh/config;
wenzelm
parents: 76122
diff changeset
   158
      SSH.open_session(options, host = host, user = user, port = port)
67750
58a33c568464 tuned signature;
wenzelm
parents: 67746
diff changeset
   159
75968
5a782ca6872b tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents: 75954
diff changeset
   160
    def sql: PostgreSQL.Source =
77370
47c2ac81ddd4 clarified signature: more robust operations;
wenzelm
parents: 77368
diff changeset
   161
      SQL.and(
77375
324f5821a4a4 clarified signature: more concise operations;
wenzelm
parents: 77370
diff changeset
   162
        Build_Log.Prop.build_engine.equal(Build_History.engine),
324f5821a4a4 clarified signature: more concise operations;
wenzelm
parents: 77370
diff changeset
   163
        Build_Log.Prop.build_host.member(host :: more_hosts),
77370
47c2ac81ddd4 clarified signature: more robust operations;
wenzelm
parents: 77368
diff changeset
   164
        if_proper(detect, SQL.enclose(detect)))
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   165
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   166
    def profile: Build_Status.Profile =
69693
06153e2e0cdb more official AFP.groups;
wenzelm
parents: 69432
diff changeset
   167
      Build_Status.Profile(description, history = history, afp = afp, bulky = bulky, sql = sql)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   168
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   169
    def pick(
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   170
      options: Options,
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   171
      rev: String = "",
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   172
      filter: Item => Boolean = _ => true
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   173
    ): Option[(String, Option[String])] = {
67753
f28aee3ad1e6 uniform setup_repository (pull/clone without update);
wenzelm
parents: 67752
diff changeset
   174
      val afp_rev = if (afp) Some(get_afp_rev()) else None
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   175
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   176
      val store = Build_Log.store(options)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   177
      using(store.open_database()) { db =>
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   178
        def pick_days(days: Int, gap: Int): Option[(String, Option[String])] = {
66865
c8b18abf23e1 tuned (graph.all_succs already contains origin);
wenzelm
parents: 66864
diff changeset
   179
          val items = recent_items(db, days, rev, afp_rev, sql).filter(filter)
66007
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   180
          def runs = unknown_runs(items).filter(run => run.length >= gap)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   181
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   182
          if (historic || items.exists(_.known_versions(rev, afp_rev))) {
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   183
            val longest_run =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73342
diff changeset
   184
              runs.foldLeft(List.empty[Item]) {
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73342
diff changeset
   185
                case (item1, item2) => if (item1.length >= item2.length) item1 else item2
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73342
diff changeset
   186
              }
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   187
            if (longest_run.isEmpty) None
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   188
            else Some(longest_run(longest_run.length / 2).versions)
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   189
          }
66864
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   190
          else if (rev != "") Some((rev, afp_rev))
5cb8ccc46e3e support for AFP versions;
wenzelm
parents: 66861
diff changeset
   191
          else runs.flatten.headOption.map(_.versions)
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   192
        }
65810
356c2b488cf3 explore older history;
wenzelm
parents: 65809
diff changeset
   193
66007
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   194
        pick_days(options.int("build_log_history") max history, 2) orElse
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   195
        pick_days(200, 5) orElse
6706d6f0afda cover more history;
wenzelm
parents: 65949
diff changeset
   196
        pick_days(2000, 1)
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   197
      }
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   198
    }
73239
27dc8f899147 clarified signature;
wenzelm
parents: 73185
diff changeset
   199
27dc8f899147 clarified signature;
wenzelm
parents: 73185
diff changeset
   200
    def build_history_options: String =
27dc8f899147 clarified signature;
wenzelm
parents: 73185
diff changeset
   201
      " -h " + Bash.string(host) + " " +
77479
wenzelm
parents: 77375
diff changeset
   202
      if_proper(java_heap,
wenzelm
parents: 77375
diff changeset
   203
        "-e 'ISABELLE_TOOL_JAVA_OPTIONS=\"$ISABELLE_TOOL_JAVA_OPTIONS -Xmx" + java_heap + "\"' ") +
wenzelm
parents: 77375
diff changeset
   204
      options
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   205
  }
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   206
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   207
  val remote_builds_old: List[Remote_Build] =
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   208
    List(
75954
7c72091abd55 disable laramac01 for now: system update pending;
wenzelm
parents: 75551
diff changeset
   209
      Remote_Build("macOS 10.15 Catalina", "laramac01", user = "makarius",
7c72091abd55 disable laramac01 for now: system update pending;
wenzelm
parents: 75551
diff changeset
   210
        options = "-m32 -M4 -e ISABELLE_GHC_SETUP=true -p pide_session=false",
7c72091abd55 disable laramac01 for now: system update pending;
wenzelm
parents: 75551
diff changeset
   211
        args = "-a -d '~~/src/Benchmarks'"),
73879
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   212
      Remote_Build("Linux A", "i21of4", user = "i21isatest",
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   213
        options = "-m32 -M1x4,2,4" +
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   214
          " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   215
          " -e ISABELLE_GHC_SETUP=true" +
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   216
          " -e ISABELLE_MLTON=mlton" +
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   217
          " -e ISABELLE_SMLNJ=sml" +
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   218
          " -e ISABELLE_SWIPL=swipl",
0db0cd462163 discontinue i21of4 (old Apple hardware);
wenzelm
parents: 73704
diff changeset
   219
        args = "-a -d '~~/src/Benchmarks'"),
72391
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   220
      Remote_Build("Linux A", "lxbroy9",
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   221
        java_heap = "2g", options = "-m32 -B -M1x2,2", args = "-N -g timing"),
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   222
      Remote_Build("Linux Benchmarks", "lxbroy5", historic = true, history = 90,
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   223
        java_heap = "2g",
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   224
        options = "-m32 -B -M1x2,2 -t Benchmarks" +
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   225
          " -e ISABELLE_GHC=ghc -e ISABELLE_MLTON=mlton -e ISABELLE_OCAML=ocaml" +
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   226
          " -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind -e ISABELLE_SMLNJ=sml" +
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   227
          " -e ISABELLE_SWIPL=swipl",
37c1fbcc88d0 discontinued old machines;
wenzelm
parents: 72390
diff changeset
   228
        args = "-N -a -d '~~/src/Benchmarks'",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   229
        detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("Benchmarks")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   230
      Remote_Build("macOS 10.14 Mojave (Old)", "lapnipkow3",
72390
ed95980cf198 updated tests for macOS 10.14 Mojave;
wenzelm
parents: 72376
diff changeset
   231
        options = "-m32 -M1,2 -e ISABELLE_GHC_SETUP=true -p pide_session=false",
75520
65ecf4c5b868 removed obsolete self_update: always enabled, notably on lxbroy10 which is the only shared-home system (and still requires current isabelle_self);
wenzelm
parents: 75518
diff changeset
   232
        args = "-a -d '~~/src/Benchmarks'"),
65ecf4c5b868 removed obsolete self_update: always enabled, notably on lxbroy10 which is the only shared-home system (and still requires current isabelle_self);
wenzelm
parents: 75518
diff changeset
   233
      Remote_Build("AFP old bulky", "lrzcloud1",
70757
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   234
        options = "-m64 -M6 -U30000 -s10 -t AFP",
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   235
        args = "-g large -g slow",
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   236
        afp = true,
6a835635fa93 disable lrzcloud1 -- superseded by lrzcloud2;
wenzelm
parents: 70477
diff changeset
   237
        bulky = true,
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   238
        detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("AFP")),
72073
f56522a44564 clarified names;
wenzelm
parents: 71999
diff changeset
   239
      Remote_Build("AFP old", "lxbroy7",
69693
06153e2e0cdb more official AFP.groups;
wenzelm
parents: 69432
diff changeset
   240
          args = "-N -X large -X slow",
67608
1b2be3666b89 retain remote_builds_old for build_status;
wenzelm
parents: 67607
diff changeset
   241
          afp = true,
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   242
          detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("AFP")),
66762
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   243
      Remote_Build("Poly/ML 5.7 Linux", "lxbroy8",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   244
        history_base = "37074e22e8be",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   245
        options = "-m32 -B -M1x2,2 -t polyml-5.7 -i 'init_component /home/isabelle/contrib/polyml-5.7'",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   246
        args = "-N -g timing",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   247
        detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-5.7") + " AND " +
66762
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   248
          Build_Log.Settings.ML_OPTIONS + " <> " + SQL.string("-H 500")),
66931
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   249
      Remote_Build("Poly/ML 5.7.1 Linux", "lxbroy8",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   250
        history_base = "a9d5b59c3e12",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   251
        options = "-m32 -B -M1x2,2 -t polyml-5.7.1-pre2 -i 'init_component /home/isabelle/contrib/polyml-test-905dae2ebfda'",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   252
        args = "-N -g timing",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   253
        detect =
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   254
          Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-5.7.1-pre1") + " OR " +
66931
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   255
          Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7.1-pre2")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   256
      Remote_Build("Poly/ML 5.7 macOS", "macbroy2",
66762
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   257
        history_base = "37074e22e8be",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   258
        options = "-m32 -B -M1x4,4 -t polyml-5.7 -i 'init_component /home/isabelle/contrib/polyml-5.7'",
9bef97f78b60 updated test version;
wenzelm
parents: 66609
diff changeset
   259
        args = "-a",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   260
        detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-5.7")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   261
      Remote_Build("Poly/ML 5.7.1 macOS", "macbroy2",
66931
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   262
        history_base = "a9d5b59c3e12",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   263
        options = "-m32 -B -M1x4,4 -t polyml-5.7.1-pre2 -i 'init_component /home/isabelle/contrib/polyml-test-905dae2ebfda'",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   264
        args = "-a",
4ff031d249b2 deactivated old tests;
wenzelm
parents: 66923
diff changeset
   265
        detect =
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   266
          Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-5.7.1-pre1") + " OR " +
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   267
          Build_Log.Prop.build_tags + " = " + SQL.string("polyml-5.7.1-pre2")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   268
      Remote_Build("macOS", "macbroy2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   269
        options = "-m32 -M8" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   270
          " -e ISABELLE_GHC=ghc -e ISABELLE_MLTON=mlton -e ISABELLE_OCAML=ocaml" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   271
          " -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   272
          " -e ISABELLE_OPAM_ROOT=\"$ISABELLE_HOME/opam\"" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   273
          " -e ISABELLE_SMLNJ=/home/isabelle/smlnj/110.85/bin/sml" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   274
          " -p pide_session=false",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   275
        args = "-a",
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   276
        detect = Build_Log.Prop.build_tags.undefined,
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   277
        history_base = "2c0f24e927dd"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   278
      Remote_Build("macOS, quick_and_dirty", "macbroy2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   279
        options = "-m32 -M8 -t quick_and_dirty -p pide_session=false", args = "-a -o quick_and_dirty",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   280
        detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("quick_and_dirty"),
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   281
        history_base = "2c0f24e927dd"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   282
      Remote_Build("macOS, skip_proofs", "macbroy2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   283
        options = "-m32 -M8 -t skip_proofs -p pide_session=false", args = "-a -o skip_proofs",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   284
        detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("skip_proofs"),
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   285
        history_base = "2c0f24e927dd"),
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   286
      Remote_Build("Poly/ML test", "lxbroy8",
65843
d547173212d2 proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents: 65840
diff changeset
   287
        options = "-m32 -B -M1x2,2 -t polyml-test -i 'init_component /home/isabelle/contrib/polyml-5.7-20170217'",
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   288
        args = "-N -g timing",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   289
        detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-test")),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   290
      Remote_Build("macOS 10.12 Sierra", "macbroy30", options = "-m32 -M2 -p pide_session=false", args = "-a",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   291
        detect = Build_Log.Prop.build_start.toString + " > date '2017-03-03'"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   292
      Remote_Build("macOS 10.10 Yosemite", "macbroy31", options = "-m32 -M2 -p pide_session=false", args = "-a"),
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   293
      Remote_Build("macOS 10.8 Mountain Lion", "macbroy30", options = "-m32 -M2", args = "-a",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   294
        detect = Build_Log.Prop.build_start.toString + " < date '2017-03-03'")) :::
71974
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   295
      {
78094
wenzelm
parents: 77788
diff changeset
   296
        for ((n, hosts) <- List(1 -> List("lxbroy6"), 2 -> List("lxbroy8", "lxbroy5")))
71974
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   297
        yield {
72073
f56522a44564 clarified names;
wenzelm
parents: 71999
diff changeset
   298
          Remote_Build("AFP old", host = hosts.head, more_hosts = hosts.tail,
71974
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   299
            options = "-m32 -M1x2 -t AFP -P" + n +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   300
              " -e ISABELLE_GHC=ghc" +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   301
              " -e ISABELLE_MLTON=mlton" +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   302
              " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind" +
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   303
              " -e ISABELLE_SMLNJ=sml",
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   304
            args = "-N -X large -X slow",
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   305
            afp = true,
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   306
            detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("AFP"))
71974
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   307
        }
e5fe4d40326d discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents: 71761
diff changeset
   308
      }
65806
0156222f2a18 tuned -- more visible;
wenzelm
parents: 65805
diff changeset
   309
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   310
  val remote_builds1: List[List[Remote_Build]] = {
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   311
    List(
74386
40804452ab6b recover some Linux test, using virtual machine node (Ubuntu 20.04, 4 cores, 16 GB);
wenzelm
parents: 73945
diff changeset
   312
      List(Remote_Build("Linux A", "augsburg1",
74855
a5eb407ec867 clarified tests: omit somewhat pointless (unstable) results;
wenzelm
parents: 74459
diff changeset
   313
          options = "-m32 -B -M4" +
74459
c876e8c61843 prefer existing OCaml installation;
wenzelm
parents: 74386
diff changeset
   314
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind" +
74386
40804452ab6b recover some Linux test, using virtual machine node (Ubuntu 20.04, 4 cores, 16 GB);
wenzelm
parents: 73945
diff changeset
   315
            " -e ISABELLE_GHC_SETUP=true" +
76181
d27ed188e0c4 support for ISABELLE_MLTON_OPTIONS, notably for Ubuntu 22.04 with external mlton executable;
wenzelm
parents: 76123
diff changeset
   316
            " -e ISABELLE_MLTON=mlton -e ISABELLE_MLTON_OPTIONS=" +
74386
40804452ab6b recover some Linux test, using virtual machine node (Ubuntu 20.04, 4 cores, 16 GB);
wenzelm
parents: 73945
diff changeset
   317
            " -e ISABELLE_SMLNJ=sml" +
40804452ab6b recover some Linux test, using virtual machine node (Ubuntu 20.04, 4 cores, 16 GB);
wenzelm
parents: 73945
diff changeset
   318
            " -e ISABELLE_SWIPL=swipl",
75520
65ecf4c5b868 removed obsolete self_update: always enabled, notably on lxbroy10 which is the only shared-home system (and still requires current isabelle_self);
wenzelm
parents: 75518
diff changeset
   319
          args = "-a -d '~~/src/Benchmarks'")),
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   320
      List(Remote_Build("Linux B", "lxbroy10", historic = true, history = 90,
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   321
        options = "-m32 -B -M1x4,2,4,6", args = "-N -g timing")),
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   322
      List(
78777
3b424f9cd5eb update platforms: discontinue macOS 10.13 High Sierra, macOS 10.14 Mojave, macOS 10.15 Catalina;
wenzelm
parents: 78771
diff changeset
   323
        Remote_Build("macOS 11 Big Sur (Intel)", "mini1",
73141
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   324
          options = "-m32 -B -M1x2,2,4 -p pide_session=false" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   325
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   326
            " -e ISABELLE_GHC_SETUP=true" +
76181
d27ed188e0c4 support for ISABELLE_MLTON_OPTIONS, notably for Ubuntu 22.04 with external mlton executable;
wenzelm
parents: 76123
diff changeset
   327
            " -e ISABELLE_MLTON=/usr/local/bin/mlton -e ISABELLE_MLTON_OPTIONS=" +
73141
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   328
            " -e ISABELLE_SMLNJ=/usr/local/smlnj/bin/sml" +
13bd167f4d97 more official support for macOS 11.1 Big Sur;
wenzelm
parents: 72997
diff changeset
   329
            " -e ISABELLE_SWIPL=/usr/local/bin/swipl",
75520
65ecf4c5b868 removed obsolete self_update: always enabled, notably on lxbroy10 which is the only shared-home system (and still requires current isabelle_self);
wenzelm
parents: 75518
diff changeset
   330
          args = "-a -d '~~/src/Benchmarks'")),
73241
62b6bc153b84 more parallelism;
wenzelm
parents: 73240
diff changeset
   331
      List(
78771
d7f4c5c7bebb more platform tests: initial support for macOS 14 Sonoma;
wenzelm
parents: 78768
diff changeset
   332
        Remote_Build("macOS 14 Sonoma (ARM)", "studio1-sonoma",
d7f4c5c7bebb more platform tests: initial support for macOS 14 Sonoma;
wenzelm
parents: 78768
diff changeset
   333
          options = "-m32 -B -M1x4,2x4,4x2,8 -p pide_session=false" +
d7f4c5c7bebb more platform tests: initial support for macOS 14 Sonoma;
wenzelm
parents: 78768
diff changeset
   334
            " -e ISABELLE_SMLNJ=/usr/local/smlnj/bin/sml" +
d7f4c5c7bebb more platform tests: initial support for macOS 14 Sonoma;
wenzelm
parents: 78768
diff changeset
   335
            " -e ISABELLE_SWIPL=/opt/homebrew/bin/swipl",
d7f4c5c7bebb more platform tests: initial support for macOS 14 Sonoma;
wenzelm
parents: 78768
diff changeset
   336
          args = "-a -d '~~/src/Benchmarks'"),
d7f4c5c7bebb more platform tests: initial support for macOS 14 Sonoma;
wenzelm
parents: 78768
diff changeset
   337
        Remote_Build("macOS 14 Sonoma (Intel)", "mini2-sonoma",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   338
          options = "-m32 -B -M1x2,2,4 -p pide_session=false" +
76181
d27ed188e0c4 support for ISABELLE_MLTON_OPTIONS, notably for Ubuntu 22.04 with external mlton executable;
wenzelm
parents: 76123
diff changeset
   339
            " -e ISABELLE_MLTON=/usr/local/bin/mlton -e ISABELLE_MLTON_OPTIONS=" +
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   340
            " -e ISABELLE_SMLNJ=/usr/local/smlnj/bin/sml" +
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   341
            " -e ISABELLE_SWIPL=/usr/local/bin/swipl",
78771
d7f4c5c7bebb more platform tests: initial support for macOS 14 Sonoma;
wenzelm
parents: 78768
diff changeset
   342
          args = "-a -d '~~/src/Benchmarks'"),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   343
        Remote_Build("macOS, quick_and_dirty", "mini2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   344
          options = "-m32 -M4 -t quick_and_dirty -p pide_session=false",
75520
65ecf4c5b868 removed obsolete self_update: always enabled, notably on lxbroy10 which is the only shared-home system (and still requires current isabelle_self);
wenzelm
parents: 75518
diff changeset
   345
          args = "-a -o quick_and_dirty",
78744
a11c461a1a3a mini2 is not active due to upgrade;
wenzelm
parents: 78514
diff changeset
   346
          detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("quick_and_dirty"),
a11c461a1a3a mini2 is not active due to upgrade;
wenzelm
parents: 78514
diff changeset
   347
          active = () => false),
72894
bd2269b6cd99 updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents: 72893
diff changeset
   348
        Remote_Build("macOS, skip_proofs", "mini2",
72893
fbdadf5760c2 updated test machines;
wenzelm
parents: 72559
diff changeset
   349
          options = "-m32 -M4 -t skip_proofs -p pide_session=false", args = "-a -o skip_proofs",
78744
a11c461a1a3a mini2 is not active due to upgrade;
wenzelm
parents: 78514
diff changeset
   350
          detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("skip_proofs"),
a11c461a1a3a mini2 is not active due to upgrade;
wenzelm
parents: 78514
diff changeset
   351
          active = () => false)),
78514
edb4faf666c9 backed out changeset 2a26d423d9fb: build_log_database not run yet, so this tests the same changesets again;
wenzelm
parents: 78496
diff changeset
   352
      List(
78777
3b424f9cd5eb update platforms: discontinue macOS 10.13 High Sierra, macOS 10.14 Mojave, macOS 10.15 Catalina;
wenzelm
parents: 78771
diff changeset
   353
        Remote_Build("macOS 13 Ventura (ARM)", "mini3",
78514
edb4faf666c9 backed out changeset 2a26d423d9fb: build_log_database not run yet, so this tests the same changesets again;
wenzelm
parents: 78496
diff changeset
   354
          history_base = "8e590adaac5e",
edb4faf666c9 backed out changeset 2a26d423d9fb: build_log_database not run yet, so this tests the same changesets again;
wenzelm
parents: 78496
diff changeset
   355
          options = "-a -m32 -B -M1x4,2x2,4 -p pide_session=false" +
edb4faf666c9 backed out changeset 2a26d423d9fb: build_log_database not run yet, so this tests the same changesets again;
wenzelm
parents: 78496
diff changeset
   356
            " -e ISABELLE_MLTON=/opt/homebrew/bin/mlton -e ISABELLE_MLTON_OPTIONS=" +
edb4faf666c9 backed out changeset 2a26d423d9fb: build_log_database not run yet, so this tests the same changesets again;
wenzelm
parents: 78496
diff changeset
   357
            " -e ISABELLE_SWIPL=/opt/homebrew/bin/swipl",
edb4faf666c9 backed out changeset 2a26d423d9fb: build_log_database not run yet, so this tests the same changesets again;
wenzelm
parents: 78496
diff changeset
   358
          args = "-a -d '~~/src/Benchmarks'")),
78485
f17cbbbdb3c3 systematic testing of arm64_32-darwin;
wenzelm
parents: 78454
diff changeset
   359
      List(
75520
65ecf4c5b868 removed obsolete self_update: always enabled, notably on lxbroy10 which is the only shared-home system (and still requires current isabelle_self);
wenzelm
parents: 75518
diff changeset
   360
        Remote_Build("Windows", "vmnipkow9", historic = true, history = 90,
77132
53ce5a39c987 more uniform components context for the managing "self_isabelle" and the managed "other_isabelle";
wenzelm
parents: 77131
diff changeset
   361
          components_base = "/cygdrive/d/isatest/contrib",
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   362
          options = "-m32 -M4" +
69931
31ee094dea3d prefer ISABELLE_OCAML_SETUP: Cygwin lacks libzarith;
wenzelm
parents: 69927
diff changeset
   363
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
69952
385458b950e1 clarified GHC and OCaml test setup;
wenzelm
parents: 69937
diff changeset
   364
            " -e ISABELLE_GHC_SETUP=true" +
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   365
            " -e ISABELLE_SMLNJ=/usr/local/smlnj-110.81/bin/sml",
65902
c28143ae38cd more settings;
wenzelm
parents: 65887
diff changeset
   366
          args = "-a",
72317
d24a8cea343b proper Windows 32bit platform;
wenzelm
parents: 72074
diff changeset
   367
          detect =
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   368
            Build_Log.Settings.ML_PLATFORM.toString + " = " + SQL.string("x86-windows") + " OR " +
72317
d24a8cea343b proper Windows 32bit platform;
wenzelm
parents: 72074
diff changeset
   369
            Build_Log.Settings.ML_PLATFORM + " = " + SQL.string("x86_64_32-windows")),
75520
65ecf4c5b868 removed obsolete self_update: always enabled, notably on lxbroy10 which is the only shared-home system (and still requires current isabelle_self);
wenzelm
parents: 75518
diff changeset
   370
        Remote_Build("Windows", "vmnipkow9", historic = true, history = 90,
77132
53ce5a39c987 more uniform components context for the managing "self_isabelle" and the managed "other_isabelle";
wenzelm
parents: 77131
diff changeset
   371
          components_base = "/cygdrive/d/isatest/contrib",
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   372
          options = "-m64 -M4" +
72997
a562a0f656e8 more robust components_base: avoid fragile directory links on Windows (or Cygwin);
wenzelm
parents: 72994
diff changeset
   373
            " -C /cygdrive/d/isatest/contrib" +
69931
31ee094dea3d prefer ISABELLE_OCAML_SETUP: Cygwin lacks libzarith;
wenzelm
parents: 69927
diff changeset
   374
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" +
69952
385458b950e1 clarified GHC and OCaml test setup;
wenzelm
parents: 69937
diff changeset
   375
            " -e ISABELLE_GHC_SETUP=true" +
65906
78fa1771f61d more settings;
wenzelm
parents: 65902
diff changeset
   376
            " -e ISABELLE_SMLNJ=/usr/local/smlnj-110.81/bin/sml",
65902
c28143ae38cd more settings;
wenzelm
parents: 65887
diff changeset
   377
          args = "-a",
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   378
          detect = Build_Log.Settings.ML_PLATFORM.toString + " = " + SQL.string("x86_64-windows"))))
65732
7864aea16a87 detect database entries;
wenzelm
parents: 65723
diff changeset
   379
  }
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   380
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   381
  val remote_builds2: List[List[Remote_Build]] =
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   382
    List(
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   383
      List(
78451
c32b8d5a9e07 show more build history for AFP;
wenzelm
parents: 78257
diff changeset
   384
        Remote_Build("AFP", "lrzcloud2", history = 120,
71993
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   385
          java_heap = "8g",
77171
e0e9f1b4c844 less ambitious parallelism: avoid exhaustion of memory (40GB total);
wenzelm
parents: 77163
diff changeset
   386
          options = "-m32 -M1x5 -t AFP" +
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   387
            " -e ISABELLE_GHC=ghc" +
76181
d27ed188e0c4 support for ISABELLE_MLTON_OPTIONS, notably for Ubuntu 22.04 with external mlton executable;
wenzelm
parents: 76123
diff changeset
   388
            " -e ISABELLE_MLTON=mlton -e ISABELLE_MLTON_OPTIONS=" +
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   389
            " -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind" +
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   390
            " -e ISABELLE_SMLNJ=sml",
70477
90acc6ce5beb proper build options;
wenzelm
parents: 70467
diff changeset
   391
          args = "-a -X large -X slow",
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   392
          afp = true,
77163
7ceed24c88dc alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents: 77135
diff changeset
   393
          detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("AFP"),
7ceed24c88dc alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents: 77135
diff changeset
   394
          active = () => Date.now().unix_epoch_day % 2 == 0),
76123
4a0b7151fedc removed remains of proxy_host management: delegated to .ssh/config;
wenzelm
parents: 76122
diff changeset
   395
        Remote_Build("AFP", "lrzcloud2",
71993
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   396
          java_heap = "8g",
088e3aa85250 clarified signature;
wenzelm
parents: 71983
diff changeset
   397
          options = "-m64 -M8 -U30000 -s10 -t AFP",
70467
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   398
          args = "-g large -g slow",
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   399
          afp = true,
b32d571f1190 full AFP test on lrzcloud2;
wenzelm
parents: 70466
diff changeset
   400
          bulky = true,
77163
7ceed24c88dc alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents: 77135
diff changeset
   401
          detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("AFP"),
7ceed24c88dc alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents: 77135
diff changeset
   402
          active = () => Date.now().unix_epoch_day % 2 == 1)))
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   403
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   404
  def remote_build_history(
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   405
    rev: String,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   406
    afp_rev: Option[String],
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   407
    i: Int,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   408
    r: Remote_Build
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   409
  ) : Logger_Task = {
64294
303976a45afe shared_home is default for classic isatest home setup;
wenzelm
parents: 64277
diff changeset
   410
    val task_name = "build_history-" + r.host
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   411
    Logger_Task(task_name,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   412
      { logger =>
76115
f17393e21388 clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents: 76027
diff changeset
   413
        using(r.open_session(logger.options)) { ssh =>
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   414
          val results =
75518
cb4af8c6152f clarified remote vs. local build_history: operate on hg_sync directory instead of repository;
wenzelm
parents: 75498
diff changeset
   415
            Build_History.remote_build(ssh,
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   416
              isabelle_repos,
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   417
              isabelle_repos.ext(r.host),
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   418
              isabelle_identifier = "cronjob_build_history",
77132
53ce5a39c987 more uniform components context for the managing "self_isabelle" and the managed "other_isabelle";
wenzelm
parents: 77131
diff changeset
   419
              components_base = r.components_base,
77131
c8d34e74a12b tuned signature;
wenzelm
parents: 77128
diff changeset
   420
              clean_platform = r.clean_components,
77125
158790217aa9 more options to manage resolved components;
wenzelm
parents: 77083
diff changeset
   421
              clean_archives = r.clean_components,
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   422
              rev = rev,
75518
cb4af8c6152f clarified remote vs. local build_history: operate on hg_sync directory instead of repository;
wenzelm
parents: 75498
diff changeset
   423
              afp_repos = if (afp_rev.isDefined) Some(afp_repos) else None,
cb4af8c6152f clarified remote vs. local build_history: operate on hg_sync directory instead of repository;
wenzelm
parents: 75498
diff changeset
   424
              afp_rev = afp_rev.getOrElse(""),
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   425
              options =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   426
                " -N " + Bash.string(task_name) + (if (i < 0) "" else "_" + (i + 1).toString) +
77083
092449efcb0e clarified defaults (see also b310b93563f6);
wenzelm
parents: 76365
diff changeset
   427
                " -f " + r.build_history_options,
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   428
              args = "-o timeout=10800 " + r.args)
64346
5f49765a25ec process results immediately;
wenzelm
parents: 64338
diff changeset
   429
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   430
          for ((log_name, bytes) <- results) {
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   431
            logger.log(Date.now(), log_name)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   432
            Bytes.write(logger.log_dir + Path.explode(log_name), bytes)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   433
          }
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   434
        }
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   435
      })
64294
303976a45afe shared_home is default for classic isatest home setup;
wenzelm
parents: 64277
diff changeset
   436
  }
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   437
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   438
  val build_status_profiles: List[Build_Status.Profile] =
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   439
    (remote_builds_old :: remote_builds1 ::: remote_builds2).flatten.map(_.profile)
65747
5a3052b2095f tuned signature;
wenzelm
parents: 65746
diff changeset
   440
65746
dead16007097 present build status;
wenzelm
parents: 65736
diff changeset
   441
64192
wenzelm
parents: 64187
diff changeset
   442
wenzelm
parents: 64187
diff changeset
   443
  /** task logging **/
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   444
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   445
  object Log_Service {
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71684
diff changeset
   446
    def apply(options: Options, progress: Progress = new Progress): Log_Service =
76115
f17393e21388 clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents: 76027
diff changeset
   447
      new Log_Service(options, progress)
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   448
  }
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   449
76115
f17393e21388 clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents: 76027
diff changeset
   450
  class Log_Service private(val options: Options, progress: Progress) {
64219
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   451
    current_log.file.delete
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   452
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   453
    private val thread: Consumer_Thread[String] =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   454
      Consumer_Thread.fork("cronjob: logger", daemon = true)(
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   455
        consume =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   456
          { (text: String) =>
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   457
            // critical
64219
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   458
            File.append(current_log, text + "\n")
c1af670cbe7e clarified logs;
wenzelm
parents: 64218
diff changeset
   459
            File.append(cumulative_log, text + "\n")
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   460
            progress.echo(text)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   461
            true
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   462
          })
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   463
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73313
diff changeset
   464
    def shutdown(): Unit = { thread.shutdown() }
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   465
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71565
diff changeset
   466
    val hostname: String = Isabelle_System.hostname()
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   467
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   468
    def log(date: Date, task_name: String, msg: String): Unit =
76365
24e951a8a318 tuned: more robust Scala syntax;
wenzelm
parents: 76265
diff changeset
   469
      if (task_name != "") {
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   470
        thread.send(
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   471
          "[" + Build_Log.print_date(date) + ", " + hostname + ", " + task_name + "]: " + msg)
76365
24e951a8a318 tuned: more robust Scala syntax;
wenzelm
parents: 76265
diff changeset
   472
      }
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   473
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   474
    def start_logger(start_date: Date, task_name: String): Logger =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   475
      new Logger(this, start_date, task_name)
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   476
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   477
    def run_task(start_date: Date, task: Logger_Task): Unit = {
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   478
      val logger = start_logger(start_date, task.name)
78768
280a228dc2f1 prefer Exn.result: avoid accidental capture of interrupts, similar to ML;
wenzelm
parents: 78744
diff changeset
   479
      val res = Exn.result { task.body(logger) }
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   480
      val end_date = Date.now()
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   481
      val err =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   482
        res match {
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   483
          case Exn.Res(_) => None
64295
6aefa7e66888 avoid spamming log file;
wenzelm
parents: 64294
diff changeset
   484
          case Exn.Exn(exn) =>
67178
70576478bda9 avoid println with its extra CR on Windows;
wenzelm
parents: 67103
diff changeset
   485
            Output.writeln("Exception trace for " + quote(task.name) + ":")
64397
6e9c22c494c5 more informative error (stderr);
wenzelm
parents: 64351
diff changeset
   486
            exn.printStackTrace()
66923
wenzelm
parents: 66903
diff changeset
   487
            val first_line = split_lines(Exn.message(exn)).headOption getOrElse "exception"
64295
6aefa7e66888 avoid spamming log file;
wenzelm
parents: 64294
diff changeset
   488
            Some(first_line)
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   489
        }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   490
      logger.log_end(end_date, err)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   491
    }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   492
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   493
    def fork_task(start_date: Date, task: Logger_Task): Task =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   494
      new Task(task.name, run_task(start_date, task))
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   495
  }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   496
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   497
  class Logger private[Isabelle_Cronjob](
76115
f17393e21388 clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents: 76027
diff changeset
   498
    log_service: Log_Service,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   499
    val start_date: Date,
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   500
    val task_name: String
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   501
  ) {
76115
f17393e21388 clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents: 76027
diff changeset
   502
    def options: Options = log_service.options
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   503
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   504
    def log(date: Date, msg: String): Unit = log_service.log(date, task_name, msg)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   505
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   506
    def log_end(end_date: Date, err: Option[String]): Unit = {
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   507
      val elapsed_time = end_date.time - start_date.time
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   508
      val msg =
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   509
        (if (err.isEmpty) "finished" else "ERROR " + err.get) +
64197
c43dedbb8118 tuned message;
wenzelm
parents: 64195
diff changeset
   510
        (if (elapsed_time.seconds < 3.0) "" else " (" + elapsed_time.message_hms + " elapsed time)")
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   511
      log(end_date, msg)
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   512
    }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   513
72376
04bce3478688 clarified signature;
wenzelm
parents: 72375
diff changeset
   514
    val log_dir = Isabelle_System.make_directory(main_dir + Build_Log.log_subdir(start_date))
64195
wenzelm
parents: 64194
diff changeset
   515
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   516
    log(start_date, "started")
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   517
  }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   518
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   519
  class Task private[Isabelle_Cronjob](name: String, body: => Unit) {
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   520
    private val future: Future[Unit] = Future.thread("cronjob: " + name) { body }
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   521
    def is_finished: Boolean = future.is_finished
64162
03057a8fdd1f simplified: no internal state for Mercurial;
wenzelm
parents: 64157
diff changeset
   522
  }
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   523
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   524
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   525
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   526
  /** cronjob **/
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   527
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   528
  def cronjob(progress: Progress, exclude_task: Set[String]): Unit = {
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   529
    /* soft lock */
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   530
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   531
    val still_running =
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   532
      try { Some(File.read(main_state_file)) }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   533
      catch { case ERROR(_) => None }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   534
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   535
    still_running match {
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   536
      case None | Some("") =>
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   537
      case Some(running) =>
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   538
        error("Isabelle cronjob appears to be still running: " + running)
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   539
    }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   540
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   541
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   542
    /* log service */
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   543
67752
636f633552a3 clarified signature: facilitate interactive experimentation;
wenzelm
parents: 67751
diff changeset
   544
    val log_service = Log_Service(Options.init(), progress = progress)
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   545
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73313
diff changeset
   546
    def run(start_date: Date, task: Logger_Task): Unit = log_service.run_task(start_date, task)
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   547
73340
0ffcad1f6130 tuned --- fewer warnings;
wenzelm
parents: 73313
diff changeset
   548
    def run_now(task: Logger_Task): Unit = run(Date.now(), task)
64154
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   549
e5cf40a54b1e identify managed repository clones;
wenzelm
parents: 64153
diff changeset
   550
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   551
    /* structured tasks */
64184
wenzelm
parents: 64173
diff changeset
   552
64350
3af8566788e7 remote_builds has PAR-SEQ semantics of old isatest-makedist;
wenzelm
parents: 64348
diff changeset
   553
    def SEQ(tasks: List[Logger_Task]): Logger_Task = Logger_Task(body = _ =>
76365
24e951a8a318 tuned: more robust Scala syntax;
wenzelm
parents: 76265
diff changeset
   554
      for (task <- tasks.iterator if !exclude_task(task.name) || task.name == "") run_now(task))
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   555
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   556
    def PAR(tasks: List[Logger_Task]): Logger_Task =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   557
      Logger_Task(body =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   558
        { _ =>
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   559
          @tailrec def join(running: List[Task]): Unit = {
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   560
            running.partition(_.is_finished) match {
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   561
              case (Nil, Nil) =>
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   562
              case (Nil, _ :: _) => Time.seconds(0.5).sleep(); join(running)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   563
              case (_ :: _, remaining) => join(remaining)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   564
            }
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   565
          }
75394
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   566
          val start_date = Date.now()
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   567
          val running =
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   568
            for (task <- tasks if !exclude_task(task.name))
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   569
              yield log_service.fork_task(start_date, task)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   570
          join(running)
42267c650205 tuned formatting;
wenzelm
parents: 75393
diff changeset
   571
        })
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   572
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   573
66897
wenzelm
parents: 66896
diff changeset
   574
    /* repository structure */
64199
f38d39c57959 clarified;
wenzelm
parents: 64198
diff changeset
   575
65820
a5d4958d0901 explicit history_base;
wenzelm
parents: 65810
diff changeset
   576
    val hg = Mercurial.repository(isabelle_repos)
66895
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   577
    val hg_graph = hg.graph()
67048
ec438988b65a local user_home for improved performance, but only after given changeset for stability of measurement history;
wenzelm
parents: 67008
diff changeset
   578
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   579
    def history_base_filter(r: Remote_Build): Item => Boolean = {
66895
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   580
      val base_rev = hg.id(r.history_base)
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   581
      val nodes = hg_graph.all_succs(List(base_rev)).toSet
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   582
      (item: Item) => nodes(item.isabelle_version)
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   583
    }
e378e0468ef2 tuned: build hg_graph only once;
wenzelm
parents: 66887
diff changeset
   584
66897
wenzelm
parents: 66896
diff changeset
   585
wenzelm
parents: 66896
diff changeset
   586
    /* main */
wenzelm
parents: 66896
diff changeset
   587
wenzelm
parents: 66896
diff changeset
   588
    val main_start_date = Date.now()
73342
0bf768567d9f tuned --- avoid deprecated Predef.any2stringadd;
wenzelm
parents: 73340
diff changeset
   589
    File.write(main_state_file, main_start_date.toString + " " + log_service.hostname)
66897
wenzelm
parents: 66896
diff changeset
   590
64193
7a7e370e2523 clarified log_subdir vs. log_filename;
wenzelm
parents: 64192
diff changeset
   591
    run(main_start_date,
65783
d3d5cb2d6866 pick isabelle_version based on build_log database;
wenzelm
parents: 65771
diff changeset
   592
      Logger_Task("isabelle_cronjob", logger =>
64231
dbc8294c75d3 added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents: 64220
diff changeset
   593
        run_now(
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   594
          SEQ(List(
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   595
            init,
73313
8ae2f8ebc373 discontinued somewhat pointless "integrity test of build_history": it fails right now, but also failed to expose spurious incompatibilities when it was working;
wenzelm
parents: 73241
diff changeset
   596
            PAR(List(mailman_archives, build_release)),
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   597
            PAR(
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   598
              List(remote_builds1, remote_builds2).map(remote_builds =>
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   599
              SEQ(List(
77163
7ceed24c88dc alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents: 77135
diff changeset
   600
                PAR(remote_builds.map(_.filter(_.active())).map(seq =>
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   601
                  SEQ(
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   602
                    for {
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   603
                      (r, i) <- (if (seq.length <= 1) seq.map((_, -1)) else seq.zipWithIndex)
67048
ec438988b65a local user_home for improved performance, but only after given changeset for stability of measurement history;
wenzelm
parents: 67008
diff changeset
   604
                      (rev, afp_rev) <- r.pick(logger.options, hg.id(), history_base_filter(r))
67070
85e6c1ff5be3 removed pointless user_home: no measurable impact;
wenzelm
parents: 67049
diff changeset
   605
                    } yield remote_build_history(rev, afp_rev, i, r)))),
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   606
                Logger_Task("build_log_database",
77744
1398add8c414 clarified modules;
wenzelm
parents: 77581
diff changeset
   607
                  logger =>
1398add8c414 clarified modules;
wenzelm
parents: 77581
diff changeset
   608
                    Build_Log.build_log_database(logger.options, build_log_dirs,
77751
7ac59361791e clarified options;
wenzelm
parents: 77748
diff changeset
   609
                      vacuum = true, ml_statistics = true,
77744
1398add8c414 clarified modules;
wenzelm
parents: 77581
diff changeset
   610
                      snapshot = Some(Isabelle_Devel.build_log_snapshot))),
66898
8b7c4679c05b parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents: 66897
diff changeset
   611
                Logger_Task("build_status",
67766
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   612
                  logger => Isabelle_Devel.build_status(logger.options)))))),
603334230303 consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents: 67763
diff changeset
   613
            exit)))))
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   614
64171
568cd5123952 clarified task logging via log service;
wenzelm
parents: 64170
diff changeset
   615
    log_service.shutdown()
64170
a0c2cbe2fc8e more explicit management of tasks;
wenzelm
parents: 64162
diff changeset
   616
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   617
    main_state_file.file.delete
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   618
  }
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   619
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   620
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   621
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   622
  /** command line entry point **/
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   623
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74921
diff changeset
   624
  def main(args: Array[String]): Unit = {
71632
c1bc38327bc2 clarified signature;
wenzelm
parents: 71601
diff changeset
   625
    Command_Line.tool {
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   626
      var force = false
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   627
      var verbose = false
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   628
      var exclude_task = Set.empty[String]
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   629
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   630
      val getopts = Getopts("""
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   631
Usage: Admin/cronjob/main [OPTIONS]
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   632
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   633
  Options are:
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   634
    -f           apply force to do anything
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   635
    -v           verbose
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   636
    -x NAME      exclude tasks with this name
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   637
""",
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   638
        "f" -> (_ => force = true),
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   639
        "v" -> (_ => verbose = true),
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   640
        "x:" -> (arg => exclude_task += arg))
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   641
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   642
      val more_args = getopts(args)
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   643
      if (more_args.nonEmpty) getopts.usage()
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   644
71726
a5fda30edae2 clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents: 71684
diff changeset
   645
      val progress = if (verbose) new Console_Progress() else new Progress
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   646
64187
450e06dabdd9 allow to exclude named tasks;
wenzelm
parents: 64186
diff changeset
   647
      if (force) cronjob(progress, exclude_task)
64153
769791954872 some timing and logging, similar to old isatest.log;
wenzelm
parents: 64148
diff changeset
   648
      else error("Need to apply force to do anything")
64148
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   649
    }
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   650
  }
bbf43b7c4d0d basic setup for Isabelle cronjob;
wenzelm
parents:
diff changeset
   651
}