author | wenzelm |
Sun, 05 Nov 2023 19:28:54 +0100 | |
changeset 78904 | f6b3d0cf4147 |
parent 78903 | 54318ecceec9 |
child 78905 | 635b84f1914a |
permissions | -rw-r--r-- |
64148 | 1 |
/* Title: Pure/Admin/isabelle_cronjob.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Main entry point for administrative cronjob at TUM. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
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 | 12 |
import scala.annotation.tailrec |
13 |
||
14 |
||
75393 | 15 |
object Isabelle_Cronjob { |
66897 | 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 | 19 |
val main_dir: Path = Path.explode("~/cronjob") |
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") |
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78873
diff
changeset
|
22 |
val build_log_database_log: Path = main_dir + Path.explode("run/build_log_database.log") |
71601 | 23 |
val current_log: Path = main_dir + Path.explode("run/main.log") // owned by log service |
24 |
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
|
25 |
|
71601 | 26 |
val isabelle_repos: Path = main_dir + Path.explode("isabelle") |
27 |
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
|
28 |
|
72559 | 29 |
val mailman_archives_dir = Path.explode("~/cronjob/Mailman") |
30 |
||
66896 | 31 |
val build_log_dirs = |
32 |
List(Path.explode("~/log"), Path.explode("~/afp/log"), Path.explode("~/cronjob/log")) |
|
33 |
||
78872 | 34 |
val isabelle_devel: Path = Path.explode("~/html-data/devel") |
35 |
||
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
36 |
|
64192 | 37 |
|
67752
636f633552a3
clarified signature: facilitate interactive experimentation;
wenzelm
parents:
67751
diff
changeset
|
38 |
/** logger tasks **/ |
636f633552a3
clarified signature: facilitate interactive experimentation;
wenzelm
parents:
67751
diff
changeset
|
39 |
|
636f633552a3
clarified signature: facilitate interactive experimentation;
wenzelm
parents:
67751
diff
changeset
|
40 |
sealed case class Logger_Task(name: String = "", body: Logger => Unit) |
636f633552a3
clarified signature: facilitate interactive experimentation;
wenzelm
parents:
67751
diff
changeset
|
41 |
|
64192 | 42 |
|
67766
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
43 |
/* init and exit */ |
64192 | 44 |
|
67753
f28aee3ad1e6
uniform setup_repository (pull/clone without update);
wenzelm
parents:
67752
diff
changeset
|
45 |
def get_rev(): String = Mercurial.repository(isabelle_repos).id() |
f28aee3ad1e6
uniform setup_repository (pull/clone without update);
wenzelm
parents:
67752
diff
changeset
|
46 |
def get_afp_rev(): String = Mercurial.repository(afp_repos).id() |
f28aee3ad1e6
uniform setup_repository (pull/clone without update);
wenzelm
parents:
67752
diff
changeset
|
47 |
|
71601 | 48 |
val init: Logger_Task = |
75394 | 49 |
Logger_Task("init", |
50 |
{ logger => |
|
78872 | 51 |
val redirect = "https://isabelle-dev.sketis.net/home/menu/view/20" |
52 |
||
53 |
HTML.write_document(isabelle_devel, "index.html", |
|
54 |
List( |
|
55 |
XML.Elem(Markup("meta", |
|
56 |
List("http-equiv" -> "Refresh", "content" -> ("0; url=" + redirect))), Nil)), |
|
57 |
List(HTML.link(redirect, HTML.text("Isabelle Development Resources")))) |
|
65771 | 58 |
|
73611 | 59 |
Mercurial.setup_repository(Isabelle_System.afp_repository.root, afp_repos) |
64192 | 60 |
|
66859 | 61 |
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
|
62 |
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
|
63 |
|
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
64 |
Isabelle_System.bash( |
77788
c2ce9ac85859
use remote copy of locally installed rsync component: for uniform version and options;
wenzelm
parents:
77751
diff
changeset
|
65 |
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
|
66 |
""" -a --include="*/" --include="plain_identify*" --exclude="*" """ + |
69199 | 67 |
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
|
68 |
|
78872 | 69 |
val cronjob_log = isabelle_devel + Path.basic("cronjob-main.log") |
78871 | 70 |
if (!cronjob_log.is_file) { |
71 |
Files.createSymbolicLink(cronjob_log.java_path, current_log.java_path) |
|
78094 | 72 |
} |
67766
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
73 |
}) |
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
74 |
|
71601 | 75 |
val exit: Logger_Task = |
75394 | 76 |
Logger_Task("exit", |
77 |
{ logger => |
|
67766
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
78 |
Isabelle_System.bash( |
77788
c2ce9ac85859
use remote copy of locally installed rsync component: for uniform version and options;
wenzelm
parents:
77751
diff
changeset
|
79 |
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
|
80 |
" -a " + File.bash_path(main_dir) + "/log/." + " " + Bash.string(backup) + "/log/.") |
67769 | 81 |
.check |
67751 | 82 |
}) |
83 |
||
84 |
||
72559 | 85 |
/* Mailman archives */ |
86 |
||
87 |
val mailman_archives: Logger_Task = |
|
75394 | 88 |
Logger_Task("mailman_archives", |
89 |
{ logger => |
|
74921 | 90 |
Mailman.Isabelle_Users.download(mailman_archives_dir) |
91 |
Mailman.Isabelle_Dev.download(mailman_archives_dir) |
|
72559 | 92 |
}) |
93 |
||
94 |
||
67751 | 95 |
/* build release */ |
96 |
||
71601 | 97 |
val build_release: Logger_Task = |
75551
4103b945c7b5
more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents:
75520
diff
changeset
|
98 |
Logger_Task("build_release", { logger => |
4103b945c7b5
more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents:
75520
diff
changeset
|
99 |
build_release_log.file.delete |
78872 | 100 |
val rev = get_rev() |
101 |
val afp_rev = get_afp_rev() |
|
102 |
val progress = new File_Progress(build_release_log) |
|
103 |
||
104 |
Isabelle_System.with_tmp_dir("isadist") { target_dir => |
|
105 |
Isabelle_System.update_directory(isabelle_devel + Path.explode("release_snapshot"), |
|
106 |
{ website_dir => |
|
107 |
val context = Build_Release.Release_Context(target_dir, progress = progress) |
|
108 |
Build_Release.build_release_archive(context, rev) |
|
109 |
Build_Release.build_release(logger.options, context, afp_rev = afp_rev, |
|
110 |
build_sessions = List(Isabelle_System.getenv("ISABELLE_LOGIC")), |
|
111 |
website = Some(website_dir)) |
|
112 |
} |
|
113 |
) |
|
114 |
} |
|
75551
4103b945c7b5
more informative release_snapshot, to see better where the cronjob fails;
wenzelm
parents:
75520
diff
changeset
|
115 |
}) |
64192 | 116 |
|
117 |
||
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
118 |
/* remote build_history */ |
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
119 |
|
66864 | 120 |
sealed case class Item( |
121 |
known: Boolean, |
|
122 |
isabelle_version: String, |
|
123 |
afp_version: Option[String], |
|
75393 | 124 |
pull_date: Date |
125 |
) { |
|
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65771
diff
changeset
|
126 |
def unknown: Boolean = !known |
66864 | 127 |
def versions: (String, Option[String]) = (isabelle_version, afp_version) |
128 |
||
129 |
def known_versions(rev: String, afp_rev: Option[String]): Boolean = |
|
130 |
known && rev != "" && isabelle_version == rev && |
|
71380
5965e6e3c3ec
proper comparison of Option values, following hint by IntelliJ;
wenzelm
parents:
70757
diff
changeset
|
131 |
(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
|
132 |
} |
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65771
diff
changeset
|
133 |
|
75393 | 134 |
def recent_items( |
135 |
db: SQL.Database, |
|
136 |
days: Int, |
|
137 |
rev: String, |
|
138 |
afp_rev: Option[String], |
|
75968
5a782ca6872b
tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents:
75954
diff
changeset
|
139 |
sql: PostgreSQL.Source |
75393 | 140 |
): List[Item] = { |
66880
486f4af28db9
more thorough treatment of afp_version and afp_pull_date;
wenzelm
parents:
66879
diff
changeset
|
141 |
val afp = afp_rev.isDefined |
77552 | 142 |
|
143 |
db.execute_query_statement( |
|
78849 | 144 |
Build_Log.private_data.select_recent_versions( |
77581 | 145 |
days = days, rev = rev, afp_rev = afp_rev, sql = SQL.where(sql)), |
77552 | 146 |
List.from[Item], |
147 |
{ res => |
|
78849 | 148 |
val known = res.bool(Build_Log.private_data.known) |
65807 | 149 |
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
|
150 |
val afp_version = if (afp) proper_string(res.string(Build_Log.Prop.afp_version)) else None |
78849 | 151 |
val pull_date = res.date(Build_Log.private_data.pull_date(afp)) |
66864 | 152 |
Item(known, isabelle_version, afp_version, pull_date) |
77552 | 153 |
}) |
65807 | 154 |
} |
155 |
||
75393 | 156 |
def unknown_runs(items: List[Item]): List[List[Item]] = { |
65807 | 157 |
val (run, rest) = Library.take_prefix[Item](_.unknown, items.dropWhile(_.known)) |
158 |
if (run.nonEmpty) run :: unknown_runs(rest) else Nil |
|
159 |
} |
|
160 |
||
64409
70c87ca55f2c
tuned signature -- more friendly for experimentation;
wenzelm
parents:
64405
diff
changeset
|
161 |
sealed case class Remote_Build( |
65764 | 162 |
description: String, |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
163 |
host: String, |
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
164 |
user: String = "", |
65594 | 165 |
port: Int = 0, |
65820 | 166 |
historic: Boolean = false, |
65789 | 167 |
history: Int = 0, |
65820 | 168 |
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
|
169 |
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
|
170 |
clean_components: Boolean = true, |
71993 | 171 |
java_heap: String = "", |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
172 |
options: String = "", |
65732 | 173 |
args: String = "", |
66864 | 174 |
afp: Boolean = false, |
69693 | 175 |
bulky: Boolean = false, |
67075
eada9bd5fff2
avoid lxbroy7, which is presently inaccessible, but retain its build history in db queries;
wenzelm
parents:
67070
diff
changeset
|
176 |
more_hosts: List[String] = Nil, |
75968
5a782ca6872b
tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents:
75954
diff
changeset
|
177 |
detect: PostgreSQL.Source = "", |
77163
7ceed24c88dc
alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents:
77135
diff
changeset
|
178 |
active: () => Boolean = () => true |
75393 | 179 |
) { |
78903
54318ecceec9
enable multi-builds (again, see also 0c7419d3dd59);
wenzelm
parents:
78902
diff
changeset
|
180 |
def replicate(n: Int): List[Remote_Build] = Library.replicate(n, this) |
54318ecceec9
enable multi-builds (again, see also 0c7419d3dd59);
wenzelm
parents:
78902
diff
changeset
|
181 |
|
76115
f17393e21388
clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents:
76027
diff
changeset
|
182 |
def open_session(options: Options): SSH.Session = |
76123
4a0b7151fedc
removed remains of proxy_host management: delegated to .ssh/config;
wenzelm
parents:
76122
diff
changeset
|
183 |
SSH.open_session(options, host = host, user = user, port = port) |
67750 | 184 |
|
75968
5a782ca6872b
tuned signature: build_log db is specific to PostgreSQL;
wenzelm
parents:
75954
diff
changeset
|
185 |
def sql: PostgreSQL.Source = |
77370 | 186 |
SQL.and( |
77375 | 187 |
Build_Log.Prop.build_engine.equal(Build_History.engine), |
188 |
Build_Log.Prop.build_host.member(host :: more_hosts), |
|
77370 | 189 |
if_proper(detect, SQL.enclose(detect))) |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65771
diff
changeset
|
190 |
|
65747 | 191 |
def profile: Build_Status.Profile = |
69693 | 192 |
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
|
193 |
|
78897 | 194 |
def pick(options: Options, filter: Item => Boolean): Option[(String, Option[String])] = { |
195 |
val rev = get_rev() |
|
67753
f28aee3ad1e6
uniform setup_repository (pull/clone without update);
wenzelm
parents:
67752
diff
changeset
|
196 |
val afp_rev = if (afp) Some(get_afp_rev()) else None |
66864 | 197 |
|
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65771
diff
changeset
|
198 |
val store = Build_Log.store(options) |
75394 | 199 |
using(store.open_database()) { db => |
78901 | 200 |
def pick_recent(days: Int, gap: Int): Option[(String, Option[String])] = { |
66865 | 201 |
val items = recent_items(db, days, rev, afp_rev, sql).filter(filter) |
66007 | 202 |
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
|
203 |
|
66864 | 204 |
if (historic || items.exists(_.known_versions(rev, afp_rev))) { |
65810 | 205 |
val longest_run = |
73359 | 206 |
runs.foldLeft(List.empty[Item]) { |
207 |
case (item1, item2) => if (item1.length >= item2.length) item1 else item2 |
|
208 |
} |
|
65810 | 209 |
if (longest_run.isEmpty) None |
66864 | 210 |
else Some(longest_run(longest_run.length / 2).versions) |
65810 | 211 |
} |
66864 | 212 |
else runs.flatten.headOption.map(_.versions) |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65771
diff
changeset
|
213 |
} |
65810 | 214 |
|
78901 | 215 |
pick_recent(options.int("build_log_history") max history, 2) orElse |
216 |
pick_recent(200, 5) orElse |
|
78902 | 217 |
pick_recent(2000, 50) orElse |
218 |
pick_recent(0, 1) |
|
75394 | 219 |
} |
65747 | 220 |
} |
73239 | 221 |
|
222 |
def build_history_options: String = |
|
223 |
" -h " + Bash.string(host) + " " + |
|
77479 | 224 |
if_proper(java_heap, |
225 |
"-e 'ISABELLE_TOOL_JAVA_OPTIONS=\"$ISABELLE_TOOL_JAVA_OPTIONS -Xmx" + java_heap + "\"' ") + |
|
226 |
options |
|
65732 | 227 |
} |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
228 |
|
65806 | 229 |
val remote_builds_old: List[Remote_Build] = |
230 |
List( |
|
75954
7c72091abd55
disable laramac01 for now: system update pending;
wenzelm
parents:
75551
diff
changeset
|
231 |
Remote_Build("macOS 10.15 Catalina", "laramac01", user = "makarius", |
7c72091abd55
disable laramac01 for now: system update pending;
wenzelm
parents:
75551
diff
changeset
|
232 |
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
|
233 |
args = "-a -d '~~/src/Benchmarks'"), |
73879 | 234 |
Remote_Build("Linux A", "i21of4", user = "i21isatest", |
235 |
options = "-m32 -M1x4,2,4" + |
|
236 |
" -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" + |
|
237 |
" -e ISABELLE_GHC_SETUP=true" + |
|
238 |
" -e ISABELLE_MLTON=mlton" + |
|
239 |
" -e ISABELLE_SMLNJ=sml" + |
|
240 |
" -e ISABELLE_SWIPL=swipl", |
|
241 |
args = "-a -d '~~/src/Benchmarks'"), |
|
72391 | 242 |
Remote_Build("Linux A", "lxbroy9", |
243 |
java_heap = "2g", options = "-m32 -B -M1x2,2", args = "-N -g timing"), |
|
244 |
Remote_Build("Linux Benchmarks", "lxbroy5", historic = true, history = 90, |
|
245 |
java_heap = "2g", |
|
246 |
options = "-m32 -B -M1x2,2 -t Benchmarks" + |
|
247 |
" -e ISABELLE_GHC=ghc -e ISABELLE_MLTON=mlton -e ISABELLE_OCAML=ocaml" + |
|
248 |
" -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind -e ISABELLE_SMLNJ=sml" + |
|
249 |
" -e ISABELLE_SWIPL=swipl", |
|
250 |
args = "-N -a -d '~~/src/Benchmarks'", |
|
73342 | 251 |
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
|
252 |
Remote_Build("macOS 10.14 Mojave (Old)", "lapnipkow3", |
72390 | 253 |
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
|
254 |
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
|
255 |
Remote_Build("AFP old bulky", "lrzcloud1", |
70757 | 256 |
options = "-m64 -M6 -U30000 -s10 -t AFP", |
257 |
args = "-g large -g slow", |
|
258 |
afp = true, |
|
259 |
bulky = true, |
|
73342 | 260 |
detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("AFP")), |
72073 | 261 |
Remote_Build("AFP old", "lxbroy7", |
69693 | 262 |
args = "-N -X large -X slow", |
67608 | 263 |
afp = true, |
73342 | 264 |
detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("AFP")), |
66762 | 265 |
Remote_Build("Poly/ML 5.7 Linux", "lxbroy8", |
266 |
history_base = "37074e22e8be", |
|
267 |
options = "-m32 -B -M1x2,2 -t polyml-5.7 -i 'init_component /home/isabelle/contrib/polyml-5.7'", |
|
268 |
args = "-N -g timing", |
|
73342 | 269 |
detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-5.7") + " AND " + |
66762 | 270 |
Build_Log.Settings.ML_OPTIONS + " <> " + SQL.string("-H 500")), |
66931 | 271 |
Remote_Build("Poly/ML 5.7.1 Linux", "lxbroy8", |
272 |
history_base = "a9d5b59c3e12", |
|
273 |
options = "-m32 -B -M1x2,2 -t polyml-5.7.1-pre2 -i 'init_component /home/isabelle/contrib/polyml-test-905dae2ebfda'", |
|
274 |
args = "-N -g timing", |
|
275 |
detect = |
|
73342 | 276 |
Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-5.7.1-pre1") + " OR " + |
66931 | 277 |
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
|
278 |
Remote_Build("Poly/ML 5.7 macOS", "macbroy2", |
66762 | 279 |
history_base = "37074e22e8be", |
280 |
options = "-m32 -B -M1x4,4 -t polyml-5.7 -i 'init_component /home/isabelle/contrib/polyml-5.7'", |
|
281 |
args = "-a", |
|
73342 | 282 |
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
|
283 |
Remote_Build("Poly/ML 5.7.1 macOS", "macbroy2", |
66931 | 284 |
history_base = "a9d5b59c3e12", |
285 |
options = "-m32 -B -M1x4,4 -t polyml-5.7.1-pre2 -i 'init_component /home/isabelle/contrib/polyml-test-905dae2ebfda'", |
|
286 |
args = "-a", |
|
287 |
detect = |
|
73342 | 288 |
Build_Log.Prop.build_tags.toString + " = " + SQL.string("polyml-5.7.1-pre1") + " OR " + |
289 |
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
|
290 |
Remote_Build("macOS", "macbroy2", |
72893 | 291 |
options = "-m32 -M8" + |
292 |
" -e ISABELLE_GHC=ghc -e ISABELLE_MLTON=mlton -e ISABELLE_OCAML=ocaml" + |
|
293 |
" -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" + |
|
294 |
" -e ISABELLE_OPAM_ROOT=\"$ISABELLE_HOME/opam\"" + |
|
295 |
" -e ISABELLE_SMLNJ=/home/isabelle/smlnj/110.85/bin/sml" + |
|
296 |
" -p pide_session=false", |
|
297 |
args = "-a", |
|
298 |
detect = Build_Log.Prop.build_tags.undefined, |
|
299 |
history_base = "2c0f24e927dd"), |
|
72894
bd2269b6cd99
updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents:
72893
diff
changeset
|
300 |
Remote_Build("macOS, quick_and_dirty", "macbroy2", |
72893 | 301 |
options = "-m32 -M8 -t quick_and_dirty -p pide_session=false", args = "-a -o quick_and_dirty", |
73342 | 302 |
detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("quick_and_dirty"), |
72893 | 303 |
history_base = "2c0f24e927dd"), |
72894
bd2269b6cd99
updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents:
72893
diff
changeset
|
304 |
Remote_Build("macOS, skip_proofs", "macbroy2", |
72893 | 305 |
options = "-m32 -M8 -t skip_proofs -p pide_session=false", args = "-a -o skip_proofs", |
73342 | 306 |
detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("skip_proofs"), |
72893 | 307 |
history_base = "2c0f24e927dd"), |
65806 | 308 |
Remote_Build("Poly/ML test", "lxbroy8", |
65843
d547173212d2
proper init_settings for init_component (before generated ML_OPTIONS etc.);
wenzelm
parents:
65840
diff
changeset
|
309 |
options = "-m32 -B -M1x2,2 -t polyml-test -i 'init_component /home/isabelle/contrib/polyml-5.7-20170217'", |
65806 | 310 |
args = "-N -g timing", |
73342 | 311 |
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
|
312 |
Remote_Build("macOS 10.12 Sierra", "macbroy30", options = "-m32 -M2 -p pide_session=false", args = "-a", |
73342 | 313 |
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
|
314 |
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
|
315 |
Remote_Build("macOS 10.8 Mountain Lion", "macbroy30", options = "-m32 -M2", args = "-a", |
73342 | 316 |
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
|
317 |
{ |
78094 | 318 |
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
|
319 |
yield { |
72073 | 320 |
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
|
321 |
options = "-m32 -M1x2 -t AFP -P" + n + |
e5fe4d40326d
discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents:
71761
diff
changeset
|
322 |
" -e ISABELLE_GHC=ghc" + |
e5fe4d40326d
discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents:
71761
diff
changeset
|
323 |
" -e ISABELLE_MLTON=mlton" + |
e5fe4d40326d
discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents:
71761
diff
changeset
|
324 |
" -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
|
325 |
" -e ISABELLE_SMLNJ=sml", |
e5fe4d40326d
discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents:
71761
diff
changeset
|
326 |
args = "-N -X large -X slow", |
e5fe4d40326d
discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents:
71761
diff
changeset
|
327 |
afp = true, |
73342 | 328 |
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
|
329 |
} |
e5fe4d40326d
discontinued old AFP test: ancient hardware with insufficient resources;
wenzelm
parents:
71761
diff
changeset
|
330 |
} |
65806 | 331 |
|
75393 | 332 |
val remote_builds1: List[List[Remote_Build]] = { |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
333 |
List( |
74386
40804452ab6b
recover some Linux test, using virtual machine node (Ubuntu 20.04, 4 cores, 16 GB);
wenzelm
parents:
73945
diff
changeset
|
334 |
List(Remote_Build("Linux A", "augsburg1", |
74855
a5eb407ec867
clarified tests: omit somewhat pointless (unstable) results;
wenzelm
parents:
74459
diff
changeset
|
335 |
options = "-m32 -B -M4" + |
74459 | 336 |
" -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
|
337 |
" -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
|
338 |
" -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
|
339 |
" -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
|
340 |
" -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
|
341 |
args = "-a -d '~~/src/Benchmarks'")), |
65820 | 342 |
List(Remote_Build("Linux B", "lxbroy10", historic = true, history = 90, |
65732 | 343 |
options = "-m32 -B -M1x4,2,4,6", args = "-N -g timing")), |
72893 | 344 |
List( |
78777
3b424f9cd5eb
update platforms: discontinue macOS 10.13 High Sierra, macOS 10.14 Mojave, macOS 10.15 Catalina;
wenzelm
parents:
78771
diff
changeset
|
345 |
Remote_Build("macOS 11 Big Sur (Intel)", "mini1", |
73141 | 346 |
options = "-m32 -B -M1x2,2,4 -p pide_session=false" + |
347 |
" -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" + |
|
348 |
" -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
|
349 |
" -e ISABELLE_MLTON=/usr/local/bin/mlton -e ISABELLE_MLTON_OPTIONS=" + |
73141 | 350 |
" -e ISABELLE_SMLNJ=/usr/local/smlnj/bin/sml" + |
351 |
" -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
|
352 |
args = "-a -d '~~/src/Benchmarks'")), |
78904 | 353 |
Remote_Build("macOS 14 Sonoma (ARM)", "studio1-sonoma", |
354 |
history_base = "8e590adaac5e", |
|
355 |
options = "-m32 -B -M1x4,2x4,4x2,8 -p pide_session=false" + |
|
356 |
" -e ISABELLE_GHC_SETUP=true" + |
|
357 |
" -e ISABELLE_SMLNJ=/usr/local/smlnj/bin/sml" + |
|
358 |
" -e ISABELLE_SWIPL=/opt/homebrew/bin/swipl", |
|
359 |
args = "-a -d '~~/src/Benchmarks'").replicate(2), |
|
78784 | 360 |
List( |
72894
bd2269b6cd99
updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents:
72893
diff
changeset
|
361 |
Remote_Build("macOS, quick_and_dirty", "mini2", |
72893 | 362 |
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
|
363 |
args = "-a -o quick_and_dirty", |
78744 | 364 |
detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("quick_and_dirty"), |
365 |
active = () => false), |
|
72894
bd2269b6cd99
updated "macOS" terminology: current Big Sur is already version 11;
wenzelm
parents:
72893
diff
changeset
|
366 |
Remote_Build("macOS, skip_proofs", "mini2", |
72893 | 367 |
options = "-m32 -M4 -t skip_proofs -p pide_session=false", args = "-a -o skip_proofs", |
78744 | 368 |
detect = Build_Log.Prop.build_tags.toString + " = " + SQL.string("skip_proofs"), |
369 |
active = () => false)), |
|
78904 | 370 |
Remote_Build("macOS 13 Ventura (ARM)", "mini3", |
371 |
history_base = "8e590adaac5e", |
|
372 |
options = "-a -m32 -B -M1x4,2x2,4 -p pide_session=false" + |
|
373 |
" -e ISABELLE_GHC_SETUP=true" + |
|
374 |
" -e ISABELLE_MLTON=/opt/homebrew/bin/mlton -e ISABELLE_MLTON_OPTIONS=" + |
|
375 |
" -e ISABELLE_SWIPL=/opt/homebrew/bin/swipl", |
|
376 |
args = "-a -d '~~/src/Benchmarks'").replicate(3), |
|
78485 | 377 |
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
|
378 |
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
|
379 |
components_base = "/cygdrive/d/isatest/contrib", |
65906 | 380 |
options = "-m32 -M4" + |
69931
31ee094dea3d
prefer ISABELLE_OCAML_SETUP: Cygwin lacks libzarith;
wenzelm
parents:
69927
diff
changeset
|
381 |
" -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" + |
69952 | 382 |
" -e ISABELLE_GHC_SETUP=true" + |
65906 | 383 |
" -e ISABELLE_SMLNJ=/usr/local/smlnj-110.81/bin/sml", |
65902 | 384 |
args = "-a", |
72317 | 385 |
detect = |
73342 | 386 |
Build_Log.Settings.ML_PLATFORM.toString + " = " + SQL.string("x86-windows") + " OR " + |
72317 | 387 |
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
|
388 |
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
|
389 |
components_base = "/cygdrive/d/isatest/contrib", |
65906 | 390 |
options = "-m64 -M4" + |
72997
a562a0f656e8
more robust components_base: avoid fragile directory links on Windows (or Cygwin);
wenzelm
parents:
72994
diff
changeset
|
391 |
" -C /cygdrive/d/isatest/contrib" + |
69931
31ee094dea3d
prefer ISABELLE_OCAML_SETUP: Cygwin lacks libzarith;
wenzelm
parents:
69927
diff
changeset
|
392 |
" -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAML_SETUP=true" + |
69952 | 393 |
" -e ISABELLE_GHC_SETUP=true" + |
65906 | 394 |
" -e ISABELLE_SMLNJ=/usr/local/smlnj-110.81/bin/sml", |
65902 | 395 |
args = "-a", |
73342 | 396 |
detect = Build_Log.Settings.ML_PLATFORM.toString + " = " + SQL.string("x86_64-windows")))) |
65732 | 397 |
} |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
398 |
|
66898
8b7c4679c05b
parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents:
66897
diff
changeset
|
399 |
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
|
400 |
List( |
8b7c4679c05b
parallel remote_builds2 for the sake of "AFP slow" (with theoretical data race on build_log_dirs);
wenzelm
parents:
66897
diff
changeset
|
401 |
List( |
78451 | 402 |
Remote_Build("AFP", "lrzcloud2", history = 120, |
71993 | 403 |
java_heap = "8g", |
77171
e0e9f1b4c844
less ambitious parallelism: avoid exhaustion of memory (40GB total);
wenzelm
parents:
77163
diff
changeset
|
404 |
options = "-m32 -M1x5 -t AFP" + |
70467 | 405 |
" -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
|
406 |
" -e ISABELLE_MLTON=mlton -e ISABELLE_MLTON_OPTIONS=" + |
70467 | 407 |
" -e ISABELLE_OCAML=ocaml -e ISABELLE_OCAMLC=ocamlc -e ISABELLE_OCAMLFIND=ocamlfind" + |
408 |
" -e ISABELLE_SMLNJ=sml", |
|
70477 | 409 |
args = "-a -X large -X slow", |
70467 | 410 |
afp = true, |
77163
7ceed24c88dc
alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents:
77135
diff
changeset
|
411 |
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
|
412 |
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
|
413 |
Remote_Build("AFP", "lrzcloud2", |
71993 | 414 |
java_heap = "8g", |
415 |
options = "-m64 -M8 -U30000 -s10 -t AFP", |
|
70467 | 416 |
args = "-g large -g slow", |
417 |
afp = true, |
|
418 |
bulky = true, |
|
77163
7ceed24c88dc
alternate AFP tests on lrzcloud2, to fit better into one day;
wenzelm
parents:
77135
diff
changeset
|
419 |
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
|
420 |
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
|
421 |
|
75393 | 422 |
def remote_build_history( |
423 |
rev: String, |
|
424 |
afp_rev: Option[String], |
|
425 |
i: Int, |
|
78885 | 426 |
r: Remote_Build, |
427 |
progress: Progress = new Progress |
|
75393 | 428 |
) : Logger_Task = { |
64294
303976a45afe
shared_home is default for classic isatest home setup;
wenzelm
parents:
64277
diff
changeset
|
429 |
val task_name = "build_history-" + r.host |
75394 | 430 |
Logger_Task(task_name, |
431 |
{ logger => |
|
76115
f17393e21388
clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents:
76027
diff
changeset
|
432 |
using(r.open_session(logger.options)) { ssh => |
75394 | 433 |
val results = |
75518
cb4af8c6152f
clarified remote vs. local build_history: operate on hg_sync directory instead of repository;
wenzelm
parents:
75498
diff
changeset
|
434 |
Build_History.remote_build(ssh, |
75394 | 435 |
isabelle_repos, |
436 |
isabelle_repos.ext(r.host), |
|
437 |
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
|
438 |
components_base = r.components_base, |
77131 | 439 |
clean_platform = r.clean_components, |
77125 | 440 |
clean_archives = r.clean_components, |
75394 | 441 |
rev = rev, |
75518
cb4af8c6152f
clarified remote vs. local build_history: operate on hg_sync directory instead of repository;
wenzelm
parents:
75498
diff
changeset
|
442 |
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
|
443 |
afp_rev = afp_rev.getOrElse(""), |
75394 | 444 |
options = |
445 |
" -N " + Bash.string(task_name) + (if (i < 0) "" else "_" + (i + 1).toString) + |
|
77083 | 446 |
" -f " + r.build_history_options, |
78860
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
447 |
|
75394 | 448 |
args = "-o timeout=10800 " + r.args) |
64346 | 449 |
|
78860
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
450 |
val log_files = |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
451 |
for ((log_name, bytes) <- results) yield { |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
452 |
val log_file = logger.log_dir + Path.explode(log_name) |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
453 |
logger.log(Date.now(), log_name) |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
454 |
Bytes.write(log_file, bytes) |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
455 |
log_file |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
456 |
} |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
457 |
|
78885 | 458 |
Build_Log.build_log_database(logger.options, log_files, |
459 |
progress = progress, ml_statistics = true) |
|
75394 | 460 |
} |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
461 |
}) |
64294
303976a45afe
shared_home is default for classic isatest home setup;
wenzelm
parents:
64277
diff
changeset
|
462 |
} |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
463 |
|
65747 | 464 |
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
|
465 |
(remote_builds_old :: remote_builds1 ::: remote_builds2).flatten.map(_.profile) |
65747 | 466 |
|
65746 | 467 |
|
64192 | 468 |
|
469 |
/** task logging **/ |
|
64171 | 470 |
|
75393 | 471 |
object Log_Service { |
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71684
diff
changeset
|
472 |
def apply(options: Options, progress: Progress = new Progress): Log_Service = |
76115
f17393e21388
clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents:
76027
diff
changeset
|
473 |
new Log_Service(options, progress) |
67752
636f633552a3
clarified signature: facilitate interactive experimentation;
wenzelm
parents:
67751
diff
changeset
|
474 |
} |
64154 | 475 |
|
76115
f17393e21388
clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents:
76027
diff
changeset
|
476 |
class Log_Service private(val options: Options, progress: Progress) { |
64219 | 477 |
current_log.file.delete |
478 |
||
64171 | 479 |
private val thread: Consumer_Thread[String] = |
480 |
Consumer_Thread.fork("cronjob: logger", daemon = true)( |
|
75394 | 481 |
consume = |
482 |
{ (text: String) => |
|
75393 | 483 |
// critical |
64219 | 484 |
File.append(current_log, text + "\n") |
485 |
File.append(cumulative_log, text + "\n") |
|
64171 | 486 |
progress.echo(text) |
487 |
true |
|
488 |
}) |
|
489 |
||
73340 | 490 |
def shutdown(): Unit = { thread.shutdown() } |
64171 | 491 |
|
71601 | 492 |
val hostname: String = Isabelle_System.hostname() |
64171 | 493 |
|
494 |
def log(date: Date, task_name: String, msg: String): Unit = |
|
76365 | 495 |
if (task_name != "") { |
64193 | 496 |
thread.send( |
497 |
"[" + Build_Log.print_date(date) + ", " + hostname + ", " + task_name + "]: " + msg) |
|
76365 | 498 |
} |
64171 | 499 |
|
500 |
def start_logger(start_date: Date, task_name: String): Logger = |
|
501 |
new Logger(this, start_date, task_name) |
|
64154 | 502 |
|
75393 | 503 |
def run_task(start_date: Date, task: Logger_Task): Unit = { |
64171 | 504 |
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
|
505 |
val res = Exn.result { task.body(logger) } |
64171 | 506 |
val end_date = Date.now() |
507 |
val err = |
|
508 |
res match { |
|
509 |
case Exn.Res(_) => None |
|
64295 | 510 |
case Exn.Exn(exn) => |
67178 | 511 |
Output.writeln("Exception trace for " + quote(task.name) + ":") |
64397 | 512 |
exn.printStackTrace() |
66923 | 513 |
val first_line = split_lines(Exn.message(exn)).headOption getOrElse "exception" |
64295 | 514 |
Some(first_line) |
64171 | 515 |
} |
516 |
logger.log_end(end_date, err) |
|
517 |
} |
|
518 |
||
519 |
def fork_task(start_date: Date, task: Logger_Task): Task = |
|
520 |
new Task(task.name, run_task(start_date, task)) |
|
521 |
} |
|
522 |
||
523 |
class Logger private[Isabelle_Cronjob]( |
|
76115
f17393e21388
clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents:
76027
diff
changeset
|
524 |
log_service: Log_Service, |
75393 | 525 |
val start_date: Date, |
526 |
val task_name: String |
|
527 |
) { |
|
76115
f17393e21388
clarified signature: discontinue somewhat pointless SSH.Context;
wenzelm
parents:
76027
diff
changeset
|
528 |
def options: Options = log_service.options |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
529 |
|
64171 | 530 |
def log(date: Date, msg: String): Unit = log_service.log(date, task_name, msg) |
531 |
||
75393 | 532 |
def log_end(end_date: Date, err: Option[String]): Unit = { |
64171 | 533 |
val elapsed_time = end_date.time - start_date.time |
534 |
val msg = |
|
535 |
(if (err.isEmpty) "finished" else "ERROR " + err.get) + |
|
64197 | 536 |
(if (elapsed_time.seconds < 3.0) "" else " (" + elapsed_time.message_hms + " elapsed time)") |
64171 | 537 |
log(end_date, msg) |
538 |
} |
|
539 |
||
72376 | 540 |
val log_dir = Isabelle_System.make_directory(main_dir + Build_Log.log_subdir(start_date)) |
64195 | 541 |
|
64171 | 542 |
log(start_date, "started") |
543 |
} |
|
544 |
||
75393 | 545 |
class Task private[Isabelle_Cronjob](name: String, body: => Unit) { |
64171 | 546 |
private val future: Future[Unit] = Future.thread("cronjob: " + name) { body } |
547 |
def is_finished: Boolean = future.is_finished |
|
64162 | 548 |
} |
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
549 |
|
64170 | 550 |
|
551 |
||
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
552 |
/** cronjob **/ |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
553 |
|
75393 | 554 |
def cronjob(progress: Progress, exclude_task: Set[String]): Unit = { |
64171 | 555 |
/* soft lock */ |
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
556 |
|
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
557 |
val still_running = |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
558 |
try { Some(File.read(main_state_file)) } |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
559 |
catch { case ERROR(_) => None } |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
560 |
|
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
561 |
still_running match { |
64170 | 562 |
case None | Some("") => |
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
563 |
case Some(running) => |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
564 |
error("Isabelle cronjob appears to be still running: " + running) |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
565 |
} |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
566 |
|
64199 | 567 |
|
568 |
/* log service */ |
|
569 |
||
67752
636f633552a3
clarified signature: facilitate interactive experimentation;
wenzelm
parents:
67751
diff
changeset
|
570 |
val log_service = Log_Service(Options.init(), progress = progress) |
64154 | 571 |
|
73340 | 572 |
def run(start_date: Date, task: Logger_Task): Unit = log_service.run_task(start_date, task) |
64199 | 573 |
|
73340 | 574 |
def run_now(task: Logger_Task): Unit = run(Date.now(), task) |
64154 | 575 |
|
576 |
||
64199 | 577 |
/* structured tasks */ |
64184 | 578 |
|
78870
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
579 |
def SEQ(tasks: List[() => Option[Logger_Task]]): Logger_Task = |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
580 |
Logger_Task(body = _ => |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
581 |
for { |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
582 |
t <- tasks.iterator |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
583 |
task <- t() |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
584 |
if !exclude_task(task.name) || task.name == "" |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
585 |
} run_now(task)) |
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
586 |
|
78869 | 587 |
def SEQUENTIAL(tasks: Logger_Task*): Logger_Task = |
78870
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
588 |
SEQ(List.from(for (task <- tasks.iterator) yield () => Some(task))) |
78869 | 589 |
|
75394 | 590 |
def PAR(tasks: List[Logger_Task]): Logger_Task = |
591 |
Logger_Task(body = |
|
592 |
{ _ => |
|
593 |
@tailrec def join(running: List[Task]): Unit = { |
|
594 |
running.partition(_.is_finished) match { |
|
595 |
case (Nil, Nil) => |
|
596 |
case (Nil, _ :: _) => Time.seconds(0.5).sleep(); join(running) |
|
597 |
case (_ :: _, remaining) => join(remaining) |
|
598 |
} |
|
64199 | 599 |
} |
75394 | 600 |
val start_date = Date.now() |
601 |
val running = |
|
602 |
for (task <- tasks if !exclude_task(task.name)) |
|
603 |
yield log_service.fork_task(start_date, task) |
|
604 |
join(running) |
|
605 |
}) |
|
64193 | 606 |
|
64170 | 607 |
|
66897 | 608 |
/* repository structure */ |
64199 | 609 |
|
65820 | 610 |
val hg = Mercurial.repository(isabelle_repos) |
66895 | 611 |
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
|
612 |
|
75393 | 613 |
def history_base_filter(r: Remote_Build): Item => Boolean = { |
66895 | 614 |
val base_rev = hg.id(r.history_base) |
615 |
val nodes = hg_graph.all_succs(List(base_rev)).toSet |
|
616 |
(item: Item) => nodes(item.isabelle_version) |
|
617 |
} |
|
618 |
||
66897 | 619 |
|
620 |
/* main */ |
|
621 |
||
622 |
val main_start_date = Date.now() |
|
73342 | 623 |
File.write(main_state_file, main_start_date.toString + " " + log_service.hostname) |
66897 | 624 |
|
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78873
diff
changeset
|
625 |
val build_log_database_progress = new File_Progress(build_log_database_log, verbose = true) |
78896 | 626 |
build_log_database_progress.echo( |
627 |
"Started at " + Build_Log.print_date(build_log_database_progress.start)) |
|
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78873
diff
changeset
|
628 |
|
64193 | 629 |
run(main_start_date, |
65783
d3d5cb2d6866
pick isabelle_version based on build_log database;
wenzelm
parents:
65771
diff
changeset
|
630 |
Logger_Task("isabelle_cronjob", logger => |
64231
dbc8294c75d3
added remote_build_history tasks: parallel on several remote hosts;
wenzelm
parents:
64220
diff
changeset
|
631 |
run_now( |
78869 | 632 |
SEQUENTIAL( |
67766
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
633 |
init, |
78860
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
634 |
PAR( |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
635 |
List( |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
636 |
mailman_archives, |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
637 |
build_release, |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
638 |
Logger_Task("build_log_database", |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
639 |
logger => |
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
640 |
Build_Log.build_log_database(logger.options, build_log_dirs, |
78877
45d570945fe4
more detailed progress for build_log_database, to see better what happens when;
wenzelm
parents:
78873
diff
changeset
|
641 |
progress = build_log_database_progress, |
78860
4838a27794ac
performance tuning: parallel and incremental update of build_log_database;
wenzelm
parents:
78849
diff
changeset
|
642 |
vacuum = true, ml_statistics = true, |
78872 | 643 |
snapshot = Some(isabelle_devel + Path.explode("build_log.db")))))), |
67766
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
644 |
PAR( |
603334230303
consolidated main cronjob server on virtual machine together with build_log database;
wenzelm
parents:
67763
diff
changeset
|
645 |
List(remote_builds1, remote_builds2).map(remote_builds => |
78870
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
646 |
SEQUENTIAL( |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
647 |
PAR(remote_builds.map(_.filter(_.active())).map(seq => |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
648 |
SEQ( |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
649 |
for { |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
650 |
(r, i) <- (if (seq.length <= 1) seq.map((_, -1)) else seq.zipWithIndex) |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
651 |
} yield () => { |
78897 | 652 |
r.pick(logger.options, history_base_filter(r)) |
78885 | 653 |
.map({ case (rev, afp_rev) => |
654 |
remote_build_history(rev, afp_rev, i, r, |
|
655 |
progress = build_log_database_progress) }) |
|
78870
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
656 |
} |
674362fd8c96
clarified SEQ: more sequential evaluation to support multiple tests (see also 5c91bd51fc37);
wenzelm
parents:
78869
diff
changeset
|
657 |
))), |
78872 | 658 |
Logger_Task("build_status", logger => |
659 |
Isabelle_System.update_directory( |
|
660 |
isabelle_devel + Path.explode("build_status"), |
|
661 |
dir => |
|
662 |
Build_Status.build_status(logger.options, |
|
663 |
target_dir = dir, ml_statistics = true)))))), |
|
78869 | 664 |
exit)))) |
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
665 |
|
64171 | 666 |
log_service.shutdown() |
64170 | 667 |
|
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
668 |
main_state_file.file.delete |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
669 |
} |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
670 |
|
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
671 |
|
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
672 |
|
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
673 |
/** command line entry point **/ |
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
674 |
|
75393 | 675 |
def main(args: Array[String]): Unit = { |
71632 | 676 |
Command_Line.tool { |
64148 | 677 |
var force = false |
678 |
var verbose = false |
|
64187 | 679 |
var exclude_task = Set.empty[String] |
64148 | 680 |
|
681 |
val getopts = Getopts(""" |
|
682 |
Usage: Admin/cronjob/main [OPTIONS] |
|
683 |
||
684 |
Options are: |
|
685 |
-f apply force to do anything |
|
686 |
-v verbose |
|
64187 | 687 |
-x NAME exclude tasks with this name |
64148 | 688 |
""", |
689 |
"f" -> (_ => force = true), |
|
64187 | 690 |
"v" -> (_ => verbose = true), |
691 |
"x:" -> (arg => exclude_task += arg)) |
|
64148 | 692 |
|
693 |
val more_args = getopts(args) |
|
694 |
if (more_args.nonEmpty) getopts.usage() |
|
695 |
||
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71684
diff
changeset
|
696 |
val progress = if (verbose) new Console_Progress() else new Progress |
64148 | 697 |
|
64187 | 698 |
if (force) cronjob(progress, exclude_task) |
64153
769791954872
some timing and logging, similar to old isatest.log;
wenzelm
parents:
64148
diff
changeset
|
699 |
else error("Need to apply force to do anything") |
64148 | 700 |
} |
701 |
} |
|
702 |
} |