1 | 2 patches for repository d:/tahoe/buildconfig/trunkcopy: |
---|
2 | |
---|
3 | Fri Oct 29 02:06:23 GMT Daylight Time 2010 david-sarah@jacaranda.org |
---|
4 | * tahoe/bbgeneral.py: mark the overall build as having warnings if the test-from-egg or test-from-prefixdir steps fail or warn |
---|
5 | |
---|
6 | Fri Oct 29 03:46:15 GMT Daylight Time 2010 david-sarah@jacaranda.org |
---|
7 | * tahoe/bbgeneral.py, bbsupport.py: add test-with-fake-pkg step |
---|
8 | |
---|
9 | New patches: |
---|
10 | |
---|
11 | [tahoe/bbgeneral.py: mark the overall build as having warnings if the test-from-egg or test-from-prefixdir steps fail or warn |
---|
12 | david-sarah@jacaranda.org**20101029010623 |
---|
13 | Ignore-this: 4811e6c094c756eddc6f040ba909f46 |
---|
14 | ] hunk ./tahoe/bbgeneral.py 107 |
---|
15 | f.addStep(InstallToEgg()) |
---|
16 | if do_test_from_egg: |
---|
17 | # The following step isn't done on all builders because our tests take too long to run. |
---|
18 | - f.addStep(TestFromEgg(testsuite='allmydata.test', flunkOnFailure=False)) |
---|
19 | + f.addStep(TestFromEgg(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) |
---|
20 | |
---|
21 | if do_install_to_prefixdir: |
---|
22 | f.addStep(InstallToPrefixDir()) |
---|
23 | hunk ./tahoe/bbgeneral.py 113 |
---|
24 | # The following step isn't done on all builders because our tests take too long to run or because the builder doesn't have all the dependencies installed. |
---|
25 | if do_test_from_prefixdir: |
---|
26 | - f.addStep(TestFromPrefixDir(testsuite='allmydata.test', flunkOnFailure=False)) |
---|
27 | + f.addStep(TestFromPrefixDir(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) |
---|
28 | |
---|
29 | if build_windows_exe: |
---|
30 | exe_command = [MAKE, "windows-installer"] |
---|
31 | [tahoe/bbgeneral.py, bbsupport.py: add test-with-fake-pkg step |
---|
32 | david-sarah@jacaranda.org**20101029024615 |
---|
33 | Ignore-this: e9548eb5fcb82915567ea329d5489ada |
---|
34 | ] hunk ./bbsupport.py 163 |
---|
35 | for t in tests]) + "\n" |
---|
36 | self.addCompleteLog("timings", timings) |
---|
37 | |
---|
38 | +class TestWithFakePkg(PythonCommand): |
---|
39 | + """ |
---|
40 | + Step to run a subset of the Tahoe-LAFS tests with a fake package (that has a lower than |
---|
41 | + required version number) on the PYTHONPATH, to see whether the build system incorrectly |
---|
42 | + uses that package rather than the real one with the correct version number. |
---|
43 | + See <http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1190>. |
---|
44 | + """ |
---|
45 | + flunkOnFailure = True |
---|
46 | + description = ["test-with-fake-pkg"] |
---|
47 | + name = "test-with-fake-pkg" |
---|
48 | + logfiles = {"test.log": "src/_trial_temp/test.log"} |
---|
49 | + python_command = ["misc/build_helpers/test-with-fake-pkg.py"] |
---|
50 | + |
---|
51 | class UploadTarballs(ShellCommand): |
---|
52 | """ |
---|
53 | Invoke "make tarballs" with an env var to tell it what branch. |
---|
54 | hunk ./tahoe/bbgeneral.py 71 |
---|
55 | do_pyflakes_linecounts=False, python=None, |
---|
56 | build_windows_exe=False, build_mac_app=False, |
---|
57 | upload_dmg_furlfile=None, |
---|
58 | - do_gridchecks=[], do_install_to_egg=False, do_test_from_egg=False, do_install_to_prefixdir=False, do_test_from_prefixdir=False, |
---|
59 | + do_gridchecks=[], do_install_to_egg=False, do_test_from_egg=False, do_install_to_prefixdir=False, do_test_from_prefixdir=False, do_test_with_fake_pkg=True, |
---|
60 | MAKE='make', |
---|
61 | TAR='tar', |
---|
62 | testtimeout=7200): |
---|
63 | hunk ./tahoe/bbgeneral.py 94 |
---|
64 | else: |
---|
65 | f.addStep(BuiltTest(python=python, haltOnFailure=True, timeout=testtimeout)) # do not build packages if tests fail |
---|
66 | |
---|
67 | + if do_test_with_fake_pkg: |
---|
68 | + f.addStep(TestWithFakePkg(python=python, warnOnWarnings=True, flunkOnFailure=False, timeout=testtimeout)) |
---|
69 | + |
---|
70 | for (name, clientdir) in do_gridchecks: |
---|
71 | checkcommand = [MAKE, "check-grid", "TESTCLIENTDIR=%s" % clientdir] |
---|
72 | f.addStep(ShellCommand(command=checkcommand, haltOnFailure=True, |
---|
73 | hunk ./tahoe/bbgeneral.py 110 |
---|
74 | f.addStep(InstallToEgg()) |
---|
75 | if do_test_from_egg: |
---|
76 | # The following step isn't done on all builders because our tests take too long to run. |
---|
77 | - f.addStep(TestFromEgg(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) |
---|
78 | + f.addStep(TestFromEgg(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False, timeout=testtimeout)) |
---|
79 | |
---|
80 | if do_install_to_prefixdir: |
---|
81 | f.addStep(InstallToPrefixDir()) |
---|
82 | hunk ./tahoe/bbgeneral.py 116 |
---|
83 | # The following step isn't done on all builders because our tests take too long to run or because the builder doesn't have all the dependencies installed. |
---|
84 | if do_test_from_prefixdir: |
---|
85 | - f.addStep(TestFromPrefixDir(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) |
---|
86 | + f.addStep(TestFromPrefixDir(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False, timeout=testtimeout)) |
---|
87 | |
---|
88 | if build_windows_exe: |
---|
89 | exe_command = [MAKE, "windows-installer"] |
---|
90 | |
---|
91 | Context: |
---|
92 | |
---|
93 | [comment-out test-from on mm |
---|
94 | zooko@zooko.com**20100923013333 |
---|
95 | Ignore-this: c605cb67be0bccc7466aa9887fc7aa23 |
---|
96 | ] |
---|
97 | [set the overall test step timeout higher for fdz's ARM system |
---|
98 | zooko@zooko.com**20100922204930 |
---|
99 | Ignore-this: 5e15c6e5884d4091ce9a9e0cfd27200 |
---|
100 | ] |
---|
101 | [disable test-from-foo on kyle's |
---|
102 | zooko@zooko.com**20100922182808 |
---|
103 | Ignore-this: d881166d44021cb24f8c293d43a4ff8d |
---|
104 | ] |
---|
105 | [attempt to turn on real upload of .deb's for tahoe-lafs |
---|
106 | zooko@zooko.com**20100922122603 |
---|
107 | Ignore-this: bb83e0a576925c1a36825ed467bc1bf7 |
---|
108 | ] |
---|
109 | [demote FranXois arm |
---|
110 | zooko@zooko.com**20100922121951 |
---|
111 | Ignore-this: 1808b2d7415cdaa4616455f74fa52168 |
---|
112 | ] |
---|
113 | [rename deb-lenny-i386 to deb-lenny-i386-arthur |
---|
114 | zooko@zooko.com**20100922121628 |
---|
115 | Ignore-this: 2c8f9ad2b13881d2e4ce637f27c494f9 |
---|
116 | ] |
---|
117 | [add egg |
---|
118 | zooko**20100922121907 |
---|
119 | Ignore-this: 9a023e61839fd8cbaf2462aaa2be2e9c |
---|
120 | ] |
---|
121 | [turn off some more test-from-foo's |
---|
122 | zooko@zooko.com**20100922064531 |
---|
123 | Ignore-this: f3e9c209e01bf437c18f12d55ae22f2c |
---|
124 | ] |
---|
125 | [zfec: turn off test-from-prefixdir on ruben's |
---|
126 | zooko@zooko.com**20100922061951 |
---|
127 | Ignore-this: 3af856ca273a31844ca15496e5432d9 |
---|
128 | ] |
---|
129 | [turn off test-from-egg and test-from-prefix on machines where those tests fail due to a bug in setuptools/distribute |
---|
130 | zooko@zooko.com**20100922052925 |
---|
131 | Ignore-this: 215f756601f48200e56267e6f5856446 |
---|
132 | ] |
---|
133 | [promote ruben's fedora |
---|
134 | zooko@zooko.com**20100922051602 |
---|
135 | Ignore-this: ac6d9b56854f3351c3de1eaa4a0d9730 |
---|
136 | ] |
---|
137 | [promote FreeStorm's CentOS |
---|
138 | zooko@zooko.com**20100922044559 |
---|
139 | Ignore-this: c284749db277cd2ff5338654073b9872 |
---|
140 | ] |
---|
141 | [don't upload deb from both arthur's and arthur's syslib |
---|
142 | zooko@zooko.com**20100922043809 |
---|
143 | Ignore-this: e12580570e67151dd7c12b54d9636e27 |
---|
144 | ] |
---|
145 | [mark Soultcer's as no-compiler |
---|
146 | zooko@zooko.com**20100922042603 |
---|
147 | Ignore-this: 355f54175b99862b46544b0f675908bb |
---|
148 | ] |
---|
149 | [promote FranXois's armv5tel |
---|
150 | zooko@zooko.com**20100922042336 |
---|
151 | Ignore-this: 63a7eed552c862f338a810b20e1da70c |
---|
152 | ] |
---|
153 | [fieldcircus is lucid now |
---|
154 | zooko@zooko.com**20100922041518 |
---|
155 | Ignore-this: dbc9f53e46084f11e3cecba00308479f |
---|
156 | ] |
---|
157 | [re-promote Arthur's buildslave since it is back |
---|
158 | zooko@zooko.com**20100922041507 |
---|
159 | Ignore-this: f58c309ad16c20d459c7a19144622eae |
---|
160 | ] |
---|
161 | [fix detection of platform string |
---|
162 | zooko@zooko.com**20100921071520 |
---|
163 | Ignore-this: 6c27f7e1f626fc3bcf3e31c044ea60e8 |
---|
164 | ] |
---|
165 | [demote arthur's due to disconnectedness |
---|
166 | zooko@zooko.com**20100921071010 |
---|
167 | Ignore-this: 64996eab47c231c91e57a9b213866ff6 |
---|
168 | ] |
---|
169 | [fix cutnpasto |
---|
170 | zooko**20100921070825 |
---|
171 | Ignore-this: 174917f9cc4c2ca2df88d90fb09b5f75 |
---|
172 | ] |
---|
173 | [show platform in waterfall |
---|
174 | zooko@zooko.com**20100921062252 |
---|
175 | Ignore-this: f676618884eb8775ad9603ff33a0f2a6 |
---|
176 | ] |
---|
177 | [zfec: rename Brian's linode from amd64 to i386 |
---|
178 | zooko@zooko.com**20100920224856 |
---|
179 | Ignore-this: c029e4bd3effd6bcd4aede48ef2a3f23 |
---|
180 | ] |
---|
181 | [tahoe-lafs: rename Brian's linode from amd64 to i386 |
---|
182 | zooko@zooko.com**20100920224841 |
---|
183 | Ignore-this: b49f3a331dd295ea49a814faf5c27d9d |
---|
184 | ] |
---|
185 | [pycryptopp: rename Brian's linode from amd64 to i386 |
---|
186 | zooko@zooko.com**20100920224830 |
---|
187 | Ignore-this: eadac537413599c3e05944acaac610e6 |
---|
188 | ] |
---|
189 | [Ocypete upload egg |
---|
190 | zooko@zooko.com**20100919073212 |
---|
191 | Ignore-this: 36c8639838b2a01c1ea4b9642bf2122e |
---|
192 | ] |
---|
193 | [remove syslib from zfec |
---|
194 | zooko@zooko.com**20100919071900 |
---|
195 | Ignore-this: eb62a9fe5906d04a6afa49a7b9956f46 |
---|
196 | ] |
---|
197 | [Ocypete for zfec |
---|
198 | zooko@zooko.com**20100919070152 |
---|
199 | Ignore-this: f78d8ab4cc4700d43ab4edc4899f86c |
---|
200 | ] |
---|
201 | [Ocypete tahoe-lafs secrets |
---|
202 | zooko@zooko.com**20100919070128 |
---|
203 | Ignore-this: 48d5388e50c37462f082f4c7365fca25 |
---|
204 | ] |
---|
205 | [add Ocypete for tahoe-lafs |
---|
206 | zooko@zooko.com**20100919070122 |
---|
207 | Ignore-this: 841884241fae044175c9ca1a3296c78b |
---|
208 | ] |
---|
209 | [add Ocypete for pycryptopp |
---|
210 | zooko@zooko.com**20100919070104 |
---|
211 | Ignore-this: 424a9ea73b8f19a5822688c575775f0c |
---|
212 | ] |
---|
213 | [fix names of steps |
---|
214 | zooko@zooko.com**20100919043941 |
---|
215 | Ignore-this: 36f9c6777612954aa96ea482d4d5a4ed |
---|
216 | ] |
---|
217 | [merge |
---|
218 | zooko@zooko.com**20100919013641 |
---|
219 | Ignore-this: a009dd1bab1e9fb767e7a6dc637bcdbb |
---|
220 | ] |
---|
221 | [merge |
---|
222 | zooko@zooko.com**20100919013220 |
---|
223 | Ignore-this: 3f9ef9f3b0706a5f68086ead744f83f1 |
---|
224 | ] |
---|
225 | [temporarily turn off code coverage |
---|
226 | zooko@zooko.com**20100919012507 |
---|
227 | Ignore-this: 82d4e0dd006770e723194efd6bae38bb |
---|
228 | ] |
---|
229 | [add commented-out call to invoke test-sha256 with valgrind |
---|
230 | zooko@zooko.com**20100919012015 |
---|
231 | Ignore-this: 7011b79f73326ebbdf8d6ee8d6f8c2d2 |
---|
232 | ] |
---|
233 | [add a bunch of upload-eggs |
---|
234 | zooko@zooko.com**20100905052851 |
---|
235 | Ignore-this: 8cae935a503ac2a54ec845af4886d87e |
---|
236 | ] |
---|
237 | [add step to print out the version of Crypto++, add syslib variants for all platforms that appear to have their own packaging of Crypto++ available |
---|
238 | zooko@zooko.com**20100905041354 |
---|
239 | Ignore-this: 81546e641458dff184fc30febd54c80d |
---|
240 | ] |
---|
241 | [give nice descriptions to testdoubleload |
---|
242 | zooko@zooko.com**20100904195452 |
---|
243 | Ignore-this: e7b082ccb5bfa82ccec237a176a051a2 |
---|
244 | ] |
---|
245 | [turn on valgrind on FreeStorm's CentOS |
---|
246 | zooko@zooko.com**20100904193626 |
---|
247 | Ignore-this: be0900b7fa01842c02cc110bbf8d0a55 |
---|
248 | ] |
---|
249 | [test double load (gives glibc double free error on Ubuntu 64 bit) |
---|
250 | zooko@zooko.com**20100904162533 |
---|
251 | Ignore-this: 61bb626c55353a937e61d9f9399bfd2c |
---|
252 | ] |
---|
253 | [demote Ruben's because it just failed |
---|
254 | zooko@zooko.com**20100902210039 |
---|
255 | Ignore-this: 29600e8488e71d4334af6dfbb2360c9f |
---|
256 | ] |
---|
257 | [fix zfec for new parameterized TAR |
---|
258 | zooko**20100808150312 |
---|
259 | Ignore-this: d6cef9b0218df495ceea02e24aa74ec4 |
---|
260 | ] |
---|
261 | [decommission ootles |
---|
262 | zooko@zooko.com**20100808145445 |
---|
263 | Ignore-this: 6f819b981e2160fe9deb1820db3005f9 |
---|
264 | ] |
---|
265 | [fix bugs |
---|
266 | zooko**20100806064748 |
---|
267 | Ignore-this: ed44dc340ff13eef15b4437a41e87147 |
---|
268 | ] |
---|
269 | [promote FreeStorm WinXP-x86 py2.6 to Supported |
---|
270 | zooko@zooko.com**20100806064351 |
---|
271 | Ignore-this: 54638699f27134b2ac160721223bde06 |
---|
272 | ] |
---|
273 | [use gtar on *BSD |
---|
274 | zooko@zooko.com**20100806063811 |
---|
275 | Ignore-this: 38c738d44b68cc9ed624f8bf9e550cfd |
---|
276 | ] |
---|
277 | [remove broken lnk |
---|
278 | zooko@zooko.com**20100806061057 |
---|
279 | Ignore-this: 1fbc7ee3c37e17a73705489a3496f83f |
---|
280 | ] |
---|
281 | [turn off coverage on Ruben's |
---|
282 | zooko@zooko.com**20100806061043 |
---|
283 | Ignore-this: 3e85fe0c391949414934c6d45c9efcab |
---|
284 | ] |
---|
285 | [make test-from-egg and test-from-prefix nonfatal |
---|
286 | zooko@zooko.com**20100803150628 |
---|
287 | Ignore-this: 3c1166771c805eadfb6fb141ca3f4bef |
---|
288 | ] |
---|
289 | [don't stop coverage-generation even if "coverage html" returned non-zero |
---|
290 | zooko@zooko.com**20100803150429 |
---|
291 | Ignore-this: 35c9b4ca924d6e7f90de0624ec39809a |
---|
292 | ] |
---|
293 | [turn on cov on zomp for tahoe-lafs |
---|
294 | zooko@zooko.com**20100801183405 |
---|
295 | Ignore-this: a274e7b5e90d5d54e9fa624791a02681 |
---|
296 | ] |
---|
297 | [turn on coverage on ruben fedora |
---|
298 | zooko@zooko.com**20100801083159 |
---|
299 | Ignore-this: fe107b08e93da6b749266d3ee247dfef |
---|
300 | ] |
---|
301 | [full name |
---|
302 | zooko@zooko.com**20100801082352 |
---|
303 | Ignore-this: 476a147a5fdb36125d1484ac821e7261 |
---|
304 | ] |
---|
305 | [whee |
---|
306 | zooko@zooko.com**20100801081956 |
---|
307 | Ignore-this: 392f1600a3ffb647ce36551b436b18a0 |
---|
308 | ] |
---|
309 | [rename to no dot |
---|
310 | zooko@zooko.com**20100801075839 |
---|
311 | Ignore-this: 6e2ea2fee2e4f4dcd6ec82179c9927b8 |
---|
312 | ] |
---|
313 | [version number in cov arch fname |
---|
314 | zooko@zooko.com**20100801073127 |
---|
315 | Ignore-this: 7cec46215765944c91687e4cddca89f9 |
---|
316 | ] |
---|
317 | [fix typo |
---|
318 | zooko**20100801065346 |
---|
319 | Ignore-this: e07c97e6811a19da7ac06c6896d2c7de |
---|
320 | ] |
---|
321 | ["tar" -> "archive" and add furl args |
---|
322 | zooko@zooko.com**20100801065228 |
---|
323 | Ignore-this: 440d6b84a73ef16b21dc884ac773de79 |
---|
324 | ] |
---|
325 | [turn on zfec coverage on zomp |
---|
326 | zooko@zooko.com**20100801064446 |
---|
327 | Ignore-this: bea59220de82f3471decf9855b46a48f |
---|
328 | ] |
---|
329 | [fix workdir of zfec coverage |
---|
330 | zooko@zooko.com**20100801062721 |
---|
331 | Ignore-this: ecf2d486e0e164ee271d1201f99e3bc3 |
---|
332 | ] |
---|
333 | [turn on zfec coverage on ruben's |
---|
334 | zooko@zooko.com**20100801062516 |
---|
335 | Ignore-this: a8172d9285dd2c9980f36a11561b17aa |
---|
336 | ] |
---|
337 | [fix bugs in coverage for zfec |
---|
338 | zooko**20100801060554 |
---|
339 | Ignore-this: a6cf0055610e3775bc9a3b18e8124858 |
---|
340 | ] |
---|
341 | [code coverage for zfec |
---|
342 | zooko@zooko.com**20100801060226 |
---|
343 | Ignore-this: 92f76e65b7dc5db7be2b72e3680e10d2 |
---|
344 | ] |
---|
345 | [try new coverage upload features (probably incomplete) |
---|
346 | zooko@zooko.com**20100801055357 |
---|
347 | Ignore-this: a9e5454f5f1bbc4fa323f8b8b63c4627 |
---|
348 | ] |
---|
349 | [new freestorm box zfec |
---|
350 | zooko@zooko.com**20100728223707 |
---|
351 | Ignore-this: efc0b8327b2d1e18501508b22d60dd82 |
---|
352 | ] |
---|
353 | [new freestorm box pycryptopp |
---|
354 | zooko@zooko.com**20100728223650 |
---|
355 | Ignore-this: 1abfdec869263f5f21b8996b4e0b989c |
---|
356 | ] |
---|
357 | [freestorm-win7-64-mingw |
---|
358 | zooko@zooko.com**20100728223215 |
---|
359 | Ignore-this: 9eff06d651ea5e3bb3f843117949fcfd |
---|
360 | ] |
---|
361 | [fix missing detail of brian-linode |
---|
362 | zooko**20100726171736 |
---|
363 | Ignore-this: 6e45e8a6f09da2bf4bc8f071947ac8aa |
---|
364 | ] |
---|
365 | [brian linide |
---|
366 | zooko@zooko.com**20100726054124 |
---|
367 | Ignore-this: cb41d370719fe43a8143ad84dd80c96c |
---|
368 | ] |
---|
369 | [much simpler python version-and-path |
---|
370 | zooko@zooko.com**20100726052311 |
---|
371 | Ignore-this: d9475e2dd189b139d8b9076764f0f7ae |
---|
372 | ] |
---|
373 | [brian-linode zfec |
---|
374 | zooko@zooko.com**20100726051425 |
---|
375 | Ignore-this: 627d00ea2b1104ad0320bedec3fb6381 |
---|
376 | ] |
---|
377 | [missing piece |
---|
378 | zooko@zooko.com**20100726051414 |
---|
379 | Ignore-this: 7d713033ef1c75aa8537c9bc607195af |
---|
380 | ] |
---|
381 | [new style branching (zfec) |
---|
382 | zooko@zooko.com**20100726051301 |
---|
383 | Ignore-this: deb87ae92b63a5c6d4474834fa27336e |
---|
384 | ] |
---|
385 | [new style branching (pycryptopp) |
---|
386 | zooko@zooko.com**20100726050628 |
---|
387 | Ignore-this: e3beed6bd71723f63140cd460c6823e2 |
---|
388 | ] |
---|
389 | [add brian-linode (pycryptopp) |
---|
390 | zooko@zooko.com**20100726050615 |
---|
391 | Ignore-this: 5bf6d83857bdd0aca7702232780232ea |
---|
392 | ] |
---|
393 | [fix no-upload-non-trunk |
---|
394 | zooko@zooko.com**20100726044302 |
---|
395 | Ignore-this: 4750c1d3f8a01b303e765289d9ce8a26 |
---|
396 | ] |
---|
397 | [fix scheduler for any branch |
---|
398 | zooko**20100726040642 |
---|
399 | Ignore-this: 425068cf0f9462e9de7237bbe64b802a |
---|
400 | ] |
---|
401 | [simplify/fix upload-tarballs use of branch |
---|
402 | zooko@zooko.com**20100726024747 |
---|
403 | Ignore-this: a8b5e7c2213231ba31d5f457b9e2e761 |
---|
404 | ] |
---|
405 | [M-x whitespace-cleanup |
---|
406 | zooko@zooko.com**20100726022845 |
---|
407 | Ignore-this: 195132b0655c57466d33137f511ef2f5 |
---|
408 | ] |
---|
409 | [remove the machinery for old-style branches and the old "prod" and "server" branches |
---|
410 | zooko@zooko.com**20100726022616 |
---|
411 | Ignore-this: 1de7d4509de3875ffc0e799cb7791554 |
---|
412 | ] |
---|
413 | [make UploadTarballs a separate step so it will get "branch" set at runtime instead of setup time |
---|
414 | zooko@zooko.com**20100725193243 |
---|
415 | Ignore-this: 5636055e51a183ed05c94c24ff203314 |
---|
416 | ] |
---|
417 | [finish upping warp |
---|
418 | zooko@zooko.com**20100720225851 |
---|
419 | Ignore-this: fa5d494981492260dc9c23fe33299415 |
---|
420 | ] |
---|
421 | [upgrade warp |
---|
422 | zooko@zooko.com**20100720224555 |
---|
423 | Ignore-this: 13c0e808b41bd0dcc12801c2833eb0f3 |
---|
424 | ] |
---|
425 | [no more use_hashed_format |
---|
426 | zooko@zooko.com**20100718214927 |
---|
427 | Ignore-this: 32faf5e5254c3a84859afe52a13c7ede |
---|
428 | ] |
---|
429 | [fix Zomp html and promote Zomp to supported |
---|
430 | zooko@zooko.com**20100718201325 |
---|
431 | Ignore-this: 66d11d59b75405f3d5f0456915325bac |
---|
432 | ] |
---|
433 | [merge off-line and flakey |
---|
434 | zooko@zooko.com**20100718062522 |
---|
435 | Ignore-this: 9c7698ce211238e043155e21b1ce379a |
---|
436 | ] |
---|
437 | [promote Eugen lenny-amd64 to Supported |
---|
438 | zooko@zooko.com**20100718062355 |
---|
439 | Ignore-this: 211a5f0de02d85d69c141dfaaf7aed58 |
---|
440 | ] |
---|
441 | [new domain names |
---|
442 | zooko@zooko.com**20100718055528 |
---|
443 | Ignore-this: 9457a68e28118b76eae7653ffdc79955 |
---|
444 | ] |
---|
445 | [don't pass branch name on cmdline to gmake |
---|
446 | zooko@zooko.com**20100718055516 |
---|
447 | Ignore-this: c00634191fb68ad42196f44ed87efb22 |
---|
448 | ] |
---|
449 | [demote freestorm winxp due to offline |
---|
450 | zooko@zooko.com**20100718055314 |
---|
451 | Ignore-this: c49bf3190a8a04de4aec0cfac181d970 |
---|
452 | ] |
---|
453 | [remove clean from "supported" |
---|
454 | zooko**20100718011126 |
---|
455 | Ignore-this: e58773faade5b13afdfde75c3836e60c |
---|
456 | ] |
---|
457 | [set env BB_BRANCH |
---|
458 | zooko**20100718011104 |
---|
459 | Ignore-this: d5ae9ba11d3a589a5689ba0a1bdcab6 |
---|
460 | ] |
---|
461 | [fix the name of francois's builder |
---|
462 | zooko**20100718010935 |
---|
463 | Ignore-this: b317edda3bd90b9bf59e1c1a7021dd24 |
---|
464 | ] |
---|
465 | [change name of François's builder |
---|
466 | zooko@zooko.com**20100718010758 |
---|
467 | Ignore-this: f31ba2c84b82bd49b63f2d3c239a4744 |
---|
468 | ] |
---|
469 | [fix bug in html |
---|
470 | zooko@zooko.com**20100710185635 |
---|
471 | Ignore-this: 906fe9bab030b7a18d0231b4ed6c69e6 |
---|
472 | ] |
---|
473 | [add Windows waterfall to html, fix bug with FreeStorm CentOS |
---|
474 | zooko@zooko.com**20100710185451 |
---|
475 | Ignore-this: 2e40eb9b4ac7e7c8c22a258f0f1257a9 |
---|
476 | ] |
---|
477 | [add Randy's FreeBSD for zfec |
---|
478 | zooko@zooko.com**20100624223049 |
---|
479 | Ignore-this: fe1cc9a52ba2e27fe34e7a357c3b0d2 |
---|
480 | ] |
---|
481 | [add Randy's FreeBSD for pycryptopp |
---|
482 | zooko@zooko.com**20100624223033 |
---|
483 | Ignore-this: b4edf5be4c5f6645981f053a69991588 |
---|
484 | ] |
---|
485 | [add Randy Bush FreeBSD for Tahoe-LAFS |
---|
486 | zooko@zooko.com**20100624222456 |
---|
487 | Ignore-this: cbad5df39abc797fc16fa5ddb62440ad |
---|
488 | ] |
---|
489 | [secret for Randy Bush freebsd.psg |
---|
490 | zooko@zooko.com**20100624222445 |
---|
491 | Ignore-this: 6c157f002e0a854d013e258f64b08eb6 |
---|
492 | ] |
---|
493 | [tweak zomp congi |
---|
494 | zooko@zooko.com**20100609045338 |
---|
495 | Ignore-this: fa24eb350330d2261555d49adcea46c2 |
---|
496 | ] |
---|
497 | [fix typo |
---|
498 | zooko**20100609041829 |
---|
499 | Ignore-this: 26623f1bda2a416fe7d1b412027cd23f |
---|
500 | ] |
---|
501 | [add zomp |
---|
502 | zooko@zooko.com**20100609041617 |
---|
503 | Ignore-this: 91a75776753a31fe0f7538137afe150a |
---|
504 | ] |
---|
505 | [don't test from prefixdir on ruben's fedora |
---|
506 | zooko@zooko.com**20100609025718 |
---|
507 | Ignore-this: 7c4ab8c168d65aab5bde0e78341363f7 |
---|
508 | ] |
---|
509 | [don't test from prefixdir on opensolaris |
---|
510 | zooko@zooko.com**20100609015223 |
---|
511 | Ignore-this: b2d8400c69e7ee0c467e293c05ebfe62 |
---|
512 | ] |
---|
513 | [don't try to test from prefixdir or from egg on CentOS py2.4 |
---|
514 | zooko@zooko.com**20100609012900 |
---|
515 | Ignore-this: 6e6b9d62e2ce83b29ea52b6772a5cb81 |
---|
516 | ] |
---|
517 | [whoops Shawn jaunty was still in "supported" schedule |
---|
518 | zooko@zooko.com**20100608155313 |
---|
519 | Ignore-this: 14332dcdfa3e2eacd5452dd5486bd17d |
---|
520 | ] |
---|
521 | [freestorm centos zfec |
---|
522 | zooko@zooko.com**20100608143551 |
---|
523 | Ignore-this: ffe5fe8d703964b3dd5867f93808c6e1 |
---|
524 | ] |
---|
525 | [freestorm centos |
---|
526 | zooko@zooko.com**20100608143541 |
---|
527 | Ignore-this: cfc2fc3725ad00e7567b025e13f7933f |
---|
528 | ] |
---|
529 | [demote MM's slave due to flakiness |
---|
530 | zooko@zooko.com**20100608142946 |
---|
531 | Ignore-this: 53e720b13ec0b59fc2b333ccb39c273 |
---|
532 | ] |
---|
533 | [FS CentOS |
---|
534 | zooko@zooko.com**20100608142646 |
---|
535 | Ignore-this: 247b718917006a4ef94d29d7fe47eb2e |
---|
536 | ] |
---|
537 | [darcs v2 on all machines !! |
---|
538 | zooko@zooko.com**20100608054245 |
---|
539 | Ignore-this: dd705582f14d1e3b905b2bbee9aaeb85 |
---|
540 | ] |
---|
541 | [the last bugfix |
---|
542 | zooko@zooko.com**20100608053643 |
---|
543 | Ignore-this: ec16bd24b4fd738f55f3b83da6d00de7 |
---|
544 | ] |
---|
545 | [use fixes for zfec |
---|
546 | zooko@zooko.com**20100608053348 |
---|
547 | Ignore-this: 9e123b67e831d52b181e0c3d253b7345 |
---|
548 | ] |
---|
549 | [fixes |
---|
550 | zooko@zooko.com**20100608053315 |
---|
551 | Ignore-this: 3250a22c284b3b83b947c4fcc82995af |
---|
552 | ] |
---|
553 | [try to parameterize srcbase sep from buildbase and from installbase |
---|
554 | zooko@zooko.com**20100608052800 |
---|
555 | Ignore-this: de92c7e48854c9211149c8fa2fe25029 |
---|
556 | ] |
---|
557 | [demote ashton.laval |
---|
558 | zooko@zooko.com**20100608050320 |
---|
559 | Ignore-this: 6ffd53bb5b9856f2e549d443ecc1dca1 |
---|
560 | ] |
---|
561 | [untested attempt to make egginstalldir and prefixinstalldir parameterizable and to parameterize them appropriately for zfec |
---|
562 | zooko@zooko.com**20100608050225 |
---|
563 | Ignore-this: f971303aea21b3b37cf9c5fb7a900270 |
---|
564 | ] |
---|
565 | [promote David OpenSolaris, Ruben Fedora, and FreeStorm, WinXP to Supported! |
---|
566 | zooko@zooko.com**20100608043554 |
---|
567 | Ignore-this: 29a81a8bb45e678088f93ed13ba7422e |
---|
568 | ] |
---|
569 | [fix tabs |
---|
570 | zooko@zooko.com**20100607214028 |
---|
571 | Ignore-this: 801dea6f229569979ae5698fa517e76e |
---|
572 | ] |
---|
573 | [add MM |
---|
574 | zooko@zooko.com**20100607214022 |
---|
575 | Ignore-this: 49ad8808c7ad9eb5a563cc8038cb7b44 |
---|
576 | ] |
---|
577 | [invoke stdeb new way |
---|
578 | zooko@zooko.com**20100607114220 |
---|
579 | Ignore-this: afa4798e9faaa7a9f63019f3a99a5361 |
---|
580 | ] |
---|
581 | [valgrind path |
---|
582 | zooko@zooko.com**20100607064200 |
---|
583 | Ignore-this: a7df0f0faf99aa576642f4d56253cf3c |
---|
584 | ] |
---|
585 | [run_trial has moved |
---|
586 | zooko@zooko.com**20100607062558 |
---|
587 | Ignore-this: ba62dc16fb206929fe5784011d44875a |
---|
588 | ] |
---|
589 | [don't upload tarballs of branches |
---|
590 | zooko@zooko.com**20100607052916 |
---|
591 | Ignore-this: f9f540cf141f81cb906987afa366e43 |
---|
592 | ] |
---|
593 | [accomodate new reorg of misc/ |
---|
594 | zooko@zooko.com**20100607052634 |
---|
595 | Ignore-this: 8cf8a846f073648934c381bb4bc1ae28 |
---|
596 | ] |
---|
597 | ["clean" builder is supported again |
---|
598 | zooko@zooko.com**20100606181704 |
---|
599 | Ignore-this: f4bacb658875e2687b72aaa6b6189a53 |
---|
600 | ] |
---|
601 | ['pported |
---|
602 | zooko@zooko.com**20100604052640 |
---|
603 | Ignore-this: b022fab6364110450259bb145c4048d3 |
---|
604 | ] |
---|
605 | [demote ootles to flakey, finish demoting eugen lenny |
---|
606 | zooko@zooko.com**20100604045544 |
---|
607 | Ignore-this: 851fe38425d18ee8e8d0b60e06832779 |
---|
608 | ] |
---|
609 | [demote OpenSolaris and Lenny-amd64 until they reconnectv |
---|
610 | zooko@zooko.com**20100604040225 |
---|
611 | Ignore-this: 24b9966da465834b82bdc71480773596 |
---|
612 | ] |
---|
613 | [don't run pyflakes on all builders |
---|
614 | zooko@zooko.com**20100603221111 |
---|
615 | Ignore-this: 783cdf2d8e057a3984fd506bb7208618 |
---|
616 | ] |
---|
617 | [fix bug |
---|
618 | zooko**20100603191947 |
---|
619 | Ignore-this: f4bfd6b48ef83db9df0363019bf3b922 |
---|
620 | ] |
---|
621 | [detect win32 correctly |
---|
622 | zooko@zooko.com**20100603191736 |
---|
623 | Ignore-this: f4b232084eeb8b757af6a2c45bafdf58 |
---|
624 | ] |
---|
625 | [allmydata.org -> tahoe-lafs.org |
---|
626 | zooko@zooko.com**20100603060856 |
---|
627 | Ignore-this: 257713e626162b9d1eece5e6fec91a03 |
---|
628 | ] |
---|
629 | [turn off test_from_prefixdir on neju's for zfec |
---|
630 | zooko@zooko.com**20100603055438 |
---|
631 | Ignore-this: e638633bff8808edc3c3e2ceb9b7a09c |
---|
632 | ] |
---|
633 | [turn off test_from_prefixdir on neju's |
---|
634 | zooko@zooko.com**20100603055426 |
---|
635 | Ignore-this: fc3a266411d1f51e7494f945a7f53204 |
---|
636 | ] |
---|
637 | [fix bugs in nooxie zfec |
---|
638 | zooko**20100603053540 |
---|
639 | Ignore-this: a8b5049de893cc47acacec8cf2a3115d |
---|
640 | ] |
---|
641 | [put nooxie back in rotation zfec |
---|
642 | zooko@zooko.com**20100603053011 |
---|
643 | Ignore-this: 4d9e3778564c337662ec410bc59744d3 |
---|
644 | ] |
---|
645 | [put nooxie back in rotation pycryptopp |
---|
646 | zooko@zooko.com**20100603052959 |
---|
647 | Ignore-this: 13a1fec6486689ed7f6aaf8fa84c673d |
---|
648 | ] |
---|
649 | [schedule MM on pycryptopp buildmaster |
---|
650 | zooko@zooko.com**20100601051914 |
---|
651 | Ignore-this: 2eedbae21980a3e3630cb0df7139f1f2 |
---|
652 | ] |
---|
653 | [remove zfec working dir from pycryptopp buildmaster config |
---|
654 | zooko@zooko.com**20100601045240 |
---|
655 | Ignore-this: 311e4c34d88e6dd267d1d7ba642c27bc |
---|
656 | ] |
---|
657 | [fix the last bug |
---|
658 | zooko@zooko.com**20100524090826 |
---|
659 | Ignore-this: 85e4ebab2970cb1b603b013d6d7d21b2 |
---|
660 | ] |
---|
661 | [fixety fix |
---|
662 | zooko**20100524085817 |
---|
663 | Ignore-this: 7f974e9c13dc4274339daf99f7657972 |
---|
664 | ] |
---|
665 | [bugfix |
---|
666 | zooko**20100524084511 |
---|
667 | Ignore-this: c6ccd6caa64a593352a9a042ad89c98c |
---|
668 | ] |
---|
669 | [fix bug? |
---|
670 | zooko@zooko.com**20100524083834 |
---|
671 | Ignore-this: 6fd5c4a39153a1cc650cce18ba81c8bd |
---|
672 | ] |
---|
673 | [fix bug |
---|
674 | zooko@zooko.com**20100524080949 |
---|
675 | Ignore-this: 3b5df174b95c6c799cdeab2350c9af76 |
---|
676 | ] |
---|
677 | [specialize testsuite name "allmydata.test" for from-egg-test |
---|
678 | zooko@zooko.com**20100524080305 |
---|
679 | Ignore-this: 9d948edf77e5098877b93083a5efdca7 |
---|
680 | ] |
---|
681 | [fix bugs |
---|
682 | zooko**20100524072522 |
---|
683 | Ignore-this: 66a7e2b24272a692419febf2807b7979 |
---|
684 | ] |
---|
685 | [pass specific testsuite name for tahoe-lafs |
---|
686 | zooko@zooko.com**20100524071102 |
---|
687 | Ignore-this: 354a4d5527d04d3514db60e18ee9fa30 |
---|
688 | ] |
---|
689 | [zfec: osol doesn't do from-prefix since it doesn't have pyutil installed |
---|
690 | zooko@zooko.com**20100524060604 |
---|
691 | Ignore-this: 499d19ae4330fb55f6560e08d6665500 |
---|
692 | ] |
---|
693 | [fix bug in new from-prefix-install test |
---|
694 | zooko@zooko.com**20100524012845 |
---|
695 | Ignore-this: d73682da0ccda1883b44c2991a8441f3 |
---|
696 | ] |
---|
697 | [revamp install to prefixdir and test from prefixdir |
---|
698 | zooko@zooko.com**20100524005948 |
---|
699 | Ignore-this: 213e1d0365160e58ffd565108af8a7d4 |
---|
700 | ] |
---|
701 | [fix bug in executing run_trial.py |
---|
702 | zooko@zooko.com**20100523233952 |
---|
703 | Ignore-this: 5f74048be3cb86765f15f0afcd3c44f0 |
---|
704 | ] |
---|
705 | [use misc/find_trial.py instead of 'trial' |
---|
706 | zooko@zooko.com**20100523221507 |
---|
707 | Ignore-this: 508ddc0ab11f3e7f0b1f05232ae32de4 |
---|
708 | ] |
---|
709 | [add MM pycryptopp |
---|
710 | zooko@zooko.com**20100523203146 |
---|
711 | Ignore-this: 8da3f4fe22882c4254392d5b6c0e372e |
---|
712 | ] |
---|
713 | [run the tests for your package, not the tests for the "allmydata" package |
---|
714 | zooko@zooko.com**20100522185318 |
---|
715 | Ignore-this: c8d394870be4669307497f38a7ef8dd1 |
---|
716 | ] |
---|
717 | [add higher timeouts for compiling things that might involve compiling pycryptopp that can take longer than 1200 seconds with no output |
---|
718 | zooko@zooko.com**20100521224653 |
---|
719 | Ignore-this: af02decfe6d480e2903c9ef567d925a2 |
---|
720 | ] |
---|
721 | [if two hours elapse with no new data on stdout/stderr then kill the builder process |
---|
722 | zooko@zooko.com**20100521114626 |
---|
723 | Ignore-this: 3072f93b7bd65235b42044560eb4f865 |
---|
724 | ] |
---|
725 | [new URL base |
---|
726 | zooko@zooko.com**20100520051030 |
---|
727 | Ignore-this: 87347b7d8785e2de3f5d3f17b9e5c082 |
---|
728 | ] |
---|
729 | [fix typo |
---|
730 | zooko@zooko.com**20100520040954 |
---|
731 | Ignore-this: aaa04b513f612ee4cdb9176e81467375 |
---|
732 | ] |
---|
733 | [use the misc/run_trial.py script -- Brian's idea, FreeStorm's patch |
---|
734 | zooko@zooko.com**20100520034039 |
---|
735 | Ignore-this: dbc9e1740d1d62ac61cd6d68d3315e7f |
---|
736 | ] |
---|
737 | [fix typo |
---|
738 | zooko**20100515191258 |
---|
739 | Ignore-this: f7a5ebf862c4cfaeeb2eb0d148ef8af9 |
---|
740 | ] |
---|
741 | [tweakety |
---|
742 | zooko@zooko.com**20100510062830 |
---|
743 | Ignore-this: fd6a19c91e3adbadbb2a697489666b50 |
---|
744 | ] |
---|
745 | [hopefully fix bug in run-test-from-egg-inst-dir |
---|
746 | zooko@zooko.com**20100510060944 |
---|
747 | Ignore-this: 8e5d88753b9cd8b0e509010586df18eb |
---|
748 | ] |
---|
749 | [more better tests of installation and running unit tests from installations |
---|
750 | zooko@zooko.com**20100510060024 |
---|
751 | Ignore-this: d064bf7cd3595cf2c318e00d2703a125 |
---|
752 | ] |
---|
753 | [fix test-from-egg add install-to-prefixdir and test-from-prefixdir, turn it on on several buildslaves, add coverage on ootles |
---|
754 | zooko@zooko.com**20100510055700 |
---|
755 | Ignore-this: 6a27ab20e55c38f7b1e636a4f4337572 |
---|
756 | ] |
---|
757 | [fix (?) build scheduler |
---|
758 | zooko@zooko.com**20100510044538 |
---|
759 | Ignore-this: 8eb21f093d0884f014b0ab25907fec6d |
---|
760 | ] |
---|
761 | [add coverage.py and trialcoverage to the set of tools whose versions get reported |
---|
762 | zooko@zooko.com**20100510043830 |
---|
763 | Ignore-this: 403644df5feff988154fcad2599edc89 |
---|
764 | ] |
---|
765 | [greatly raise timeouts to see if MM's NetBSD can succeed given enough time |
---|
766 | zooko@zooko.com**20100507133829 |
---|
767 | Ignore-this: b8e2ef90a97cd192993d8161752f3297 |
---|
768 | |
---|
769 | Got exception invoking 'cl': [Errno 2] No such file or directory |
---|
770 | platform: NetBSD-4.0_STABLE-i386-32bit-ELF |
---|
771 | python: 2.5.2 (r252:60911, Mar 20 2009, 14:00:07) [GCC 4.1.2 20060628 prerelease (NetBSD nb2 20060711)], maxunicode: 65535 |
---|
772 | |
---|
773 | setuptools: [setuptools 0.6c9 (/usr/pkg/lib/python2.5/site-packages/setuptools-0.6c9-py2.5.egg)] |
---|
774 | buildbot: Buildbot version: 0.7.10p1 Twisted version: 8.1.0 |
---|
775 | g++: g++ (GCC) 4.1.2 20060628 prerelease (NetBSD nb2 20060711) Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
---|
776 | gcc: gcc (GCC) 4.1.2 20060628 prerelease (NetBSD nb2 20060711) Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
---|
777 | as: GNU assembler 2.16.1 Copyright 2005 Free Software Foundation, Inc. This program is free software; you may redistribute it under the terms of the GNU General Public License. This program has absolutely no warranty. This assembler was configured for a target of `i386--netbsdelf'. |
---|
778 | |
---|
779 | |
---|
780 | |
---|
781 | ] |
---|
782 | [add dcoder to zfec and pycryptopp |
---|
783 | zooko@zooko.com**20100505040704 |
---|
784 | Ignore-this: 8d6c84ff6a01327c282d3843e523cb60 |
---|
785 | ] |
---|
786 | [add decoder, fix omission of some items from packaging waterfall |
---|
787 | zooko@zooko.com**20100505032808 |
---|
788 | Ignore-this: 17494a20239d50ac52f3f7941f9a173d |
---|
789 | ] |
---|
790 | [dcoder secrets |
---|
791 | zooko@zooko.com**20100505032750 |
---|
792 | Ignore-this: 99738035995905d6ce5d905be45eb051 |
---|
793 | ] |
---|
794 | [bump up timeout |
---|
795 | zooko@zooko.com**20100505032310 |
---|
796 | Ignore-this: b2ea8c95d6d4f82b6f37241dfba49347 |
---|
797 | ] |
---|
798 | [more information about setuptools variants |
---|
799 | zooko@zooko.com**20100504095335 |
---|
800 | Ignore-this: 9d98fe67e67f9d758fae2c940ec9b99c |
---|
801 | ] |
---|
802 | [fix recent patch for gmake on bsd |
---|
803 | zooko**20100504094057 |
---|
804 | Ignore-this: 89e7fcd98940696c8ca30936129cf9ae |
---|
805 | ] |
---|
806 | [fix bugs caught by bb 0.7.12 |
---|
807 | zooko**20100504094044 |
---|
808 | Ignore-this: 4a01fffadb8e617d0b79d686a6e24565 |
---|
809 | ] |
---|
810 | [passs MAKE so it can be gmake on bsd |
---|
811 | zooko@zooko.com**20100504090506 |
---|
812 | Ignore-this: 53420678cc77e4a94bc7f8dcd39fb7bb |
---|
813 | ] |
---|
814 | [figleaf -> coverage |
---|
815 | zooko@zooko.com**20100504084723 |
---|
816 | Ignore-this: 86819b8eef3ddac0215c249a082c2f35 |
---|
817 | ] |
---|
818 | [remove francois-qemu-armv5tejl secrets |
---|
819 | zooko@zooko.com**20100504082313 |
---|
820 | Ignore-this: a122030407db0fd55e168355ea8b9705 |
---|
821 | ] |
---|
822 | [remove francois-qemu-armv5tejl |
---|
823 | zooko@zooko.com**20100504082256 |
---|
824 | Ignore-this: 2b24416b8a1beff29c7bcac5759da1be |
---|
825 | ] |
---|
826 | [invoke 'make' as 'gmake' on OpenBSD |
---|
827 | zooko@zooko.com**20100504052644 |
---|
828 | Ignore-this: 58ab2256d0c5fba7272b230a45833cba |
---|
829 | ] |
---|
830 | [memtest-64 is not a support platform. <sigh |
---|
831 | zooko@zooko.com**20100504045418 |
---|
832 | Ignore-this: 5495bda687d8c3d3eed69bbd98f96eb8 |
---|
833 | ] |
---|
834 | [remove marcus's secrets |
---|
835 | zooko@zooko.com**20100504045004 |
---|
836 | Ignore-this: 8f17a6872bbcffcdac52ce01b0cfcd2f |
---|
837 | ] |
---|
838 | [remove marcus's builder |
---|
839 | zooko@zooko.com**20100504044926 |
---|
840 | Ignore-this: 2606acb92798316365cf0a87d6b891f6 |
---|
841 | ] |
---|
842 | [comment-in neju's, remove marcus's |
---|
843 | zooko@zooko.com**20100502210137 |
---|
844 | Ignore-this: 2b9bf461b5aea60a592303efac544c98 |
---|
845 | ] |
---|
846 | [split unsupported into categories |
---|
847 | zooko@zooko.com**20100502124200 |
---|
848 | Ignore-this: 98e65357e1cff13b63cdf5a0580bbe51 |
---|
849 | ] |
---|
850 | [add nixey to zfec |
---|
851 | zooko@zooko.com**20100502122220 |
---|
852 | Ignore-this: b4c227e6136483f14442b768cb09e099 |
---|
853 | ] |
---|
854 | [fix typo hiding Ludo's from web page |
---|
855 | zooko@zooko.com**20100502060344 |
---|
856 | Ignore-this: 11855d6dc1d56be47f122c689fd21946 |
---|
857 | ] |
---|
858 | [remove soultcer's machine from pycryptopp and zfec because it has no compiler |
---|
859 | zooko@zooko.com**20100502055125 |
---|
860 | Ignore-this: 4d3bcbb111448679cac421dc6a2f246c |
---|
861 | ] |
---|
862 | [fix bugs in recentpatch |
---|
863 | zooko**20100502052512 |
---|
864 | Ignore-this: 659f7b2733e8e8566fa75c6e28be84f0 |
---|
865 | ] |
---|
866 | [allmydata.org -> tahoe-lafs.org |
---|
867 | zooko@zooko.com**20100502045604 |
---|
868 | Ignore-this: df560b68b5aec913daeb31713ce62e75 |
---|
869 | ] |
---|
870 | [remove a lot of dead builders |
---|
871 | zooko@zooko.com**20100502045008 |
---|
872 | Ignore-this: f6c18e692c677661b27a802e1287296d |
---|
873 | ] |
---|
874 | [comment-out builders currently known to be busted |
---|
875 | zooko@zooko.com**20100502044950 |
---|
876 | Ignore-this: c1f7f7518a3acf59af0da2b39acb7aa0 |
---|
877 | ] |
---|
878 | [cross link buildbot web pages |
---|
879 | zooko@zooko.com**20100502043901 |
---|
880 | Ignore-this: a79dae8f27012e73c5815fe93bf7a481 |
---|
881 | ] |
---|
882 | [allmydata.org -> tahoe-lafs.org in pycryptopp |
---|
883 | zooko@zooko.com**20100502043011 |
---|
884 | Ignore-this: bbc28537f37f812e1270455d6fe1e076 |
---|
885 | ] |
---|
886 | [add Soultcer win7amd64 to pycryptopp |
---|
887 | zooko@zooko.com**20100502042959 |
---|
888 | Ignore-this: 4b5104158fbd7ce17720017a2a7c63e0 |
---|
889 | ] |
---|
890 | [remove more dead builders from the right list |
---|
891 | zooko@zooko.com**20100502042152 |
---|
892 | Ignore-this: 130085dcda148a3694bb27d39c4c369 |
---|
893 | ] |
---|
894 | [remove a lot of dead builders |
---|
895 | zooko@zooko.com**20100502042005 |
---|
896 | Ignore-this: c7f8274d72a3750f1f248c327a49d693 |
---|
897 | ] |
---|
898 | [Tahoe->Tahoe-LAFS |
---|
899 | zooko@zooko.com**20100502034912 |
---|
900 | Ignore-this: 590240592ce6924668d398c745eb1735 |
---|
901 | ] |
---|
902 | [fix whitespace |
---|
903 | zooko@zooko.com**20100502034900 |
---|
904 | Ignore-this: c5fe464a4badb097f354fe92f412310a |
---|
905 | ] |
---|
906 | [pycryptopp: add FreeStorm |
---|
907 | zooko@zooko.com**20100502033720 |
---|
908 | Ignore-this: 45467bb73765ba616b2d219fdc1c9068 |
---|
909 | ] |
---|
910 | [add soultcer's secrets |
---|
911 | zooko@zooko.com**20100502031340 |
---|
912 | Ignore-this: aa3bf8f3aba67d602b75c516500f62ba |
---|
913 | ] |
---|
914 | [add Soultcer Win7-64 py2.6 |
---|
915 | zooko@zooko.com**20100502031239 |
---|
916 | Ignore-this: df657d92c5a6d33af0fa4f26b7ca7533 |
---|
917 | ] |
---|
918 | [add ludo to index.html; remove some dead debs from index.html, edit text re: Policy and Nix |
---|
919 | zooko@zooko.com**20100502021005 |
---|
920 | Ignore-this: 66bab82692b1621968b8b9837c14300 |
---|
921 | ] |
---|
922 | [fix typo in previous secrets pattch |
---|
923 | zooko**20100502020304 |
---|
924 | Ignore-this: aaa35c8d184ac82ad5836a8d279acd97 |
---|
925 | ] |
---|
926 | [add freestorm-winxp, remove a lot of builders linked from index.html but long gone |
---|
927 | zooko@zooko.com**20100502015913 |
---|
928 | Ignore-this: 2bae43f00e977ea6b69504e7ceb13fa7 |
---|
929 | ] |
---|
930 | [add freestorm password secret |
---|
931 | zooko@zooko.com**20100502013456 |
---|
932 | Ignore-this: fc00eb42dff7b0cd438855e704c804d2 |
---|
933 | ] |
---|
934 | [fix bugs in previous patch |
---|
935 | zooko**20100502013440 |
---|
936 | Ignore-this: 9fcd1d93fa3fe3f4480d2eeb18e99532 |
---|
937 | ] |
---|
938 | [the big buildbot roundup of May 2010: remove and demote some builders, move some jobs to Kyle's OpenBSD, rename allmydata.org -> tahoe-lafs.org, add link to NixOS Hydra, and maybe other changes |
---|
939 | zooko@zooko.com**20100502004032 |
---|
940 | Ignore-this: 10b82ac85c164103821a20d8310732f2 |
---|
941 | ] |
---|
942 | [fix the patch to remove dead builders |
---|
943 | zooko**20100501183708 |
---|
944 | Ignore-this: e2896aab694ab4bd9cb2d2adac6c15af |
---|
945 | ] |
---|
946 | [remove a bunch of dead or dormant builders |
---|
947 | zooko@zooko.com**20100501181405 |
---|
948 | Ignore-this: 6e700d194d6abecce00b8277cf52bcc8 |
---|
949 | ] |
---|
950 | [add FreeStorm windows-mingw32-py26 |
---|
951 | zooko@zooko.com**20100501171234 |
---|
952 | Ignore-this: 65d0e20d1952d7cbc6de0948a8b0847e |
---|
953 | ] |
---|
954 | [marcus and neju upload binary eggs for zfec |
---|
955 | zooko@zooko.com**20100207184156 |
---|
956 | Ignore-this: 97603f5e06b12639cb87734919bb260 |
---|
957 | ] |
---|
958 | [marcus and neju upload binary eggs for pycryptopp |
---|
959 | zooko@zooko.com**20100207184145 |
---|
960 | Ignore-this: 2ffe81ec0fdf166efc3f9aec844996cb |
---|
961 | ] |
---|
962 | [fix |
---|
963 | zooko**20100206232107 |
---|
964 | Ignore-this: 4cdadaa2030a4135e14da54fe08d4300 |
---|
965 | ] |
---|
966 | [fix names of neju and marcus builders |
---|
967 | zooko@zooko.com**20100206231855 |
---|
968 | Ignore-this: 56fead55abe4f27fecd4cc2e84a4a359 |
---|
969 | ] |
---|
970 | [XXX |
---|
971 | zooko@zooko.com**20100206230256 |
---|
972 | Ignore-this: c72e7965235e6effdf79e78409298e1b |
---|
973 | ] |
---|
974 | [oops |
---|
975 | zooko**20100206230257 |
---|
976 | Ignore-this: 9bf9d3ada9d888217741ac095e109130 |
---|
977 | ] |
---|
978 | [add neju and marcus osx |
---|
979 | zooko@zooko.com**20100206230122 |
---|
980 | Ignore-this: 249e3e037a578332ce23c180e4e1fb3d |
---|
981 | ] |
---|
982 | [add fiona rename neju to py2.5 |
---|
983 | zooko@zooko.com**20100206225139 |
---|
984 | Ignore-this: a02e27b957bd97c762021c4f4591f83a |
---|
985 | ] |
---|
986 | [add fiona rename neju to py2.5 |
---|
987 | zooko@zooko.com**20100206225123 |
---|
988 | Ignore-this: a3d2b1ab2fbd7c1d04fa371b97d14159 |
---|
989 | ] |
---|
990 | [fix comment |
---|
991 | zooko@zooko.com**20100206224350 |
---|
992 | Ignore-this: 74972f594c9bf041ad4c0b929f09175d |
---|
993 | ] |
---|
994 | [add ashton.laval for pycryptopp |
---|
995 | zooko@zooko.com**20100206224332 |
---|
996 | Ignore-this: 5d9b5d5c715e9d339364f091fa8b461b |
---|
997 | ] |
---|
998 | [add ashton.laval |
---|
999 | zooko@zooko.com**20100206222744 |
---|
1000 | Ignore-this: 336f90d095b2309ed31f8c87f5567d50 |
---|
1001 | ] |
---|
1002 | [fix links to François on html |
---|
1003 | zooko@zooko.com**20100113170640 |
---|
1004 | Ignore-this: beb764cde4312abeb1637558fb5125b1 |
---|
1005 | ] |
---|
1006 | [buildbot confused by unicode buildslavenames |
---|
1007 | zooko**20100113170621 |
---|
1008 | Ignore-this: 134bad01f076e93ce84767f8c1b75b08 |
---|
1009 | ] |
---|
1010 | [add Ludo Nixos |
---|
1011 | zooko@zooko.com**20100113165432 |
---|
1012 | Ignore-this: b55ddf8677bf449d6ecf5fe61966029d |
---|
1013 | ] |
---|
1014 | [mark as unicode strings which contain François's name, also replace 'ç' with 'X' for now |
---|
1015 | zooko@zooko.com**20100113165402 |
---|
1016 | Ignore-this: 297db2ed9a9846ffbeee71adbb2a57a7 |
---|
1017 | ] |
---|
1018 | [mark strings containing François's name as unicode |
---|
1019 | zooko@zooko.com**20100113164050 |
---|
1020 | Ignore-this: 711872b1fefe2a587ef4cbd1d85c27e6 |
---|
1021 | ] |
---|
1022 | [add ludo's nixos builer! |
---|
1023 | zooko@zooko.com**20100113164042 |
---|
1024 | Ignore-this: 3c7527688c99933b2c1531c557c5d1ae |
---|
1025 | ] |
---|
1026 | [pycryptopp: Mac builder should upload egg |
---|
1027 | zooko@zooko.com**20100113164025 |
---|
1028 | Ignore-this: 31d46f0b7c1538ce380e4beff6782e80 |
---|
1029 | ] |
---|
1030 | [pycryptopp: remove redundant, probably wrongly-used param named "upload_eggs" in favor of the one named "upload_egg" |
---|
1031 | zooko@zooko.com**20100113163944 |
---|
1032 | Ignore-this: a932fb8e96dc00bd2a6ac3594d2d0cf2 |
---|
1033 | ] |
---|
1034 | [raise timeout on stdeb (the little ARM box of François timed out) |
---|
1035 | zooko@zooko.com**20100110235646 |
---|
1036 | Ignore-this: 85b9f59226e7c186785beee5b0aa58e7 |
---|
1037 | ] |
---|
1038 | [pycryptopp: goodbye gutsy |
---|
1039 | zooko@zooko.com**20100110235356 |
---|
1040 | Ignore-this: a2c6bdcf6ee643e83b2522aaf61cc022 |
---|
1041 | ] |
---|
1042 | [remove deb-gutsy, remove deb-edgy and deb-feisty, merge conflicts, put speeds on the right Unsupported lis |
---|
1043 | zooko@zooko.com**20100110181816 |
---|
1044 | Ignore-this: c9fcf4ff9a94789401df4b4bdbf766bc |
---|
1045 | ] |
---|
1046 | [merge conflict and fix mistakes in demoting of edgy, feisty, and speeds |
---|
1047 | zooko@zooko.com**20100110181447 |
---|
1048 | Ignore-this: 691db303f97c6d0d21c15b4ebd7d4d41 |
---|
1049 | ] |
---|
1050 | [demote edgy and feisty |
---|
1051 | zooko@zooko.com**20100110180950 |
---|
1052 | Ignore-this: bd430dcaac2f91fd9b4de413f15ab1cb |
---|
1053 | They have served us well, but they are long since unsupported by Ubuntu, which means nobody should rely on them because they could have publicly-known remote vulnerabilities and Ubuntu will not patch them. There's no use in running a secure storage app on top of an insecure operating system. |
---|
1054 | ] |
---|
1055 | [demote speed builders from Supported |
---|
1056 | zooko@zooko.com**20100110053754 |
---|
1057 | Ignore-this: a0b869b144756000d8cab4b6a6862748 |
---|
1058 | ] |
---|
1059 | [failing to push figleaf is also okay |
---|
1060 | zooko@zooko.com**20100109195053 |
---|
1061 | Ignore-this: 929d8caf4d9a8f044dcb4fbdea8443d9 |
---|
1062 | ] |
---|
1063 | [dont flunk on figl fail |
---|
1064 | zooko@zooko.com**20100109175427 |
---|
1065 | Ignore-this: f68e0bb6faf83c78632d5be2d89c36ac |
---|
1066 | ] |
---|
1067 | [mac-cleanup -- another step that can fail :-( |
---|
1068 | zooko@zooko.com**20100109054423 |
---|
1069 | Ignore-this: 875b8758b4e1b00495df297eeb854603 |
---|
1070 | ] |
---|
1071 | [fix wrong type of name |
---|
1072 | zooko**20100109052910 |
---|
1073 | Ignore-this: 74a5894122037dc7311e2f9524ee428e |
---|
1074 | ] |
---|
1075 | [move the tarballs builder from gutsy slave (gone) to yukyuk |
---|
1076 | zooko@zooko.com**20100109052805 |
---|
1077 | Ignore-this: 22ee32aa150dee04ad5b340c06ac2853 |
---|
1078 | ] |
---|
1079 | [let the mac_exe step fail without marking the builder as red. :-( |
---|
1080 | zooko@zooko.com**20100109052146 |
---|
1081 | Ignore-this: d2835a67d2c4e394905e3d12e2e85f1f |
---|
1082 | ] |
---|
1083 | [promote "Kyle OpenBSD-4.6 amd64" to Supported |
---|
1084 | zooko@zooko.com**20100109051634 |
---|
1085 | Ignore-this: 9559f130ea05b1c0a1a656fb0d4a94be |
---|
1086 | ] |
---|
1087 | [fix typo which hid ootles from the Supported web page view |
---|
1088 | zooko@zooko.com**20100109051559 |
---|
1089 | Ignore-this: 46d9dc8e85a1cd8af956ad635a36205c |
---|
1090 | ] |
---|
1091 | [promote "David A. OpenSolaris i386" to Supported |
---|
1092 | zooko@zooko.com**20100109051540 |
---|
1093 | Ignore-this: 4494f61258ec3458000102b7c1915eae |
---|
1094 | ] |
---|
1095 | [rename "solaris" builder to "Zooko Nexenta-amd64" |
---|
1096 | zooko@zooko.com**20100109051410 |
---|
1097 | Ignore-this: a824fce7cd931f7a3d467e08a9a7d6b4 |
---|
1098 | ] |
---|
1099 | [demote nooxie to unsupported, just cause it is offline |
---|
1100 | zooko@zooko.com**20100109051245 |
---|
1101 | Ignore-this: 41cee9697ea1e41f229c24d6d08c49ec |
---|
1102 | ] |
---|
1103 | [add cryptest.exe to show-tools parser |
---|
1104 | zooko@zooko.com**20091223232015 |
---|
1105 | Ignore-this: a4bd3b69fe55cae3733923226f3af00e |
---|
1106 | ] |
---|
1107 | [fix two typos in addition of François's ARM-in-qemu |
---|
1108 | zooko**20091217191217 |
---|
1109 | Ignore-this: 7083782ba6a3649d1a684bf4b0348410 |
---|
1110 | ] |
---|
1111 | [fix typo in addition of François's new ARM-in-qemu to pycryptopp |
---|
1112 | zooko**20091217191102 |
---|
1113 | Ignore-this: 47621ab426187b973003f162caf71d6c |
---|
1114 | ] |
---|
1115 | [add François's new ARM-in-qemu to zfec |
---|
1116 | zooko@zooko.com**20091217190955 |
---|
1117 | Ignore-this: 65c3a05c4773c7e48e03a998824c9c4e |
---|
1118 | ] |
---|
1119 | [add François's new ARM-in-qemu to pycryptopp |
---|
1120 | zooko@zooko.com**20091217190939 |
---|
1121 | Ignore-this: c8c6a2418e2b2cf025548e99da5ed2a5 |
---|
1122 | ] |
---|
1123 | [fix edit-o |
---|
1124 | zooko@zooko.com**20091217190417 |
---|
1125 | Ignore-this: 446874ec6fcf5d939f59d6f014dc4e1c |
---|
1126 | ] |
---|
1127 | [secret password for François's new ARM-in-qemu |
---|
1128 | zooko**20091217190257 |
---|
1129 | Ignore-this: 457df3826c29c7a4e8af53d52b3b7991 |
---|
1130 | ] |
---|
1131 | [fix bug in adding François's new ARM-in-qemu |
---|
1132 | zooko**20091217185858 |
---|
1133 | Ignore-this: e19a67bf3853e6bbfaabb19fea0f337c |
---|
1134 | ] |
---|
1135 | [merge Kyle and François changes and remove &branch= |
---|
1136 | zooko@zooko.com**20091217185610 |
---|
1137 | Ignore-this: f6747363526629975500a32ea2b5b2f8 |
---|
1138 | ] |
---|
1139 | [add François's new ARM-in-qemu to Unsupported and demote his real-ARM to Unsupported |
---|
1140 | zooko@zooko.com**20091217184452 |
---|
1141 | Ignore-this: 3583db5511d374a814bc6df06414cbd8 |
---|
1142 | ] |
---|
1143 | [add Kyle OpenBSD amd64 unsupported |
---|
1144 | zooko@zooko.com**20091207163642 |
---|
1145 | Ignore-this: eddaa779f2caf04a3d2a2c39e2f09ce3 |
---|
1146 | ] |
---|
1147 | [add the secret password for Kyle's OpenBSD-amd64 |
---|
1148 | zooko@zooko.com**20091207163609 |
---|
1149 | Ignore-this: 9636bbd9053e5cf128edac0b11b15906 |
---|
1150 | ] |
---|
1151 | [add Kyle to pycryptopp |
---|
1152 | zooko@zooko.com**20091207162834 |
---|
1153 | Ignore-this: 432a3fb0550caa90bea5e28bfa6b6bba |
---|
1154 | ] |
---|
1155 | [add Kyle to zfec |
---|
1156 | zooko@zooko.com**20091207162537 |
---|
1157 | Ignore-this: a64421e972652d86cae8ee3c4af5e37a |
---|
1158 | ] |
---|
1159 | [fix hyperlink on index.html to yukyuk, showing that yukyuk is Supported |
---|
1160 | zooko@zooko.com**20091130200324 |
---|
1161 | Ignore-this: ced72685c107d7b3ab59de8eb3239fdf |
---|
1162 | ] |
---|
1163 | [tahoe: remove gutsy from 'supported builders' HTML |
---|
1164 | "Brian Warner <warner@lothar.com>"**20091128182911] |
---|
1165 | [pycryptopp: remove gutsy, zooko decided to drop support for it |
---|
1166 | "Brian Warner <warner@lothar.com>"**20091128182601] |
---|
1167 | [tahoe: de-support gutsy, we no longer have pycryptopp debs for it |
---|
1168 | "Brian Warner <warner@lothar.com>"**20091128182429] |
---|
1169 | [fix shallow bug from previous patch |
---|
1170 | zooko**20091121053902 |
---|
1171 | Ignore-this: eeb0e853d8d5faff82894e16abd75846 |
---|
1172 | ] |
---|
1173 | [attempt to switch the Tahoe-LAFS config from repo-URL to base-URL+branch |
---|
1174 | zooko@zooko.com**20091121053746 |
---|
1175 | Ignore-this: 7098dbc47f161dc69bf1612d54efef84 |
---|
1176 | ] |
---|
1177 | [fix web page to show eugen's deb builder as supported |
---|
1178 | zooko@zooko.com**20091029195646 |
---|
1179 | Ignore-this: 644254ed82030ce66a96c7d56a0b8dd1 |
---|
1180 | ] |
---|
1181 | [promote François lenny-armv5tel to Supported and normalize caps in its name |
---|
1182 | zooko@zooko.com**20091029195309 |
---|
1183 | Ignore-this: 20cb84bb3ece1c022fc659a0fb7ddd4a |
---|
1184 | ] |
---|
1185 | [fix typo |
---|
1186 | zooko**20091028021706 |
---|
1187 | Ignore-this: 615c5d0c42171c76b97e1224014c05aa |
---|
1188 | ] |
---|
1189 | [promote MM's NetBSD to Supported |
---|
1190 | zooko@zooko.com**20091028001209 |
---|
1191 | Ignore-this: db98a02cf3832a9324f213d51ee4b159 |
---|
1192 | ] |
---|
1193 | [promote "Soultcer lenny-amd64" to Supported |
---|
1194 | zooko@zooko.com**20091028000035 |
---|
1195 | Ignore-this: cc87c8926f4e34c2d5cac766d7688146 |
---|
1196 | ] |
---|
1197 | [soultcer has valgrind too |
---|
1198 | zooko@zooko.com**20091027202706 |
---|
1199 | Ignore-this: ab35ddfb0dca629b0134e53a06210d22 |
---|
1200 | ] |
---|
1201 | [fix regex for as |
---|
1202 | zooko**20091027155441 |
---|
1203 | Ignore-this: 87b8c8e20399c43b9e5ea68d3165d756 |
---|
1204 | ] |
---|
1205 | [display as version if present |
---|
1206 | zooko@zooko.com**20091027155135 |
---|
1207 | Ignore-this: a6ed1d81ee19d19a3a61a92118e75c3c |
---|
1208 | ] |
---|
1209 | [arthur installed valgrind |
---|
1210 | zooko@zooko.com**20091027151403 |
---|
1211 | Ignore-this: 622eb5a950030aeede6cd642687c0606 |
---|
1212 | ] |
---|
1213 | [ruben installed valgrind |
---|
1214 | zooko@zooko.com**20091026134831 |
---|
1215 | Ignore-this: f4959323c487972a19ebcb7bea37a371 |
---|
1216 | ] |
---|
1217 | [fix bug in valgrind log file name, and turn off valgrind on 3 linuxes which don't (yet) have it installed |
---|
1218 | zooko@zooko.com**20091026024742 |
---|
1219 | Ignore-this: 1bc5af01b81b6d60c6e9385d15f75c55 |
---|
1220 | ] |
---|
1221 | [fix new g++ version checker |
---|
1222 | zooko**20091026015358 |
---|
1223 | Ignore-this: 6e65ac65453a948ea27a58b3cdeacd81 |
---|
1224 | ] |
---|
1225 | [add a valgrind step and turn it on for all linuxes |
---|
1226 | zooko@zooko.com**20091026014727 |
---|
1227 | Ignore-this: 7b9b4e16eabbb93d8fd26dae827f9bf1 |
---|
1228 | ] |
---|
1229 | [display g++ version if present |
---|
1230 | zooko@zooko.com**20091025191324 |
---|
1231 | Ignore-this: 4f801d10107c5557d191122d0b2fadad |
---|
1232 | ] |
---|
1233 | [yukyuk syslib |
---|
1234 | zooko@zooko.com**20091023215011 |
---|
1235 | Ignore-this: 34fc5832d6723dbe8a97c791c68ea259 |
---|
1236 | ] |
---|
1237 | [no more deb-hardy-amd64 |
---|
1238 | zooko@zooko.com**20091023025805 |
---|
1239 | Ignore-this: b9b3200700c591c84428b09a6074fa05 |
---|
1240 | ] |
---|
1241 | [deb0hardy064 dont u0pload |
---|
1242 | zooko@zooko.com**20091023025246 |
---|
1243 | Ignore-this: af156b5998cef91bfc90d0bb0c51a881 |
---|
1244 | ] |
---|
1245 | [deb-hardy is unsupported (gone for now) |
---|
1246 | zooko@zooko.com**20091023013054 |
---|
1247 | Ignore-this: f037672407c26640859ad095ea195c12 |
---|
1248 | ] |
---|
1249 | [deb-etch demote |
---|
1250 | zooko@zooko.com**20091023004604 |
---|
1251 | Ignore-this: 99c9d5aba3a32a17deeb286523df11f1 |
---|
1252 | ] |
---|
1253 | [virtualzooko gone for now |
---|
1254 | zooko@zooko.com**20091022221752 |
---|
1255 | Ignore-this: 33328aa495e9aaac5af9ffc88807c7a0 |
---|
1256 | ] |
---|
1257 | [virtualzooko gone for now |
---|
1258 | zooko@zooko.com**20091022221745 |
---|
1259 | Ignore-this: 3f4dd95898eaba6f7e02198973f6d1a9 |
---|
1260 | ] |
---|
1261 | [virtualzooko gone for now |
---|
1262 | zooko@zooko.com**20091022221737 |
---|
1263 | Ignore-this: a35eeb34a8587727e2e04b45c1441d93 |
---|
1264 | ] |
---|
1265 | [flakes b4 test |
---|
1266 | zooko@zooko.com**20091022220920 |
---|
1267 | Ignore-this: 67a8cb6e59919bbb5f01d26a6a4c7679 |
---|
1268 | ] |
---|
1269 | [fix passing haltOnFail etc. to wrong thing |
---|
1270 | zooko@zooko.com**20091022220815 |
---|
1271 | Ignore-this: 504f7c06fbb6f70dd2712eb5feb70088 |
---|
1272 | ] |
---|
1273 | [pyflakes before test (says Brian) |
---|
1274 | zooko@zooko.com**20091022220758 |
---|
1275 | Ignore-this: 50b80e8a33068b038996c6590aee17a6 |
---|
1276 | ] |
---|
1277 | [fix it to actually stop on failure of test (thanks PoVAddict and warner) |
---|
1278 | zooko@zooko.com**20091022220500 |
---|
1279 | Ignore-this: 457448f4d34a75e944addd3c3694b9c5 |
---|
1280 | ] |
---|
1281 | [ArchLinux is gone |
---|
1282 | zooko@zooko.com**20091022215743 |
---|
1283 | Ignore-this: 6ca0bed5b87a36deca3af350ac01ce49 |
---|
1284 | ] |
---|
1285 | [oops no more deb-jaunty |
---|
1286 | zooko**20091022013802 |
---|
1287 | Ignore-this: 3e48289c2fdbfeacaed321c0d5b7ddbd |
---|
1288 | ] |
---|
1289 | [this page is in utf-8 not iso-8859-15! |
---|
1290 | zooko@zooko.com**20091022013102 |
---|
1291 | Ignore-this: 31a6e9d6857f99ffa14ed8cfba6d2262 |
---|
1292 | ] |
---|
1293 | [hardy unsupported :-( |
---|
1294 | zooko@zooko.com**20091022013034 |
---|
1295 | Ignore-this: e37aa0cae73571912e1d5af6945bb5ea |
---|
1296 | ] |
---|
1297 | [hardy buildslave gone for now |
---|
1298 | zooko@zooko.com**20091022003102 |
---|
1299 | Ignore-this: 598293ff91d15d8686c131fbeaae732e |
---|
1300 | ] |
---|
1301 | [UploadEggToPyPI is a PythonCommand not a ShellCommand |
---|
1302 | zooko**20091022000334 |
---|
1303 | Ignore-this: 7688af877d5aa1116baa077aa1c5954b |
---|
1304 | ] |
---|
1305 | [cygwin offline |
---|
1306 | zooko@zooko.com**20091021201025 |
---|
1307 | Ignore-this: e39ab51ddba0f1c49b781e954e0b977c |
---|
1308 | ] |
---|
1309 | [cygwin offline |
---|
1310 | zooko@zooko.com**20091021201016 |
---|
1311 | Ignore-this: 15dccf6dac487f9c0ab96261a400e97f |
---|
1312 | ] |
---|
1313 | [cygwin offline for now :-( |
---|
1314 | zooko@zooko.com**20091021200920 |
---|
1315 | Ignore-this: ca79f8f75bee3a9a3c39cdca8a032692 |
---|
1316 | ] |
---|
1317 | [move offline builder etch to the end (right) of the list |
---|
1318 | zooko@zooko.com**20091021200838 |
---|
1319 | Ignore-this: fc88e1495c53e84afe3ab88959119886 |
---|
1320 | ] |
---|
1321 | [comment-out etch (off-line until further notice) |
---|
1322 | zooko@zooko.com**20091021195945 |
---|
1323 | Ignore-this: 8dcd49643d97596209f200e73f2fb73e |
---|
1324 | ] |
---|
1325 | [etch is unsupported |
---|
1326 | zooko@zooko.com**20091021195755 |
---|
1327 | Ignore-this: 430f263792a311305ae3512f753e6f29 |
---|
1328 | ] |
---|
1329 | [yukyuk is karmic now |
---|
1330 | zooko@zooko.com**20091021193244 |
---|
1331 | Ignore-this: 8da2660e2170b1dec97ed6c60398e590 |
---|
1332 | ] |
---|
1333 | [yukyuk is karmic now |
---|
1334 | zooko@zooko.com**20091021193237 |
---|
1335 | Ignore-this: 9a1b159182f9661687ebf2503b93f428 |
---|
1336 | ] |
---|
1337 | [yukyuk is karmic now |
---|
1338 | zooko@zooko.com**20091021193224 |
---|
1339 | Ignore-this: 5dc1af989d78cc1aadd44eca4251daee |
---|
1340 | ] |
---|
1341 | [fix python=None in PythonCommand |
---|
1342 | "Brian Warner <warner@lothar.com>"**20091020002606] |
---|
1343 | [fix use of addFactoryArguments: must come after upcall. Simplify use of kwargs. |
---|
1344 | "Brian Warner <warner@lothar.com>"**20091020001954] |
---|
1345 | [bbsupport.py: use PythonCommand in most places, fix up addFactoryArguments() |
---|
1346 | "Brian Warner <warner@lothar.com>"**20091020001112] |
---|
1347 | [switch from repourl to baseurl + branch (+ "-hashedformat") |
---|
1348 | zooko@zooko.com**20091016200240 |
---|
1349 | Ignore-this: 300e02553598b123cd8b1173c909c53e |
---|
1350 | ] |
---|
1351 | [no more DARCS1, not even for gutsy. yay. |
---|
1352 | zooko@zooko.com**20091016195628 |
---|
1353 | Ignore-this: 73e64f832a1200783ad073f94791cab3 |
---|
1354 | ] |
---|
1355 | [addFactoryArguments |
---|
1356 | zooko**20091016193345 |
---|
1357 | Ignore-this: e87f9cc3ae8eac617d131f960911c914 |
---|
1358 | ] |
---|
1359 | [fix our buildsteps to work with new buildbot version |
---|
1360 | zooko**20091016185459 |
---|
1361 | Ignore-this: b7a2b974cc8c560b4db440a517d71a87 |
---|
1362 | ] |
---|
1363 | [remove our params from kwargs before passing kwargs to superclass constructor |
---|
1364 | zooko@zooko.com**20091016183741 |
---|
1365 | Ignore-this: d06e0a2f6a44fed91297578c8430fc3 |
---|
1366 | ] |
---|
1367 | [fix bugs in base+branch patch |
---|
1368 | zooko**20091016183406 |
---|
1369 | Ignore-this: 8b5506043678a212c698b355f1f5f843 |
---|
1370 | ] |
---|
1371 | [switch from repourl to baseURL+branch (+"-hashedformat") |
---|
1372 | zooko@zooko.com**20091016184657 |
---|
1373 | Ignore-this: ed04b2d9ed4e65b6c5d1faa238192fab |
---|
1374 | ] |
---|
1375 | [gutsy no longer has DARCS1 |
---|
1376 | zooko@zooko.com**20091016184219 |
---|
1377 | Ignore-this: cf0ade25c9403a6638014b99e65867b |
---|
1378 | ] |
---|
1379 | [disable the build of windows exe, see comment for why |
---|
1380 | zooko@zooko.com**20091006204105 |
---|
1381 | Ignore-this: 9747440dbbcf9a89e764c2ada2d8f932 |
---|
1382 | ] |
---|
1383 | [fix oops in recent patch |
---|
1384 | zooko**20090914034951 |
---|
1385 | Ignore-this: 62f456b1a61e6daa8bec5760726ce3a8 |
---|
1386 | ] |
---|
1387 | [arch is "all" for Tahoe-LAFS |
---|
1388 | zooko@zooko.com**20090914040414 |
---|
1389 | Ignore-this: fe4ead3cc480999f29758d2fe3322ab3 |
---|
1390 | ] |
---|
1391 | [tell Eugen's deb builder not to upload .deb's |
---|
1392 | zooko@zooko.com**20090914040357 |
---|
1393 | Ignore-this: 3b13a7adbc038926ae2c345323d58c0f |
---|
1394 | We already GOT one! |
---|
1395 | |
---|
1396 | ] |
---|
1397 | [retire Zandr's linkstation from zfec service |
---|
1398 | zooko@zooko.com**20090914034119 |
---|
1399 | Ignore-this: e0b020a5258f27ddf1fa77575553a755 |
---|
1400 | ] |
---|
1401 | [retire Zandr's linkstation from pycryptopp service |
---|
1402 | zooko@zooko.com**20090914034106 |
---|
1403 | Ignore-this: cd23d2322c30af45815668460b69a020 |
---|
1404 | ] |
---|
1405 | [change Eugen's lenny amd64 to upload with furls |
---|
1406 | zooko@zooko.com**20090914034007 |
---|
1407 | Ignore-this: 9223e6de20cbc31935581ffe5927bbac |
---|
1408 | ] |
---|
1409 | [retire Zandr's lenny-armel box that was that little slow linkstation |
---|
1410 | zooko@zooko.com**20090914033933 |
---|
1411 | Ignore-this: e424b1ae48c65c6fd4a8fe2a8b525576 |
---|
1412 | ] |
---|
1413 | [yukyuk upgraded to jaunty and told to upload .deb's |
---|
1414 | zooko@zooko.com**20090815215642 |
---|
1415 | Ignore-this: 6dd70c1aebd1592091d5532999aec938 |
---|
1416 | ] |
---|
1417 | [add the new yukyuk deb-jaunty to scheduler and index.html |
---|
1418 | zooko@zooko.com**20090815213650 |
---|
1419 | Ignore-this: 6ae47fdc307e500753e583dc1325e5da |
---|
1420 | ] |
---|
1421 | [make default deb_arch == 'all' instead of 'i386' |
---|
1422 | zooko@zooko.com**20090815213201 |
---|
1423 | Ignore-this: eb7424c0c8ec64b676343a5287dc3da0 |
---|
1424 | ] |
---|
1425 | [rename David A/'s open solaris for zfec |
---|
1426 | zooko@zooko.com**20090815195939 |
---|
1427 | Ignore-this: d4a5561255be27cfaf88ac2ce6f1f32f |
---|
1428 | ] |
---|
1429 | [tell Soultcer's buildbot to use furl not scp |
---|
1430 | zooko@zooko.com**20090815185816 |
---|
1431 | Ignore-this: ecd0ce3c0462918a4113c4e04fdaf82c |
---|
1432 | ] |
---|
1433 | [Soultcer |
---|
1434 | zooko@zooko.com**20090815182736 |
---|
1435 | Ignore-this: 6aeeae3d03d511474b6754bc24a8e672 |
---|
1436 | ] |
---|
1437 | [Soultcer lenny-amd64 for zfec |
---|
1438 | zooko@zooko.com**20090815181853 |
---|
1439 | Ignore-this: c2f5f77c3d5e27393fca4096205cc472 |
---|
1440 | ] |
---|
1441 | [edgy has darcs-2 now |
---|
1442 | zooko@zooko.com**20090815181708 |
---|
1443 | Ignore-this: 6b6ca265db3f5cf4f2b835317a70d8af |
---|
1444 | ] |
---|
1445 | [add David Triendl == Soultcer's lenny amd64 and append op name to deb-lenny-amd64 builder name to distinguish Eugen's from Soultcer's |
---|
1446 | zooko@zooko.com**20090815162809 |
---|
1447 | Ignore-this: fc08d7bf2c6a32581e1d897e4e952b03 |
---|
1448 | ] |
---|
1449 | [add David A.'s solaris tahoe |
---|
1450 | zooko@zooko.com**20090815155610 |
---|
1451 | Ignore-this: cd68f6b6fe730be9a94f0e3b59dbe13 |
---|
1452 | ] |
---|
1453 | [change name and password of David A's opensolaris |
---|
1454 | zooko@zooko.com**20090815135420 |
---|
1455 | Ignore-this: 64eb3823cd21fb678c702eaa98bf59f4 |
---|
1456 | ] |
---|
1457 | [add Arthur debian-lenny-c7-i386 for zfec |
---|
1458 | zooko@zooko.com**20090815134547 |
---|
1459 | Ignore-this: af306c5cc212483cca1243d72d450aca |
---|
1460 | ] |
---|
1461 | [make yukyuk do the deb-jaunty job instead of mordsith (mordsith is unstable) |
---|
1462 | zooko@zooko.com**20090815133454 |
---|
1463 | Ignore-this: c5ce0f25361a97dd1ed53c73b613150 |
---|
1464 | ] |
---|
1465 | [make use_hashed_format the default for make_deb_factory() |
---|
1466 | zooko@zooko.com**20090815133422 |
---|
1467 | Ignore-this: 13a3a1379d0979bb4366b532ab284342 |
---|
1468 | ] |
---|
1469 | [zfec franXois |
---|
1470 | zooko@zooko.com**20090805140058 |
---|
1471 | Ignore-this: 4980b0dcfdff139337511245cf59303e |
---|
1472 | ] |
---|
1473 | [utf-8 |
---|
1474 | zooko**20090805134517 |
---|
1475 | Ignore-this: 8e8425e892ef5b79f2cdda6cef203755 |
---|
1476 | ] |
---|
1477 | [FranXois's box |
---|
1478 | zooko@zooko.com**20090805135451 |
---|
1479 | Ignore-this: 6ffe4047db6967a9c047e08f0e7c886e |
---|
1480 | ] |
---|
1481 | [add deb-lenny-amd64 to the set to be triggered whenever Supported Test Builders all pass |
---|
1482 | zooko@zooko.com**20090805031608 |
---|
1483 | Ignore-this: 695a601054f21df1cda3e2e5b686c46f |
---|
1484 | ] |
---|
1485 | [promote Arthur Lutz's lenny-i386 (via c7) to Supported and add Deb builder on it |
---|
1486 | zooko@zooko.com**20090805031222 |
---|
1487 | Ignore-this: 508573858150e6dc2e83c73f53ddf99f |
---|
1488 | ] |
---|
1489 | [fix spelling of "i386" for allmydata.com hardy |
---|
1490 | zooko**20090805025343 |
---|
1491 | Ignore-this: 5ac3fef036ae0befa69f9ffe68e4ac9e |
---|
1492 | ] |
---|
1493 | [remove non-ascii char from builddir of François's ARM box |
---|
1494 | zooko@zooko.com**20090804134150 |
---|
1495 | Ignore-this: c278f0ec02ee5ac2d3f0ed1b3997f33a |
---|
1496 | ] |
---|
1497 | [add hardy-i386 for pycryptopp |
---|
1498 | zooko@zooko.com**20090803005633 |
---|
1499 | Ignore-this: 9e10619e530e3ca08161aea311b30f |
---|
1500 | ] |
---|
1501 | [fix imports and paths and arg names |
---|
1502 | zooko**20090728141201 |
---|
1503 | Ignore-this: f3fe9afb1b46766c03dc263e15225fce |
---|
1504 | ] |
---|
1505 | [new auto upload of packages copied from pycryptopp |
---|
1506 | zooko@zooko.com**20090728133122 |
---|
1507 | Ignore-this: 9cba0b1557192bc1d4f1c5fc36ff6aa5 |
---|
1508 | ] |
---|
1509 | [arthur uploads debs for pycryptopp |
---|
1510 | zooko**20090728130438 |
---|
1511 | Ignore-this: a26a71f5d32b5866dd9f592ae283e3cf |
---|
1512 | ] |
---|
1513 | [configure bdew's debian-unstable to upload .deb's |
---|
1514 | zooko@zooko.com**20090727130642 |
---|
1515 | Ignore-this: 459118a3d55432df43d9c75e6a915ae5 |
---|
1516 | ] |
---|
1517 | [fix typos in new upload egg steps |
---|
1518 | zooko**20090727023556 |
---|
1519 | Ignore-this: 3543123be9e1b5938adf91d9c744d780 |
---|
1520 | ] |
---|
1521 | [upload eggs to allmydata.org and to pypi |
---|
1522 | zooko@zooko.com**20090726155842 |
---|
1523 | Ignore-this: 4f05d8128c78d42c5521fc9df2038eff |
---|
1524 | ] |
---|
1525 | [fix path to .deb for tahoe |
---|
1526 | zooko@zooko.com**20090725223801 |
---|
1527 | Ignore-this: c1a7fca7c29b1b7954cbe66206e71d37 |
---|
1528 | ] |
---|
1529 | [fix it up |
---|
1530 | zooko**20090725222049 |
---|
1531 | Ignore-this: 56111ddf9f702b4e22dc11591a0ed787 |
---|
1532 | ] |
---|
1533 | [fix bugs in refactoring |
---|
1534 | zooko**20090725205606 |
---|
1535 | Ignore-this: 8e17be8c55ecef391b5fb527b40c0722 |
---|
1536 | ] |
---|
1537 | [refactor pycryptopp and tahoe to use some flappy buildsteps for upload-deb and update-repo |
---|
1538 | zooko@zooko.com**20090725205154 |
---|
1539 | Ignore-this: 3ba31c9319a222893d00293d6cedee09 |
---|
1540 | ] |
---|
1541 | [now it works, but it isn't generic between pycryptopp and tahoe usages of flappclient |
---|
1542 | zooko**20090725191502 |
---|
1543 | Ignore-this: f49ce1d8c972b6f67df8aeb4fb244857 |
---|
1544 | ] |
---|
1545 | [add flappserver upload |
---|
1546 | zooko@zooko.com**20090725183828 |
---|
1547 | Ignore-this: 8e7693ba75f9d34f5b0329f33925baea |
---|
1548 | ] |
---|
1549 | [remove unused slave |
---|
1550 | zooko@zooko.com**20090724173913 |
---|
1551 | Ignore-this: 902f0d665146bacde80bbc7b00356f09 |
---|
1552 | ] |
---|
1553 | [add arthur c7 for pycryptopp |
---|
1554 | zooko@zooko.com**20090724173904 |
---|
1555 | Ignore-this: e037775b122928e4c705586c6f6ed454 |
---|
1556 | ] |
---|
1557 | [add slave-etc |
---|
1558 | zooko@zooko.com**20090723131959 |
---|
1559 | Ignore-this: ea52652f5e51b7b28fffaedbdce6d86c |
---|
1560 | ] |
---|
1561 | [rename yukyuk |
---|
1562 | zooko@zooko.com**20090721131014 |
---|
1563 | Ignore-this: 9357884aa8990dd803dd7e1b0bf40b6 |
---|
1564 | ] |
---|
1565 | [demote Zandr Lenny-armel and BlackDew debian-i386 |
---|
1566 | zooko@zooko.com**20090720140815 |
---|
1567 | Ignore-this: 738e0153242c560e8b7c8e9f3c3a8ad0 |
---|
1568 | ] |
---|
1569 | [set haltOnFailure=False, flunkOnFailure=False for test_mac_diskimage |
---|
1570 | zooko@zooko.com**20090715023416 |
---|
1571 | Ignore-this: f4f1e1b89e523544cb1c8c9b94de74e6 |
---|
1572 | because mac diskimage is broken and i want to make progress toward v1.5 |
---|
1573 | ] |
---|
1574 | [fix new test dmg |
---|
1575 | zooko**20090712232048 |
---|
1576 | Ignore-this: 3e8cefcad7fc1d7b91ce0f77ee7af179 |
---|
1577 | ] |
---|
1578 | [add buildstep to test Mac dmg |
---|
1579 | zooko@zooko.com**20090712232801 |
---|
1580 | Ignore-this: e0d8d16ff5bf826e7575822993f502c7 |
---|
1581 | ] |
---|
1582 | [allow anyone to poke the ForceBuild button on tahoe-w32-client |
---|
1583 | zooko@zooko.com**20090712232742 |
---|
1584 | Ignore-this: 2d220f11519b88f8944821735d1ee37 |
---|
1585 | ] |
---|
1586 | [remove draco |
---|
1587 | zooko@zooko.com**20090711195521 |
---|
1588 | Ignore-this: 57f9784dc8260a62e40dc8caa56fbb95 |
---|
1589 | ] |
---|
1590 | [remove dead draco from zfec |
---|
1591 | zooko@zooko.com**20090711193612 |
---|
1592 | Ignore-this: d131c9fd437b5a80b9daaa67834bdc98 |
---|
1593 | ] |
---|
1594 | [remove dead draco from pycryptopp |
---|
1595 | zooko@zooko.com**20090711193557 |
---|
1596 | Ignore-this: 6ca195c84720207686547d8233848dfc |
---|
1597 | ] |
---|
1598 | [gutsy also requires darcs-1 |
---|
1599 | zooko@zooko.com**20090710011644 |
---|
1600 | Ignore-this: cd797794740570d027a1e48da7541855 |
---|
1601 | ] |
---|
1602 | [whoops, set *hardy* to darcs-1, not gutsy |
---|
1603 | zooko@zooko.com**20090709125833 |
---|
1604 | Ignore-this: 48270bc9c6f6c0547ba326aac971d15f |
---|
1605 | ] |
---|
1606 | [hardy requires darcs-1? |
---|
1607 | zooko@zooko.com**20090709001154 |
---|
1608 | Ignore-this: 6478ca563c94e571acb72df335fdb5ba |
---|
1609 | ] |
---|
1610 | [promote BlackDew debian i386 and Zandr Lenny armel, demote Shawn jaunty amd64, and remove draco (dead) |
---|
1611 | zooko@zooko.com**20090708130610 |
---|
1612 | Ignore-this: 235f0870fcc590634eef23ee6ba656b3 |
---|
1613 | ] |
---|
1614 | [add Arthur lenny c7 32bit to html |
---|
1615 | zooko@zooko.com**20090708125458 |
---|
1616 | Ignore-this: f3d18bb1df55c66beaad3d33f5537740 |
---|
1617 | ] |
---|
1618 | [simplify by making use_hashed_format default to True |
---|
1619 | zooko@zooko.com**20090708124109 |
---|
1620 | Ignore-this: 497c659f1724b480a74ad7efc275e721 |
---|
1621 | ] |
---|
1622 | [SECRET add Arthur's lenny c7 password |
---|
1623 | zooko@zooko.com**20090708123748 |
---|
1624 | Ignore-this: 430f4eb8aeb9fbfcf0ff51f3f8c3416 |
---|
1625 | ] |
---|
1626 | [add Arthur's lenny c7 |
---|
1627 | zooko@zooko.com**20090708123726 |
---|
1628 | Ignore-this: 1c1ef767067d0ae14e72ff772ad993c |
---|
1629 | ] |
---|
1630 | [increase timeout on windows upload, to allow for 3 installers uploading. [robk] |
---|
1631 | robk-tahoe@allmydata.com**20090706030804 |
---|
1632 | Ignore-this: 959370ae8f622ff3a06d42c3874ff6b7 |
---|
1633 | ] |
---|
1634 | [pass python=python to the TahoeVersion step |
---|
1635 | zooko@zooko.com**20090624213824 |
---|
1636 | Ignore-this: b9a7ef600873e4b7ad91f27dd2b49394 |
---|
1637 | ] |
---|
1638 | [rename netbsd builder to 'MM netbsd4 i386 warp' |
---|
1639 | warner@allmydata.com**20090624011843 |
---|
1640 | Ignore-this: 9852b6e67d35c9c84f524c446964fd7a |
---|
1641 | ] |
---|
1642 | [netbsd-warp: use 'python2.5', since netbsd systems install it under that name instead of 'python' |
---|
1643 | warner@allmydata.com**20090624010004 |
---|
1644 | Ignore-this: 785a5f2a2d29f0210c791cb09f37426 |
---|
1645 | ] |
---|
1646 | [temporarily turn off the trunk gridchecks: prodnet is full, and we plan to create a separate builder for this purpose |
---|
1647 | warner@allmydata.com**20090624004004 |
---|
1648 | Ignore-this: f406541ad604284f6a018efae809372d |
---|
1649 | ] |
---|
1650 | [add 'warp' buildslave, a netbsd4 box contributed by midnightmagic |
---|
1651 | warner@allmydata.com**20090624003928 |
---|
1652 | Ignore-this: 81ca9085c99d2c767c186e8b767be91c |
---|
1653 | ] |
---|
1654 | [ToolVersions: remove platform from waterfall display: it is much too wide. It remains in the stdio for people to check |
---|
1655 | warner@lothar.com**20090621220403 |
---|
1656 | Ignore-this: e7945830902a8ddb0ebad60aa5613f92 |
---|
1657 | ] |
---|
1658 | [add bdew's builders to schedule of pycryptopp |
---|
1659 | zooko@zooko.com**20090621061241 |
---|
1660 | Ignore-this: 9699ff1488c86b055e57ba0413199315 |
---|
1661 | ] |
---|
1662 | [turn off stdeb on gutsy -- gutsy is too old to build debs using the latest stdeb and debhelper |
---|
1663 | zooko@zooko.com**20090621053950 |
---|
1664 | Ignore-this: 1d52ce5965ac1d51cde2b0974e8e9d5b |
---|
1665 | ] |
---|
1666 | [tahoe/trunk: update index.html with Shawn's intrepid-is-really-jaunty update |
---|
1667 | warner@lothar.com**20090617194314 |
---|
1668 | Ignore-this: 1e408efeb6add459cebac02ff33146a8 |
---|
1669 | ] |
---|
1670 | [switch to flappclient for edgy, feisty, hardy, and etch |
---|
1671 | warner@lothar.com**20090617193631 |
---|
1672 | Ignore-this: be2c9d0d6ce88ee17bf1db2bdc3eec8d |
---|
1673 | ] |
---|
1674 | [switch .deb upload to flappclient, starting with deb-gutsy |
---|
1675 | warner@lothar.com**20090617185512 |
---|
1676 | Ignore-this: 9ba31347270fbf366b2e51114c8253be |
---|
1677 | ] |
---|
1678 | [rename Shawn's deb builder |
---|
1679 | zooko@zooko.com**20090617183533 |
---|
1680 | Ignore-this: 2283c483171c6495947a95ff3f1bd9fd |
---|
1681 | ] |
---|
1682 | [narrow parsing of setuptools version number |
---|
1683 | zooko@zooko.com**20090617182156 |
---|
1684 | Ignore-this: 4588651d8d09267572860d9e3638ad77 |
---|
1685 | ] |
---|
1686 | [scrape setuptools version from show-tool-versions |
---|
1687 | zooko@zooko.com**20090617181931 |
---|
1688 | Ignore-this: 2c3c2e2e23944e65362c0e7f24bed3e4 |
---|
1689 | ] |
---|
1690 | [fix bugs |
---|
1691 | zooko**20090617180301 |
---|
1692 | Ignore-this: aae1a5ccf5c1118d9d3a7c5f7fa3e50e |
---|
1693 | ] |
---|
1694 | [add bdew's builders to schedule |
---|
1695 | zooko@zooko.com**20090617180945 |
---|
1696 | Ignore-this: c7f0053b922263a39a9a51b2269d3f71 |
---|
1697 | ] |
---|
1698 | [gutsy is too old to build debs (with stdeb and setuptools) |
---|
1699 | zooko@zooko.com**20090617180827 |
---|
1700 | Ignore-this: a43ee8445ffa9d0256756a30fa27b8e1 |
---|
1701 | ] |
---|
1702 | [add BlackDew's buildslaves to zfec |
---|
1703 | zooko@zooko.com**20090616224909 |
---|
1704 | Ignore-this: e4ad7828ca026f6ff73b03ddf7f322fb |
---|
1705 | ] |
---|
1706 | [add BlackDew's builders to pycryptopp |
---|
1707 | zooko@zooko.com**20090616224852 |
---|
1708 | Ignore-this: 6721e74fb9f1142113caaddaf22d8f75 |
---|
1709 | ] |
---|
1710 | [fix name of Black Dew's i386 |
---|
1711 | zooko@zooko.com**20090615225904 |
---|
1712 | Ignore-this: 133f5eed7482f1923926e021df34688b |
---|
1713 | ] |
---|
1714 | [run flakes only on one builder |
---|
1715 | zooko@zooko.com**20090614221347 |
---|
1716 | Ignore-this: e86d25b8c992edfce424009b7d134805 |
---|
1717 | ] |
---|
1718 | [fix arg |
---|
1719 | zooko@zooko.com**20090614010020 |
---|
1720 | Ignore-this: a287c6277659420da715c94ba5f5365e |
---|
1721 | ] |
---|
1722 | [build/zfec |
---|
1723 | zooko@zooko.com**20090614005437 |
---|
1724 | Ignore-this: 44138ac11f8c18e311ea0da2c430a22d |
---|
1725 | ] |
---|
1726 | [zfec/zfec |
---|
1727 | zooko@zooko.com**20090614005158 |
---|
1728 | Ignore-this: 54d6bf0751e6cd3f5e29ec96b4420625 |
---|
1729 | ] |
---|
1730 | [use just Compile |
---|
1731 | zooko@zooko.com**20090613223741 |
---|
1732 | Ignore-this: ed4d045059254820ae6066f541c51ad5 |
---|
1733 | ] |
---|
1734 | [workdir = zfec |
---|
1735 | zooko@zooko.com**20090613223415 |
---|
1736 | Ignore-this: 787a8e8218c8f34363bfc23a84cd7834 |
---|
1737 | ] |
---|
1738 | [BD's deb-un is i386 not amd64 |
---|
1739 | zooko@zooko.com**20090613223400 |
---|
1740 | Ignore-this: 41ece2399d22eba54b4ffd52b89ad03a |
---|
1741 | ] |
---|
1742 | [change pblistener port |
---|
1743 | zooko**20090613222429 |
---|
1744 | Ignore-this: 88eff501f3be5849eb258028108dbc0f |
---|
1745 | ] |
---|
1746 | [oops, zfec source not pycryptopp source |
---|
1747 | zooko**20090613213905 |
---|
1748 | Ignore-this: bc5f25f4f261418fc922df2244e7c2a8 |
---|
1749 | ] |
---|
1750 | [fix bugs in new zfec config |
---|
1751 | zooko**20090613211821 |
---|
1752 | Ignore-this: 6a618a495f0e56d6d9ebe9d62d0f68bf |
---|
1753 | ] |
---|
1754 | [new zfec buildmaster config |
---|
1755 | zooko@zooko.com**20090613212342 |
---|
1756 | Ignore-this: 24c6d8d45f452906f241e77f831e3cf0 |
---|
1757 | ] |
---|
1758 | [SECRETS for Black Dew's buildslaves |
---|
1759 | zooko**20090613194824 |
---|
1760 | Ignore-this: 9a81218f8523ede7d18ed36f32842ad2 |
---|
1761 | ] |
---|
1762 | [add Black Dew's builders to Unsupported |
---|
1763 | zooko@zooko.com**20090613180546 |
---|
1764 | Ignore-this: b1b3c3747daa4506f83ac90301af7517 |
---|
1765 | ] |
---|
1766 | [rename yukyuk, promote Dan's ArchLinux to Supported |
---|
1767 | zooko@zooko.com**20090609022851 |
---|
1768 | Ignore-this: 9caca5c3e8ca65751a5ebd20b5b25719 |
---|
1769 | ] |
---|
1770 | [don't timeout if a single test takes longer than 1200 seconds. :-/ |
---|
1771 | zooko@zooko.com**20090609005025 |
---|
1772 | Ignore-this: 550996dff5a02ada785c702070c26c62 |
---|
1773 | ] |
---|
1774 | [it can take longer than 1200 seconds to build tahoe |
---|
1775 | zooko@zooko.com**20090608225610 |
---|
1776 | Ignore-this: bf5c54a563e989425f7e4f3ff41e07cc |
---|
1777 | ] |
---|
1778 | [mordsith upgraded to jaunty |
---|
1779 | zooko@zooko.com**20090604135526 |
---|
1780 | Ignore-this: b1c39673762d4be28f9af9bbe2fd057d |
---|
1781 | ] |
---|
1782 | [don't attempt to upload dmg unless an "upload_dmg_furlfile" arg was passed to the make_factory() |
---|
1783 | zooko@zooko.com**20090604030342 |
---|
1784 | Ignore-this: 70d78583438e734c14f90cb22fcfd366 |
---|
1785 | ] |
---|
1786 | [don't build the embedded-Crypto++ on linkstation (takes way too long) |
---|
1787 | zooko@zooko.com**20090604030040 |
---|
1788 | Ignore-this: ac9c27b6ed5e53fd21d7657d180fe9d4 |
---|
1789 | ] |
---|
1790 | [retire dapper |
---|
1791 | zooko@zooko.com**20090604025958 |
---|
1792 | Ignore-this: fb943fb2879a3be95ebe782c700449df |
---|
1793 | ] |
---|
1794 | [finish naming syslibs with " syslib" instead of "-syslib" |
---|
1795 | zooko**20090530153115 |
---|
1796 | Ignore-this: 8c2cd89472b2d90931a22cc4cfe7c256 |
---|
1797 | ] |
---|
1798 | [name syslib by appending " syslib" instead of "-syslib" |
---|
1799 | zooko@zooko.com**20090530153604 |
---|
1800 | Ignore-this: 9fd647b543dc9c99cdbb72cd5c20a7fa |
---|
1801 | ] |
---|
1802 | [add David Abraham's opensolaris |
---|
1803 | zooko@zooko.com**20090530153539 |
---|
1804 | Ignore-this: dcdcd09ba009c927db58cd94b2909755 |
---|
1805 | ] |
---|
1806 | [tool versions after checkout |
---|
1807 | zooko@zooko.com**20090529053016 |
---|
1808 | Ignore-this: 68421f69452e714f5fd5cf230c762ace |
---|
1809 | ] |
---|
1810 | [bump up timeouts on builds whether --disable-embedded-cryptopp or not |
---|
1811 | zooko@zooko.com**20090529051629 |
---|
1812 | Ignore-this: a712606b60539668a63c72e104420ed5 |
---|
1813 | ] |
---|
1814 | [no spaces in builder names |
---|
1815 | zooko@zooko.com**20090529045808 |
---|
1816 | Ignore-this: 7ea69e03dbf01d28eec92fe814baf2f3 |
---|
1817 | ] |
---|
1818 | [add syslib builder for linkstation |
---|
1819 | zooko@zooko.com**20090529045110 |
---|
1820 | Ignore-this: 9227046b250ca41a1195093ff21104b5 |
---|
1821 | ] |
---|
1822 | [bump up timeout by a factor of 10 |
---|
1823 | zooko@zooko.com**20090529034158 |
---|
1824 | Ignore-this: 32a6dced381cc0ce82adb61f87580b1f |
---|
1825 | ] |
---|
1826 | [turn off debs on ruben's with syslib too |
---|
1827 | zooko**20090529015049 |
---|
1828 | Ignore-this: 50254afea2d8d4f3889251036ca6062f |
---|
1829 | ] |
---|
1830 | [add Mac Mini under Brian's TV |
---|
1831 | zooko**20090529015037 |
---|
1832 | Ignore-this: bd850c868ad10c8ab8af7793814e95f0 |
---|
1833 | ] |
---|
1834 | [SECRETS mac mini under Brian's TV password |
---|
1835 | zooko**20090529015020 |
---|
1836 | Ignore-this: bf0a3aadb19ea242772935130c079bd6 |
---|
1837 | ] |
---|
1838 | [found this whitespace patch in the master repo |
---|
1839 | zooko**20090529015005 |
---|
1840 | Ignore-this: 39c9e4f0ce1952f0160826c8f18c0064 |
---|
1841 | ] |
---|
1842 | [up timeout to 3600 for build step, only if not using --disable-embedded-cryptopp |
---|
1843 | zooko@zooko.com**20090529013015 |
---|
1844 | Ignore-this: 9abcc8f0323e82af847adaf017523411 |
---|
1845 | ] |
---|
1846 | [move pyflakes to after build and test (hopefully this will make setuptools noise go away from the pyflakes step) |
---|
1847 | zooko@zooko.com**20090529013000 |
---|
1848 | Ignore-this: 34f93882102994625b41ee7e25d3959e |
---|
1849 | ] |
---|
1850 | [don't ask ruben's fedora box to build debs |
---|
1851 | zooko@zooko.com**20090529004902 |
---|
1852 | Ignore-this: 639ff04149bd5fc2d3aa5a6cb704c3b3 |
---|
1853 | ] |
---|
1854 | [parse "platform" from show-tool-versions.py |
---|
1855 | zooko@zooko.com**20090523023332 |
---|
1856 | Ignore-this: 9cb6f6d7251345be048770b6bca6cab2 |
---|
1857 | ] |
---|
1858 | [invoke ToolVersions in pycryptopp builder |
---|
1859 | zooko@zooko.com**20090523022458 |
---|
1860 | Ignore-this: 63c2528c97f9acbe2f6898ab1dd3d8bc |
---|
1861 | ] |
---|
1862 | [add draco |
---|
1863 | zooko@zooko.com**20090523021831 |
---|
1864 | Ignore-this: aa851c6da11615c7f781441428d583e6 |
---|
1865 | ] |
---|
1866 | [fix typo |
---|
1867 | zooko**20090520221555 |
---|
1868 | Ignore-this: 2a5f8365337ec55fcef682caba2ed814 |
---|
1869 | ] |
---|
1870 | [add zandr's linkstation for pycryptopp |
---|
1871 | zooko@zooko.com**20090520221915 |
---|
1872 | Ignore-this: 1574233ad8934f5aad4ccf65ef20b80 |
---|
1873 | ] |
---|
1874 | [fix capitalization of Zandr's Lenny-armel box in the unit test link |
---|
1875 | zooko@zooko.com**20090507232011 |
---|
1876 | Ignore-this: af8df024dc0c00f674c4d3382b92e751 |
---|
1877 | ] |
---|
1878 | [schedule François Lenny-armv5tel as an unsupported builder |
---|
1879 | zooko@zooko.com**20090507230921 |
---|
1880 | Ignore-this: ed866d63e6d1b43175483ebb893fb124 |
---|
1881 | ] |
---|
1882 | [link to François Lenny-armv5tel (as Unsupported) |
---|
1883 | zooko@zooko.com**20090507230740 |
---|
1884 | Ignore-this: 58533a85422e8a826aa14879a0e6688a |
---|
1885 | ] |
---|
1886 | [mark coding of python files as utf-8 |
---|
1887 | zooko**20090507222553 |
---|
1888 | Ignore-this: 559d4f9f4abf4be3f1db7789a80870a |
---|
1889 | ] |
---|
1890 | [secret password for François Lenny-armv5tel |
---|
1891 | zooko@zooko.com**20090507165840 |
---|
1892 | Ignore-this: e3f60d6842cba0a20a5416ed0bb13c8d |
---|
1893 | ] |
---|
1894 | [add François Lenny-armv5tel |
---|
1895 | zooko@zooko.com**20090507165808 |
---|
1896 | Ignore-this: 27d20a5b0397fab1b0d86b5d40c619a0 |
---|
1897 | ] |
---|
1898 | [build mac app on ootles, too |
---|
1899 | zooko@zooko.com**20090501021015 |
---|
1900 | Ignore-this: 728b68f58011e7eba1a60cb69e095c61 |
---|
1901 | ] |
---|
1902 | [don't warn on warnings for stdeb step? |
---|
1903 | zooko@zooko.com**20090427160322 |
---|
1904 | Ignore-this: 6a29bb1be180946c216615e2747f29c4 |
---|
1905 | ] |
---|
1906 | [dapper can't do the Stdeb trick. :-( |
---|
1907 | zooko@zooko.com**20090427153823 |
---|
1908 | Ignore-this: 5eb7a013a6792a75627af3aa7c9bd983 |
---|
1909 | ] |
---|
1910 | [try a nicer way to cd into the deb_dist subdir |
---|
1911 | zooko@zooko.com**20090427153807 |
---|
1912 | Ignore-this: a73a2a8be13ea688227cf71f5025fcb1 |
---|
1913 | ] |
---|
1914 | [add ruben's builders to the scheduler |
---|
1915 | zooko@zooko.com**20090427020123 |
---|
1916 | Ignore-this: 26a5564238e381813dffb799771b5e1d |
---|
1917 | ] |
---|
1918 | [halt on failure of tests |
---|
1919 | zooko@zooko.com**20090426174922 |
---|
1920 | Ignore-this: bb4ea37a0387ac2553305c880dbe12a9 |
---|
1921 | ] |
---|
1922 | [comment-in pyflakes |
---|
1923 | zooko@zooko.com**20090426174917 |
---|
1924 | Ignore-this: 69014ead8ad61c3af540fbd63e2bc126 |
---|
1925 | ] |
---|
1926 | [if tests fail, stop the builder |
---|
1927 | zooko@zooko.com**20090426174237 |
---|
1928 | Ignore-this: f83f3ea1dd31a3fec5af77f053f6bcb0 |
---|
1929 | ] |
---|
1930 | [refactor external-cryptopp and add Ruben's external-cryptopp builde |
---|
1931 | zooko@zooko.com**20090426173923 |
---|
1932 | Ignore-this: b5368bfd6bfe5e83b7d2a8c230958d93 |
---|
1933 | ] |
---|
1934 | [fix typo in addition of ruben's buildslave |
---|
1935 | zooko**20090426145104 |
---|
1936 | Ignore-this: cf7f8af26a2d9cca331ef36fac3add9a |
---|
1937 | ] |
---|
1938 | [add Ruben's buildslave |
---|
1939 | zooko@zooko.com**20090426143839 |
---|
1940 | Ignore-this: 812cdc95a40574435d28f7eb05412fa5 |
---|
1941 | ] |
---|
1942 | [will it work better if it is a string than a list? |
---|
1943 | zooko@zooko.com**20090424015930 |
---|
1944 | Ignore-this: ec4e2b61eab5ac68ef5b3759e49cf04b |
---|
1945 | ] |
---|
1946 | [fix typo in stdeb |
---|
1947 | zooko@zooko.com**20090424011525 |
---|
1948 | Ignore-this: a5772e699cb32be3099a85e9dd4a0d1a |
---|
1949 | ] |
---|
1950 | [stdeb needs shell interpretation |
---|
1951 | zooko@zooko.com**20090423233408 |
---|
1952 | Ignore-this: f19bd615773b455075a664c27b771a07 |
---|
1953 | ] |
---|
1954 | [fix missing import |
---|
1955 | zooko**20090423230416 |
---|
1956 | Ignore-this: 2b0e3d1e2dfc3bfff9b86784ee9914be |
---|
1957 | ] |
---|
1958 | [initial attempt to use the Stdeb tool to build .deb's for pycryptopp |
---|
1959 | zooko@zooko.com**20090423230345 |
---|
1960 | Ignore-this: ad4f7e88adde1c5726261c547b0db494 |
---|
1961 | ] |
---|
1962 | [mark Ruben Fedora as Unsupported on the html page |
---|
1963 | zooko@zooko.com**20090413183513 |
---|
1964 | Ignore-this: 69dfaf25644bdd775ef300c2f3781378 |
---|
1965 | ] |
---|
1966 | [demote Ruben Fedora buildbot to Unsupported |
---|
1967 | zooko@zooko.com**20090413170856 |
---|
1968 | Ignore-this: 707dccf2d50b4128c403a0b8fc89d4da |
---|
1969 | ] |
---|
1970 | [fix bug in addition of zandr-linkstation |
---|
1971 | zooko**20090312025035 |
---|
1972 | Ignore-this: 8e7b0ddfae77c9a3cfd64c2f3964f643 |
---|
1973 | ] |
---|
1974 | [SECRET SECRET SECRET password for zandr-linkstation |
---|
1975 | zooko@zooko.com**20090312024700 |
---|
1976 | Ignore-this: 24a5ef8a58b43eb375571486da115df1 |
---|
1977 | ] |
---|
1978 | [add zandr-linkstation slave and Zandr Lenny-armel builder |
---|
1979 | zooko@zooko.com**20090312024643 |
---|
1980 | Ignore-this: e6f319f78d9411d7e739fb05f01d0400 |
---|
1981 | ] |
---|
1982 | [SECRET SECRET SECRET password for Ben's OpenBSD-sparc64 |
---|
1983 | zooko@zooko.com**20090311215117 |
---|
1984 | Ignore-this: 8dbd53f440b46f5831fe1254213fd206 |
---|
1985 | ] |
---|
1986 | [add Benjamin Jansen's OpenBSD 4.4-sparc64 to Unsupported |
---|
1987 | zooko@zooko.com**20090311215056 |
---|
1988 | Ignore-this: abd8829063d3edd0aa0388b9e4e5d0cf |
---|
1989 | ] |
---|
1990 | [deb-lenny-amd64 uses hashed-format |
---|
1991 | zooko@zooko.com**20090311165814 |
---|
1992 | Ignore-this: 13c8763c8e37e6c1c7a80ef5a45a29ab |
---|
1993 | ] |
---|
1994 | [edit html explanation of buildbot policy |
---|
1995 | zooko@zooko.com**20090311152856 |
---|
1996 | Ignore-this: bce4cb44ce10badf172edce809a7a494 |
---|
1997 | ] |
---|
1998 | [promote Eugen lenny-amd64, zooko yukyuk jauntyish, Ruben Fedora, zooko draco Mac-PPC 10.4, and zooko ootles Mac-amd64 10.4 to Supported |
---|
1999 | zooko@zooko.com**20090311152823 |
---|
2000 | Ignore-this: 55261c1b4cb9c26a546b937ac13265dc |
---|
2001 | ] |
---|
2002 | [add line explaining policy about buildbot-created packages |
---|
2003 | zooko@zooko.com**20090309034556 |
---|
2004 | Ignore-this: fd1f64a0e609397db9f0e685058bfc90 |
---|
2005 | ] |
---|
2006 | [fix accidental URL-quoting of builder names |
---|
2007 | zooko@zooko.com**20090307054258 |
---|
2008 | Ignore-this: a0bdb8430f3a500de3dc7dff5511c5ea |
---|
2009 | ] |
---|
2010 | [refactor the scheduler and make package building contingent on supported test builders all passing |
---|
2011 | zooko@zooko.com**20090307051450 |
---|
2012 | Ignore-this: 492a1c46ecb39e4627fbb2e7a5399a5e |
---|
2013 | ] |
---|
2014 | [rename ootles and draco test builders |
---|
2015 | zooko@zooko.com**20090306233456 |
---|
2016 | Ignore-this: 51270bdcc0ad872ca33280fa7c4a88d0 |
---|
2017 | ] |
---|
2018 | [sort the builders and update the index.html to describe different subsets of them |
---|
2019 | zooko@zooko.com**20090306233247 |
---|
2020 | Ignore-this: 6c4b2b5fe41bd14af0ffcea90226288f |
---|
2021 | ] |
---|
2022 | [rename yukyuk builder in public_html/index.html |
---|
2023 | zooko@zooko.com**20090306223808 |
---|
2024 | Ignore-this: d666fd6aff3c654f2ee53820208fa117 |
---|
2025 | ] |
---|
2026 | [change the name of yukyuk builder and yukyuk slave |
---|
2027 | zooko@zooko.com**20090306223452 |
---|
2028 | Ignore-this: 71520fc36d2a3dbd1fbdee4187c84c7e |
---|
2029 | ] |
---|
2030 | [SECRET SECRET SECRET change the name of yukyuk slave in secrets file |
---|
2031 | zooko@zooko.com**20090306223438 |
---|
2032 | Ignore-this: 88e5346136ede597c82b37bc63ed898c |
---|
2033 | ] |
---|
2034 | [make slave3-dapper be a pycryptopp buildslave |
---|
2035 | zooko@zooko.com**20090306001441 |
---|
2036 | Ignore-this: 7a392e6fa161c78a86cb88f147f592df |
---|
2037 | ] |
---|
2038 | [fix typo in lenny-amd64 debian builder |
---|
2039 | zooko**20090305214246 |
---|
2040 | Ignore-this: 7529fb17f5721fd3c01ee0c1f553ebab |
---|
2041 | ] |
---|
2042 | [pycryptopp changes done by someone else in-place on hanford and not darcs recorded |
---|
2043 | zooko**20090305214207 |
---|
2044 | Ignore-this: f79fa523ec7a4d350807b35ec0b99292 |
---|
2045 | ] |
---|
2046 | [configure Shawn's buildslave to build debs for intrepid-amd64 |
---|
2047 | zooko@zooko.com**20090305213653 |
---|
2048 | Ignore-this: 7c2249b2b776573171c0a898d6d99340 |
---|
2049 | ] |
---|
2050 | [fix the way that we calculate which builders are which debian platforms and the way the server master.cfg uses this |
---|
2051 | zooko**20090225225938 |
---|
2052 | Ignore-this: 22af9e07a33d2b5234f64ffa72f58af7 |
---|
2053 | ] |
---|
2054 | [demote yukyuk to unsupported, since it has some internal flaw which causes segfaults and filesystem corruption |
---|
2055 | zooko@zooko.com**20090225204145 |
---|
2056 | Ignore-this: 23b1bdaf7e135f7171044b0aaa1b0617 |
---|
2057 | ] |
---|
2058 | [speed-colo: don't use hashedformat, since we're using darcs1 on the gutsy slave |
---|
2059 | warner@allmydata.com**20090225052130 |
---|
2060 | Ignore-this: fff6057a6a1209db6859c458288ad3f6 |
---|
2061 | ] |
---|
2062 | [add Ruben Fedora to Unsupported Builders |
---|
2063 | zooko@zooko.com**20090224145326 |
---|
2064 | Ignore-this: 4b25482769f95cdfde0a4ca432cf35c6 |
---|
2065 | ] |
---|
2066 | [add Ruben Kerkhof's Fedora buildslave |
---|
2067 | zooko@zooko.com**20090224144714 |
---|
2068 | Ignore-this: 9c8fa18098d387588a729b6baf831591 |
---|
2069 | ] |
---|
2070 | [SECRET SECRET SECRET password for buildbot.rubenkerkhof.com |
---|
2071 | zooko**20090224145129 |
---|
2072 | Ignore-this: 87a451ed427127f73c421369de861fb0 |
---|
2073 | ] |
---|
2074 | [fix some typos in the Eugen Leitl setup and add a debian builder for lenny-amd64 using his buildslave |
---|
2075 | zooko**20090224001802 |
---|
2076 | Ignore-this: 6be00d27083c11dd760f9fbdae9aa057 |
---|
2077 | ] |
---|
2078 | [add a builder for debian for lenny-amd64 (Eugen Leitl's contributed buildbot) |
---|
2079 | zooko@zooko.com**20090223235715 |
---|
2080 | Ignore-this: ea172e55f9d3df7de5229368385c125b |
---|
2081 | ] |
---|
2082 | [gutsy downgraded to darcs-v1 |
---|
2083 | zooko@zooko.com**20090223220633 |
---|
2084 | Ignore-this: 395cc1604759d20d0f763211a2ac207 |
---|
2085 | ] |
---|
2086 | [append -darcs1format to repo URL if not using a darcs-2 executable |
---|
2087 | zooko@zooko.com**20090222213521 |
---|
2088 | Ignore-this: 79d49b08e6dc6053c4dab6edf385f52f |
---|
2089 | ] |
---|
2090 | [ToolVersions: make the output even shorter: 'py2.5.0' instead of 'python: 2.5.0' |
---|
2091 | warner@lothar.com**20090219200509 |
---|
2092 | Ignore-this: 6edeca87dddb7e5fec27d359a6656e27 |
---|
2093 | ] |
---|
2094 | [ToolVersions: show summarized versions in step text |
---|
2095 | warner@lothar.com**20090219184430 |
---|
2096 | Ignore-this: 421aa22d4bb76e3c12555a41a5b87220 |
---|
2097 | ] |
---|
2098 | [rename lenny-amd64 to 'Eugen lenny-amd64' |
---|
2099 | warner@lothar.com**20090219174606 |
---|
2100 | Ignore-this: 64670ced2688e486e824bb96cc9867fd |
---|
2101 | ] |
---|
2102 | [add lenny-amd64 to the unsupported list |
---|
2103 | warner@lothar.com**20090219174212 |
---|
2104 | Ignore-this: e73be046d4929c692cff85125f2556d3 |
---|
2105 | ] |
---|
2106 | [add Eugen Leitl's lenny-amd64 buildslave |
---|
2107 | warner@lothar.com**20090219173157 |
---|
2108 | Ignore-this: 7350007ba61cb78486fecfa908dfb7de |
---|
2109 | ] |
---|
2110 | [moved show-tool-versions out of setup.py and into a separate script |
---|
2111 | warner@lothar.com**20090219073822 |
---|
2112 | Ignore-this: aaa366bf599b431a42f22d442384a8e1 |
---|
2113 | ] |
---|
2114 | [BuiltTest: oops, missed a parens in the regexp |
---|
2115 | warner@lothar.com**20090219070616 |
---|
2116 | Ignore-this: 2e66d3db5e4824bab1865aa96126c051 |
---|
2117 | ] |
---|
2118 | [BuiltTest: scan trial output for per-test timings, build a report sorted by elapsed time, to show which tests take the most time |
---|
2119 | warner@lothar.com**20090219063922 |
---|
2120 | Ignore-this: 259ea442bb4e257f3cbb45dc6cc61fbe |
---|
2121 | ] |
---|
2122 | [bbgeneral: doh, ToolVersions uses setup.py, so it must appear *after* the darcs checkout |
---|
2123 | warner@lothar.com**20090219063359 |
---|
2124 | Ignore-this: 3dae748c5d435f0353cfe77f4bf8fa64 |
---|
2125 | ] |
---|
2126 | [replace the four separate tool version steps with a single setup.py-based ToolVersions. Closes #624 |
---|
2127 | warner@lothar.com**20090219062342 |
---|
2128 | Ignore-this: a7951ad20d96e74ca9b835e9722f7d85 |
---|
2129 | ] |
---|
2130 | [bbsupport.py: further simplifications: ShellCommand subclasses can be configured with class-level attributes, which is less code than modifying the arguments to superclass __init__ |
---|
2131 | warner@lothar.com**20090219055337 |
---|
2132 | Ignore-this: 8928776f3439b92dd8687c6583d27ae9 |
---|
2133 | ] |
---|
2134 | [BuiltTest: use 'timing' reporter, which gives us per-test elapsed time data |
---|
2135 | warner@lothar.com**20090219054016 |
---|
2136 | Ignore-this: 6b539ec78a77ae6f53be0353f94934f5 |
---|
2137 | ] |
---|
2138 | [simplify BuildTahoe and BuiltTest, mark BuildTahoe haltOnFailure |
---|
2139 | warner@lothar.com**20090219053922 |
---|
2140 | Ignore-this: f43fb05ffd228d0c62e4e8ffcf203b04 |
---|
2141 | ] |
---|
2142 | [index.html: promote hardy-amd64 to supported |
---|
2143 | warner@lothar.com**20090218023921 |
---|
2144 | Ignore-this: fcf94067358588b853663c41dbc6136b |
---|
2145 | ] |
---|
2146 | [deb-hardy-amd64: don't use hashed format, the buildslave has darcs-1.0.9 |
---|
2147 | warner@lothar.com**20090218015044 |
---|
2148 | Ignore-this: d87d7cef3cf6f699e5ff97e873c42f33 |
---|
2149 | ] |
---|
2150 | [index.html: add hardy-amd64 to 'deb' and 'packaging' lists |
---|
2151 | warner@lothar.com**20090218014047 |
---|
2152 | Ignore-this: bf502d4478640a2deb0e1c28ccc44d0b |
---|
2153 | ] |
---|
2154 | [index.html: add deb-hardy-amd64 to Unsupported Builders |
---|
2155 | warner@lothar.com**20090218012503 |
---|
2156 | Ignore-this: fcb7a16099b507f20e3a463e20008f2f |
---|
2157 | ] |
---|
2158 | [index.html: add hardy-amd64 to Unsupported Builders |
---|
2159 | warner@lothar.com**20090218012426 |
---|
2160 | Ignore-this: bd7016f0e8eefcabad253ae01c108b4f |
---|
2161 | ] |
---|
2162 | [oops, new parameter is deb_arch=, not arch= |
---|
2163 | warner@lothar.com**20090218012028 |
---|
2164 | Ignore-this: ffa52b233171d96e57a734a0520451a9 |
---|
2165 | ] |
---|
2166 | [SECRET SECRET SECRET password for fieldcircus |
---|
2167 | zooko**20090218005911 |
---|
2168 | Ignore-this: 77531dd7a3bd507e4d5ee880421956ec |
---|
2169 | ] |
---|
2170 | [add fieldcircus slave as "hardy-amd64" builder and pass deb_arch=amd64 to the make deb builder function |
---|
2171 | zooko@zooko.com**20090218005515 |
---|
2172 | Ignore-this: bc13c4dffeb29596ae5e2571c6d82539 |
---|
2173 | ] |
---|
2174 | [parameterize debian "arch" field, with default value "i386" |
---|
2175 | zooko@zooko.com**20090218005457 |
---|
2176 | Ignore-this: 5b4d1c36e6722103bf2009a787f09f0d |
---|
2177 | ] |
---|
2178 | [FigleafDeltaHTML: strip lines, the CRLF pair from a real buildslave was breaking the counter-scanning regexps |
---|
2179 | warner@lothar.com**20090213154730 |
---|
2180 | Ignore-this: 45ce7b6aa321b5474490bbb56f2d24f0 |
---|
2181 | ] |
---|
2182 | [fix spelling of list of unsupported builders |
---|
2183 | zooko@zooko.com**20090213142125 |
---|
2184 | Ignore-this: 54e9c0acedee0692ed92d9374f6a2b36 |
---|
2185 | ] |
---|
2186 | [FigleafDeltaHTML: oops, fix regexp, tolerate missing counts |
---|
2187 | warner@lothar.com**20090213071902 |
---|
2188 | Ignore-this: a7796ce388c068a9875917c32b48f1a5 |
---|
2189 | ] |
---|
2190 | [modify render-figleaf step to include delta with previous build, and display lines gained/lost/uncovered in the step box |
---|
2191 | warner@lothar.com**20090213062953 |
---|
2192 | Ignore-this: 5ca41c8a1fb41b1f3c90fcf351d70dd2 |
---|
2193 | ] |
---|
2194 | [secrets.py: add password for 'ootles' |
---|
2195 | warner@allmydata.com**20090213060225 |
---|
2196 | Ignore-this: a5bbf1ac4ff6e0b18209a6cbb50037a |
---|
2197 | ] |
---|
2198 | [add link to ootles from Unsupported Builders |
---|
2199 | zooko@zooko.com**20090213052719 |
---|
2200 | Ignore-this: d071b054421ea67e0a200bee56351285 |
---|
2201 | ] |
---|
2202 | [add ootles |
---|
2203 | zooko@zooko.com**20090213052448 |
---|
2204 | Ignore-this: e229a5d3fcdf607258a1e9f702b29508 |
---|
2205 | ] |
---|
2206 | [fix spelling of draco |
---|
2207 | zooko@zooko.com**20090212225148 |
---|
2208 | Ignore-this: a7c2ef928f9de4cca13f75a72c8eb4cc |
---|
2209 | ] |
---|
2210 | [add draco to the standard scheduler |
---|
2211 | zooko@zooko.com**20090212212617 |
---|
2212 | Ignore-this: 3b6b1e4e9f3a64acb4bf1344875b0722 |
---|
2213 | ] |
---|
2214 | [try another fix for PythonVersion |
---|
2215 | zooko@zooko.com**20090212184803 |
---|
2216 | Ignore-this: 796f47f0f426a2205608aea5becf06d8 |
---|
2217 | ] |
---|
2218 | [try a fix for PythonVersion |
---|
2219 | zooko@zooko.com**20090212184642 |
---|
2220 | Ignore-this: 1a5efe154d221a753d3d56af4c38df0 |
---|
2221 | ] |
---|
2222 | [use the handy dandy PythonVersion buildstep in the standard allmydata builder |
---|
2223 | zooko@zooko.com**20090212184429 |
---|
2224 | Ignore-this: be7fb56dcceadc8f62b368f71d9fba71 |
---|
2225 | ] |
---|
2226 | [add the handy-dandy PythonVersion buildstep |
---|
2227 | zooko@zooko.com**20090212184418 |
---|
2228 | Ignore-this: 5c0df1f2f0698d011f5b3e67c07ff17b |
---|
2229 | ] |
---|
2230 | [edit public html |
---|
2231 | zooko@zooko.com**20090212183855 |
---|
2232 | Ignore-this: 614cac8c32aa17488240c8bd2ae8f089 |
---|
2233 | ] |
---|
2234 | [change name of MacPPC builder on index.html |
---|
2235 | zooko@zooko.com**20090212183342 |
---|
2236 | Ignore-this: 9e32d58b07fb63e2dace869779a12600 |
---|
2237 | ] |
---|
2238 | [maybe slashes in builder names cause problems? |
---|
2239 | zooko@zooko.com**20090212183209 |
---|
2240 | Ignore-this: ece906536b04bb91fcfff9e298a4063a |
---|
2241 | ] |
---|
2242 | [link to bb policy page |
---|
2243 | zooko@zooko.com**20090212172544 |
---|
2244 | Ignore-this: c532da1dfbf93759d4b7cb7fd3149b84 |
---|
2245 | ] |
---|
2246 | [edit public_html some more -- subtly edit the "Supported Builders" policy |
---|
2247 | zooko@zooko.com**20090212170742 |
---|
2248 | Ignore-this: baef41db27c7f74fbecef629983fe96e |
---|
2249 | ] |
---|
2250 | [put supported builders at the top (first link), describe "Full" as union of supported and unsupported, add draco to unsupported |
---|
2251 | zooko@zooko.com**20090212170519 |
---|
2252 | Ignore-this: a67bd4dc1354e745d2d4070d010d3b3e |
---|
2253 | ] |
---|
2254 | [add draco's secret SECRET SECRET SECRET password |
---|
2255 | zooko@zooko.com**20090212170045 |
---|
2256 | Ignore-this: 776bd62d97e32b059263d33702cde08f |
---|
2257 | ] |
---|
2258 | [add draco |
---|
2259 | zooko@zooko.com**20090212170032 |
---|
2260 | Ignore-this: ec97223d8862a013f7f7bc7c08d7ebfb |
---|
2261 | ] |
---|
2262 | [index.html: add 'supported' and 'unsupported' builder lists |
---|
2263 | warner@allmydata.com**20090212012342 |
---|
2264 | Ignore-this: c0695762105f288aa419db918cbe457f |
---|
2265 | ] |
---|
2266 | [SECRETS SECRETS SECRETS password for mordsith |
---|
2267 | zooko@zooko.com**20090210044118 |
---|
2268 | Ignore-this: 6c9b9e0e99ece27b2cf4032524ca6f1e |
---|
2269 | ] |
---|
2270 | [add Shawn intrepid amd64 |
---|
2271 | zooko@zooko.com**20090210044105 |
---|
2272 | Ignore-this: 2c4dec435cb23032dabf9f26d53f4c50 |
---|
2273 | ] |
---|
2274 | [Add (iTech) to public_html/index.html |
---|
2275 | zandr@allmydata.com**20090209204924 |
---|
2276 | Ignore-this: 374c7ab0193df98c463a3896ca62ba78 |
---|
2277 | ] |
---|
2278 | [update buildbot.tac and master.cfg for -itech buildbot |
---|
2279 | zandr@allmydata.com**20090209204342 |
---|
2280 | Ignore-this: 8a8303a389488caa33b2dec6783dbacc |
---|
2281 | ] |
---|
2282 | [create tahoe-w32-client-itech |
---|
2283 | zandr@allmydata.com**20090209202734 |
---|
2284 | Ignore-this: bdffee098f03878424de39cb432f2ca8 |
---|
2285 | ] |
---|
2286 | [don't try to easy_install the egg on etch |
---|
2287 | zooko@zooko.com**20090205162137 |
---|
2288 | Ignore-this: fb53095b6b34a764ca67910e23f577f7 |
---|
2289 | A problem in the combination of setuptools and the Twisted and/or Nevow setup scripts is the likely culprit for why it fails. |
---|
2290 | But anyway, being able to easy_install on etch isn't that important. |
---|
2291 | ] |
---|
2292 | [use tahoe --version-and-path to facilitate diagnosis of setup bugs through the buildbot, and use a different regex to recognize the version part |
---|
2293 | zooko@zooko.com**20090129203042 |
---|
2294 | Ignore-this: bfc2dcf10cbb1f23c65112c76f3903d9 |
---|
2295 | ] |
---|
2296 | [reporter=bwverbose |
---|
2297 | zooko@zooko.com**20090120235716 |
---|
2298 | Ignore-this: d2f4c3f7c3eacd85d20e816ecfce368d |
---|
2299 | ] |
---|
2300 | [change name of figleaf step to test-figleaf |
---|
2301 | zooko@zooko.com**20090120225135 |
---|
2302 | Ignore-this: 419e1686a1895cca99360c81475a4179 |
---|
2303 | ] |
---|
2304 | [whitespace-cleanup |
---|
2305 | zooko@zooko.com**20090120203815 |
---|
2306 | Ignore-this: 72d42d95738a46499a6ad92db5d9577d |
---|
2307 | ] |
---|
2308 | [fix missing import |
---|
2309 | zooko@zooko.com**20090120203809 |
---|
2310 | Ignore-this: c6a17f2fa6f98cb1faf5c7ab23f292d |
---|
2311 | ] |
---|
2312 | [use GenFigleaf buildstep instead of makefile "make test-figleaf" |
---|
2313 | zooko@zooko.com**20090120201825 |
---|
2314 | Ignore-this: 86d68dc5e2d1cb732cc0d0714e305941 |
---|
2315 | ] |
---|
2316 | [add GenFigleaf buildstep |
---|
2317 | zooko@zooko.com**20090120201646 |
---|
2318 | Ignore-this: 469755eab6b045a12c3112fa61e6515c |
---|
2319 | ] |
---|
2320 | [see if workdir="." makes "darcs exact-version" stop failing just because the dir it wants to run in doesn't exist |
---|
2321 | zooko@zooko.com**20090120190939 |
---|
2322 | Ignore-this: a376b460bec2027be11c65b9c9b77812 |
---|
2323 | ] |
---|
2324 | [we can use standard python-distutils names "build" and "test" now instead of "build_tahoe" and "trial" |
---|
2325 | zooko@zooko.com**20090120183622 |
---|
2326 | Ignore-this: e99965cd01b8e90cc055feec18325f59 |
---|
2327 | ] |
---|
2328 | [dapper's easy_install is too old to install tahoe |
---|
2329 | zooko@zooko.com**20090120171032 |
---|
2330 | Ignore-this: b0ab3e6241e01e5793b714c421cb6d09 |
---|
2331 | ] |
---|
2332 | [explicitly indicate -darcs1format for old-fashioned-format repositories |
---|
2333 | zooko@zooko.com**20090120170952 |
---|
2334 | Ignore-this: a56c5ab4a8558be320e133a830306e84 |
---|
2335 | This is just an explicit indication of what we already do. There are symlinks on the servers mapping from "foo-darcs1format" to "foo". |
---|
2336 | ] |
---|
2337 | [fix bug with default value for "python" |
---|
2338 | zooko@zooko.com**20090120143935 |
---|
2339 | Ignore-this: 29dc9aa6168a8c218d957097385f65b4 |
---|
2340 | ] |
---|
2341 | [finish removing debugprint |
---|
2342 | zooko@zooko.com**20090120142703 |
---|
2343 | Ignore-this: b644c9774ff2faa7bfb6d55f9d7224d1 |
---|
2344 | ] |
---|
2345 | [rely on hasattr |
---|
2346 | zooko@zooko.com**20090120142533 |
---|
2347 | Ignore-this: aa21669bb9f17969c65e7168173700c0 |
---|
2348 | ] |
---|
2349 | [remove some debugprints |
---|
2350 | zooko@zooko.com**20090120142525 |
---|
2351 | Ignore-this: c31a3f9c04582758293576dff890ac33 |
---|
2352 | ] |
---|
2353 | [fix spelling of add-step-thing-halt-on-failure |
---|
2354 | zooko@zooko.com**20090120130639 |
---|
2355 | Ignore-this: 1c9c713e2f2268ff565a6ad43ff0805e |
---|
2356 | ] |
---|
2357 | [update names of things |
---|
2358 | zooko@zooko.com**20090120130633 |
---|
2359 | Ignore-this: 7aa6e37c5355718830da137c77b67153 |
---|
2360 | ] |
---|
2361 | [fix missing import |
---|
2362 | zooko@zooko.com**20090120125840 |
---|
2363 | Ignore-this: 92f520339f286fe0a2140ee2cc072723 |
---|
2364 | ] |
---|
2365 | [note XXX |
---|
2366 | zooko@zooko.com**20090120125830 |
---|
2367 | Ignore-this: dd51c603b2e751e6e1378d941a56e709 |
---|
2368 | ] |
---|
2369 | [configure edgy and cygwin not to try the "easy_install" step -- they don't have easy_install installed! |
---|
2370 | zooko@zooko.com**20090120050257 |
---|
2371 | Ignore-this: b8c503be76f485f25de41061665efabb |
---|
2372 | ] |
---|
2373 | [comment-out the TestEgg step -- it takes too long! (Also fails on Windows) |
---|
2374 | zooko@zooko.com**20090120050238 |
---|
2375 | Ignore-this: 5bb53cf3fe3ba5ff8c6d707fbbfa945d |
---|
2376 | ] |
---|
2377 | [add XXX comment about the TestEgg step |
---|
2378 | zooko@zooko.com**20090120050214 |
---|
2379 | Ignore-this: bda236c4fc2a84276ebffe445a6b2aad |
---|
2380 | ] |
---|
2381 | [the easy_install test have flunkOnFailure=false |
---|
2382 | zooko@zooko.com**20090120043701 |
---|
2383 | Ignore-this: 48feb1d3cbffe30d17f45fcdc9055ac5 |
---|
2384 | ] |
---|
2385 | [use the BuildTahoe step and the BuiltTest step *instead* of the "make build" and "make test" steps |
---|
2386 | zooko@zooko.com**20090120043259 |
---|
2387 | Ignore-this: c772ca5146382aa0849b35077c265851 |
---|
2388 | ] |
---|
2389 | [return the exit code from subprocess.call(), accept a 'python' kwarg for each BuildStep, move the mkdir of installdir inside the easy-install buildstep |
---|
2390 | zooko@zooko.com**20090120043255 |
---|
2391 | Ignore-this: 950525167b07cb8c23156cbda052a175 |
---|
2392 | |
---|
2393 | ] |
---|
2394 | [fix the regex to detect tahoe version in the output of tahoe --version |
---|
2395 | zooko@zooko.com**20090119212142 |
---|
2396 | Ignore-this: 2916f2747a8ed39b3b26ef97f029cffb |
---|
2397 | ] |
---|
2398 | [fix another place where self.tahoeversion might not have been defined |
---|
2399 | zooko@zooko.com**20090119212057 |
---|
2400 | Ignore-this: 37994891aea78601da61c395c7c1cd33 |
---|
2401 | ] |
---|
2402 | [add log files to the install test and test egg steps |
---|
2403 | zooko@zooko.com**20090119210719 |
---|
2404 | Ignore-this: fb238406940072f1eff47b0ca3e14033 |
---|
2405 | ] |
---|
2406 | [signal failure of the code-under-test by returning FAILURE |
---|
2407 | zooko@zooko.com**20090119024437 |
---|
2408 | Ignore-this: a3e4dd7a9440e09c4b348063b192df62 |
---|
2409 | ] |
---|
2410 | [try the install egg and test egg on all slaves |
---|
2411 | zooko@zooko.com**20090117003201 |
---|
2412 | Ignore-this: 854427684ab3a7ffd267072ff698a4e4 |
---|
2413 | ] |
---|
2414 | [making InstallEgg and TestEgg buildsteps os-independent |
---|
2415 | cgalvan@mail.utexas.edu**20090116214401] |
---|
2416 | [fix os-independent tahoe-version step |
---|
2417 | cgalvan@mail.utexas.edu**20090114204312] |
---|
2418 | [os-independent tahoe version check |
---|
2419 | cgalvan@mail.utexas.edu**20090114200930] |
---|
2420 | [put back install-egg and test-egg, but only for gutsy (already passes) and hardy (seems like a good next step since it is the successor to gutsy and it is a very important deployment platform because it is the Ubuntu LTS) |
---|
2421 | zooko@zooko.com**20090106024941 |
---|
2422 | Ignore-this: d401fc0427dbc481a27756c4283a83e3 |
---|
2423 | ] |
---|
2424 | [temporarily comment-out the addition of InstallEgg() and TestEgg() build steps |
---|
2425 | zooko@zooko.com**20090106024424 |
---|
2426 | Ignore-this: 83a571dc8d2d979b2e4bc1f8ef2c8a36 |
---|
2427 | ] |
---|
2428 | [fix_test_egg_pythonpath |
---|
2429 | cgalvan@mail.utexas.edu**20090105194359 |
---|
2430 | Ignore-this: b3eb0d3b290a4d47b32350cd77ddc3f8 |
---|
2431 | ] |
---|
2432 | [fix_tahoe_pythonpath |
---|
2433 | cgalvan@mail.utexas.edu**20090105181617 |
---|
2434 | Ignore-this: cc357500d8ac25c7d0df17015467d043 |
---|
2435 | ] |
---|
2436 | [prepend_pythonpath_trial |
---|
2437 | cgalvan@mail.utexas.edu**20090104194945 |
---|
2438 | Ignore-this: 6d853ba61bf607d2a1b0de77a2da5b |
---|
2439 | ] |
---|
2440 | [more_install_tests.patch |
---|
2441 | cgalvan@mail.utexas.edu**20090104190210 |
---|
2442 | Ignore-this: 62207b01b3f0af9eaa9e249b64a547ca |
---|
2443 | ] |
---|
2444 | [allow unauthenticated users to press the "force build" button |
---|
2445 | zooko@zooko.com**20090104185457 |
---|
2446 | Ignore-this: bc11cfcfba7008c03ded334c3848c3a5 |
---|
2447 | I need to let Chris Galvan do this for himself so I can spend my time on repairer instead of build and test automation. |
---|
2448 | See also http://buildbot.net/trac/ticket/252 (side-effecty operations (Force Builder) should be POSTs) which would make it so that only users who've authenticated with apache can press that button. |
---|
2449 | ] |
---|
2450 | [import zfec into fresh start darcs-2 repo |
---|
2451 | zooko**20090104185146 |
---|
2452 | Ignore-this: a4fc665e4a87e5fd3b42cc9ff681642 |
---|
2453 | ] |
---|
2454 | [import tahoe-w32-client into new fresh start darcs-2 repo |
---|
2455 | zooko**20090104185058 |
---|
2456 | Ignore-this: 9271988491c5120ef71caeee29449458 |
---|
2457 | ] |
---|
2458 | [import pycryptopp config into fresh start darcs-2 repo |
---|
2459 | zooko**20090104184940 |
---|
2460 | Ignore-this: 53df70ce974922e3838eb3bd79bb770 |
---|
2461 | ] |
---|
2462 | [SECRETS SECRETS SECRETS -- do not push to publicly readable repository |
---|
2463 | zooko@zooko.com**20090102204312 |
---|
2464 | Ignore-this: 3b0994c22d413f68bd418f1991c655bf |
---|
2465 | passwords |
---|
2466 | ] |
---|
2467 | [test_install_step.patch |
---|
2468 | cgalvan@mail.utexas.edu**20090103182105 |
---|
2469 | Ignore-this: 8c70abfe2973d968e5d50b51c2576330 |
---|
2470 | ] |
---|
2471 | [bbsupport |
---|
2472 | zooko@zooko.com**20090102215025 |
---|
2473 | Ignore-this: d3e620870d722d7099cc7b506eeb05c3 |
---|
2474 | ] |
---|
2475 | [current buildbot config on 2009-01-02 |
---|
2476 | zooko@zooko.com**20090102204426 |
---|
2477 | Ignore-this: e84fa2f11e4961d599cc30d398a81d24 |
---|
2478 | ] |
---|
2479 | [tahoe dir |
---|
2480 | zooko@zooko.com**20090102204256 |
---|
2481 | Ignore-this: 44c7b8b34ab372433bc37d51a28e4d8f |
---|
2482 | ] |
---|
2483 | Patch bundle hash: |
---|
2484 | f6c7533a4c03dff042d147f074b4f4655daea8fc |
---|