author | wenzelm |
Wed, 05 Aug 2015 21:46:52 +0200 | |
changeset 60851 | 35932863b114 |
parent 54963 | 260ad8b204f5 |
child 63490 | 9416333a17c2 |
permissions | -rw-r--r-- |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
1 |
Important notes on Mercurial repository access for Isabelle |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
2 |
=========================================================== |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
3 |
|
54963 | 4 |
Quick start in 30min |
49348 | 5 |
-------------------- |
6 |
||
51597 | 7 |
1a. Linux and Mac OS X: ensure that Perl (with libwww) and Mercurial (hg) |
8 |
is installed (see also http://www.selenic.com/mercurial) |
|
49348 | 9 |
|
54963 | 10 |
1b. Windows: ensure that Cygwin with Perl and Mercurial is installed (see |
51597 | 11 |
also http://www.cygwin.com) |
49348 | 12 |
|
50653
5c85f8b80b95
simplified quick start via "isabelle components -I";
wenzelm
parents:
50617
diff
changeset
|
13 |
2. Clone repository (bash shell commands): |
49348 | 14 |
|
15 |
hg clone http://isabelle.in.tum.de/repos/isabelle |
|
16 |
||
50575 | 17 |
cd isabelle |
49348 | 18 |
|
50653
5c85f8b80b95
simplified quick start via "isabelle components -I";
wenzelm
parents:
50617
diff
changeset
|
19 |
./bin/isabelle components -I |
5c85f8b80b95
simplified quick start via "isabelle components -I";
wenzelm
parents:
50617
diff
changeset
|
20 |
|
50575 | 21 |
./bin/isabelle components -a |
49348 | 22 |
|
50575 | 23 |
./bin/isabelle jedit -l HOL |
49348 | 24 |
|
51502 | 25 |
./bin/isabelle build -b HOL #optional: build session image manually |
26 |
||
50653
5c85f8b80b95
simplified quick start via "isabelle components -I";
wenzelm
parents:
50617
diff
changeset
|
27 |
3. Update repository (bash shell commands): |
50281
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
28 |
|
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
29 |
cd isabelle |
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
30 |
|
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
31 |
hg pull -u |
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
32 |
|
50575 | 33 |
./bin/isabelle components -a |
34 |
||
35 |
./bin/isabelle jedit -l HOL |
|
36 |
||
51502 | 37 |
./bin/isabelle jedit -b -f #optional: force fresh build of Isabelle/Scala |
38 |
||
39 |
4. Access documentation (bash shell commands): |
|
40 |
||
53359 | 41 |
./bin/isabelle build_doc -a |
51502 | 42 |
|
43 |
./bin/isabelle doc system |
|
44 |
||
49348 | 45 |
|
40601 | 46 |
Introduction |
47 |
------------ |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
48 |
|
40601 | 49 |
Mercurial http://www.selenic.com/mercurial belongs to the current |
50 |
generation of source code management systems that follow the so-called |
|
51 |
paradigm of "distributed version control". This is a terrific name |
|
52 |
for plain revision control without the legacy of CVS or SVN. See also |
|
53 |
http://hginit.com/ for an introduction to the main ideas. The |
|
54 |
Mercurial book http://hgbook.red-bean.com/ explains many more details. |
|
55 |
||
56 |
Mercurial offers great flexibility in organizing the flow of changes, |
|
57 |
both between individual developers and designated pull/push areas that |
|
58 |
are shared with others. This additional power demands some additional |
|
59 |
responsibility to maintain a certain development process that fits to |
|
60 |
a particular project. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
61 |
|
40601 | 62 |
Regular Mercurial operations are strictly monotonic, where changeset |
51502 | 63 |
transactions are only added, but never deleted or mutated. There are |
64 |
special tools to manipulate repositories via non-monotonic actions |
|
65 |
(such as "rollback" or "strip"), but recovering from gross mistakes |
|
66 |
that have escaped into the public can be hard and embarrassing. It is |
|
67 |
much easier to inspect and amend changesets routinely before pushing. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
68 |
|
40601 | 69 |
The effect of the critical "pull" / "push" operations can be tested in |
70 |
a dry run via "incoming" / "outgoing". The "fetch" extension includes |
|
51502 | 71 |
useful sanity checks beyond raw "pull" / "update" / "merge", although |
72 |
it has lost popularity in recent years. Most other operations are |
|
73 |
local to the user's repository clone. This gives some freedom for |
|
74 |
experimentation without affecting anybody else. |
|
40601 | 75 |
|
76 |
Mercurial provides nice web presentation of incoming changes with a |
|
77 |
digest of log entries; this also includes RSS/Atom news feeds. There |
|
47449 | 78 |
are add-on history browsers such as "hg view" and TortoiseHg. Unlike |
79 |
the default web view, some of these tools help to inspect the semantic |
|
80 |
content of non-trivial merge nodes. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
81 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
82 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
83 |
Initial configuration |
29481 | 84 |
--------------------- |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
85 |
|
51502 | 86 |
The main Isabelle repository can be cloned like this: |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
87 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
88 |
hg clone http://isabelle.in.tum.de/repos/isabelle |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
89 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
90 |
This will create a local directory "isabelle", unless an alternative |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
91 |
name is specified. The full repository meta-data and history of |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
92 |
changes is in isabelle/.hg; local configuration for this clone can be |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
93 |
added to isabelle/.hg/hgrc, but note that hgrc files are never copied |
40601 | 94 |
by another clone operation. |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
95 |
|
28917 | 96 |
|
28913 | 97 |
There is also $HOME/.hgrc for per-user Mercurial configuration. The |
40601 | 98 |
initial configuration requires at least an entry to identify yourself |
99 |
as follows: |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
100 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
101 |
[ui] |
40601 | 102 |
username = XXX |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
103 |
|
40601 | 104 |
Isabelle contributors are free to choose either a short "login name" |
105 |
(for accounts at TU Munich) or a "full name" -- with or without mail |
|
106 |
address. It is important to stick to this choice once and for all. |
|
107 |
The machine default that Mercurial produces for unspecified |
|
108 |
[ui]username is not appropriate. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
109 |
|
40601 | 110 |
Such configuration can be given in $HOME/.hgrc (for each home |
111 |
directory on each machine) or in .hg/hgrc (for each repository clone). |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
112 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
113 |
|
40601 | 114 |
Here are some further examples for hgrc. This is how to provide |
115 |
default options for common commands: |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
116 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
117 |
[defaults] |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
118 |
log = -l 10 |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
119 |
|
40601 | 120 |
This is how to configure some extension, which is called "graphlog" |
121 |
and provides the "glog" command: |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
122 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
123 |
[extensions] |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
124 |
hgext.graphlog = |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
125 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
126 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
127 |
Shared pull/push access |
29481 | 128 |
----------------------- |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
129 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
130 |
The entry point http://isabelle.in.tum.de/repos/isabelle is world |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
131 |
readable, both via plain web browsing and the hg client as described |
40601 | 132 |
above. Anybody can produce a clone, change it locally, and then use |
133 |
regular mechanisms of Mercurial to report changes upstream, say via |
|
134 |
mail to someone with write access to that file space. It is also |
|
135 |
quite easy to publish changed clones again on the web, using the |
|
136 |
ad-hoc command "hg serve -v", or the hgweb.cgi or hgwebdir.cgi scripts |
|
137 |
that are included in the Mercurial distribution, and send a "pull |
|
138 |
request" to someone else. There are also public hosting services for |
|
51502 | 139 |
Mercurial repositories, notably Bitbucket. |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
140 |
|
28913 | 141 |
The downstream/upstream mode of operation is quite common in the |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
142 |
distributed version control community, and works well for occasional |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
143 |
changes produced by anybody out there. Of course, upstream |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
144 |
maintainers need to review and moderate changes being proposed, before |
40601 | 145 |
pushing anything onto the official Isabelle repository at TUM. Direct |
146 |
pushes are also reviewed routinely in a post-hoc fashion; everybody |
|
147 |
hooked on the main repository is called to keep an eye on incoming |
|
51502 | 148 |
changes. In any case, changesets need to be understandable, both at |
149 |
the time of writing and many years later. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
150 |
|
40601 | 151 |
Push access to the Isabelle repository requires an account at TUM, |
51072 | 152 |
with properly configured ssh to isabelle-server.in.tum.de. You also |
153 |
need to be a member of the "isabelle" Unix group. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
154 |
|
28913 | 155 |
Sharing a locally modified clone then works as follows, using your |
156 |
user name instead of "wenzelm": |
|
157 |
||
51072 | 158 |
hg out ssh://wenzelm@isabelle-server.in.tum.de//home/isabelle-repository/repos/isabelle |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
159 |
|
28913 | 160 |
In fact, the "out" or "outgoing" command performs only a dry run: it |
161 |
displays the changesets that would get published. An actual "push", |
|
162 |
with a lasting effect on the Isabelle repository, works like this: |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
163 |
|
51072 | 164 |
hg push ssh://wenzelm@isabelle-server.in.tum.de//home/isabelle-repository/repos/isabelle |
28913 | 165 |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
166 |
|
40601 | 167 |
Default paths for push and pull can be configured in |
168 |
isabelle/.hg/hgrc, for example: |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
169 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
170 |
[paths] |
51072 | 171 |
default = ssh://wenzelm@isabelle-server.in.tum.de//home/isabelle-repository/repos/isabelle |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
172 |
|
28913 | 173 |
Now "hg pull" or "hg push" will use that shared file space, unless a |
174 |
different URL is specified explicitly. |
|
175 |
||
176 |
When cloning a repository, the default path is set to the initial |
|
177 |
source URL. So we could have cloned via that ssh URL in the first |
|
178 |
place, to get exactly to the same point: |
|
179 |
||
51072 | 180 |
hg clone ssh://wenzelm@isabelle-server.in.tum.de//home/isabelle-repository/repos/isabelle |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
181 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
182 |
|
40601 | 183 |
Simple merges |
184 |
------------- |
|
30182 | 185 |
|
186 |
The main idea of Mercurial is to let individual users produce |
|
187 |
independent branches of development first, but merge with others |
|
188 |
frequently. The basic hg merge operation is more general than |
|
189 |
required for the mode of operation with a shared pull/push area. The |
|
40601 | 190 |
"fetch" extension accommodates this case nicely, automating trivial |
30182 | 191 |
merges and requiring manual intervention for actual conflicts only. |
192 |
||
40601 | 193 |
The fetch extension can be configured via $HOME/.hgrc like this: |
30182 | 194 |
|
195 |
[extensions] |
|
196 |
hgext.fetch = |
|
197 |
||
198 |
[defaults] |
|
199 |
fetch = -m "merged" |
|
200 |
||
40601 | 201 |
To keep merges semantically trivial and prevent genuine merge |
202 |
conflicts or lost updates, it is essential to observe to following |
|
203 |
general discipline wrt. the public Isabelle push area: |
|
204 |
||
205 |
* Before editing, pull or fetch the latest version. |
|
206 |
||
207 |
* Accumulate private commits for a maximum of 1-3 days. |
|
208 |
||
209 |
* Start publishing again by pull or fetch, which normally produces |
|
210 |
local merges. |
|
211 |
||
50281
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
212 |
* Test the merged result, e.g. like this: |
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
213 |
|
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
214 |
isabelle build -a |
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
215 |
|
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
216 |
* Push back in real time. |
40601 | 217 |
|
218 |
Piling private changes and public merges longer than 0.5-2 hours is |
|
219 |
apt to produce some mess when pushing eventually! |
|
30182 | 220 |
|
50281
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
221 |
The pull-test-push cycle should not be repeated too fast, to avoid |
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
222 |
delaying others from doing the same concurrently. |
cbba16084784
further update and clarification of the all-important README_REPOSITORY;
wenzelm
parents:
49443
diff
changeset
|
223 |
|
30182 | 224 |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
225 |
Content discipline |
29481 | 226 |
------------------ |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
227 |
|
40601 | 228 |
The following principles should be kept in mind when producing |
229 |
changesets that are meant to be published at some point. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
230 |
|
40601 | 231 |
* The author of changes needs to be properly identified, using |
232 |
[ui]username configuration as described above. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
233 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
234 |
While Mercurial also provides means for signed changesets, we want |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
235 |
to keep things simple and trust that users specify their identity |
40601 | 236 |
correctly (and uniquely). |
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
237 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
238 |
* The history of sources is an integral part of the sources |
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
239 |
themselves. This means that private experiments and branches |
40601 | 240 |
should not be published by accident. Named branches are not |
241 |
allowed on the public version. Note that old SVN-style branching |
|
242 |
is replaced by regular repository clones in Mercurial. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
243 |
|
40601 | 244 |
Exchanging local experiments with some other users can be done |
245 |
directly on peer-to-peer basis, without affecting the central |
|
246 |
pull/push area. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
247 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
248 |
* Log messages are an integral part of the history of sources. |
40601 | 249 |
Other people will have to inspect them routinely, to understand |
250 |
why things have been done in a certain way at some point. |
|
251 |
||
252 |
Authors of log entries should be aware that published changes are |
|
253 |
actually read. The main point is not to announce novelties, but |
|
254 |
to describe faithfully what has been done, and provide some clues |
|
255 |
about the motivation behind it. The main recipient is someone who |
|
256 |
needs to understand the change in the distant future to isolate |
|
51502 | 257 |
problems. Sometimes it is helpful to reference past changes |
258 |
formally via changeset ids in the log entry. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
259 |
|
40601 | 260 |
* The standard changelog entry format of the Isabelle repository |
51502 | 261 |
admits several (somehow related) items to be rolled into one |
40601 | 262 |
changeset. Each item is then described on a separate line that |
263 |
may become longer as screen line and is terminated by punctuation. |
|
264 |
These lines are roughly ordered by importance. |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
265 |
|
40601 | 266 |
This format conforms to established Isabelle tradition. In |
267 |
contrast, the default of Mercurial prefers a single headline |
|
268 |
followed by a long body text. The reason for that is a somewhat |
|
269 |
different development model of typical "distributed" projects, |
|
270 |
where external changes pass through a hierarchy of reviewers and |
|
271 |
maintainers, until they end up in some authoritative repository. |
|
272 |
Isabelle changesets can be more spontaneous, growing from the |
|
273 |
bottom-up. |
|
274 |
||
275 |
The web style of http://isabelle.in.tum.de/repos/isabelle/ |
|
276 |
accommodates the Isabelle changelog format. Note that multiple |
|
277 |
lines will sometimes display as a single paragraph in HTML, so |
|
278 |
some terminating punctuation is required. Do not squeeze multiple |
|
279 |
items on the same line in the original text! |
|
28907
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
280 |
|
1a470f95ef18
Important notes on Mercurial repository access for Isabelle.
wenzelm
parents:
diff
changeset
|
281 |
|
51502 | 282 |
Testing of changes (before push) |
283 |
-------------------------------- |
|
48497
ba61aceaa18a
some updates on "Building a repository version of Isabelle";
wenzelm
parents:
47449
diff
changeset
|
284 |
|
51502 | 285 |
The integrity of the standard pull/push area of Isabelle needs the be |
286 |
preserved at all time. This means that a complete test with default |
|
287 |
configuration needs to be finished successfully before push. If the |
|
288 |
preparation of the push involves a pull/merge phase, its result needs |
|
289 |
to covered by the test as well. |
|
28908 | 290 |
|
51502 | 291 |
There are several possibilities to perform the test, e.g. using the |
292 |
Isabelle testboard at TUM. In contrast, the subsequent command-line |
|
293 |
examples are for tests on the local machine: |
|
48844 | 294 |
|
51502 | 295 |
./bin/isabelle build -a #regular test |
48844 | 296 |
|
51502 | 297 |
./bin/isabelle build -a -o document=pdf #test with document preparation |
48844 | 298 |
|
51502 | 299 |
./bin/isabelle build -a -j2 -o threads=4 #test on multiple cores (example) |
48497
ba61aceaa18a
some updates on "Building a repository version of Isabelle";
wenzelm
parents:
47449
diff
changeset
|
300 |
|
51502 | 301 |
See also the chapter on Isabelle sessions and build management in the |
302 |
"system" manual. |
|
48986
037d32448e29
update on "isabelle build" and "isabelle build_doc";
wenzelm
parents:
48855
diff
changeset
|
303 |
|
51502 | 304 |
Note that implicit dependencies on Isabelle components are specified |
305 |
via catalog files in $ISABELLE_HOME/Admin/components/ as part of the |
|
306 |
Mercurial history. This allows to bisect over a range of Isabelle |
|
307 |
versions while references to the contributing components change |
|
308 |
accordingly. Recall that "isabelle components -a" updates the local |
|
309 |
component store monotonically according to that information, and thus |
|
310 |
resolves missing components. |