2 patches for repository d:/tahoe/buildconfig/trunkcopy: Fri Oct 29 02:06:23 GMT Daylight Time 2010 david-sarah@jacaranda.org * tahoe/bbgeneral.py: mark the overall build as having warnings if the test-from-egg or test-from-prefixdir steps fail or warn Fri Oct 29 03:46:15 GMT Daylight Time 2010 david-sarah@jacaranda.org * tahoe/bbgeneral.py, bbsupport.py: add test-with-fake-pkg step New patches: [tahoe/bbgeneral.py: mark the overall build as having warnings if the test-from-egg or test-from-prefixdir steps fail or warn david-sarah@jacaranda.org**20101029010623 Ignore-this: 4811e6c094c756eddc6f040ba909f46 ] hunk ./tahoe/bbgeneral.py 107 f.addStep(InstallToEgg()) if do_test_from_egg: # The following step isn't done on all builders because our tests take too long to run. - f.addStep(TestFromEgg(testsuite='allmydata.test', flunkOnFailure=False)) + f.addStep(TestFromEgg(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) if do_install_to_prefixdir: f.addStep(InstallToPrefixDir()) hunk ./tahoe/bbgeneral.py 113 # 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. if do_test_from_prefixdir: - f.addStep(TestFromPrefixDir(testsuite='allmydata.test', flunkOnFailure=False)) + f.addStep(TestFromPrefixDir(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) if build_windows_exe: exe_command = [MAKE, "windows-installer"] [tahoe/bbgeneral.py, bbsupport.py: add test-with-fake-pkg step david-sarah@jacaranda.org**20101029024615 Ignore-this: e9548eb5fcb82915567ea329d5489ada ] hunk ./bbsupport.py 163 for t in tests]) + "\n" self.addCompleteLog("timings", timings) +class TestWithFakePkg(PythonCommand): + """ + Step to run a subset of the Tahoe-LAFS tests with a fake package (that has a lower than + required version number) on the PYTHONPATH, to see whether the build system incorrectly + uses that package rather than the real one with the correct version number. + See . + """ + flunkOnFailure = True + description = ["test-with-fake-pkg"] + name = "test-with-fake-pkg" + logfiles = {"test.log": "src/_trial_temp/test.log"} + python_command = ["misc/build_helpers/test-with-fake-pkg.py"] + class UploadTarballs(ShellCommand): """ Invoke "make tarballs" with an env var to tell it what branch. hunk ./tahoe/bbgeneral.py 71 do_pyflakes_linecounts=False, python=None, build_windows_exe=False, build_mac_app=False, upload_dmg_furlfile=None, - do_gridchecks=[], do_install_to_egg=False, do_test_from_egg=False, do_install_to_prefixdir=False, do_test_from_prefixdir=False, + 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, MAKE='make', TAR='tar', testtimeout=7200): hunk ./tahoe/bbgeneral.py 94 else: f.addStep(BuiltTest(python=python, haltOnFailure=True, timeout=testtimeout)) # do not build packages if tests fail + if do_test_with_fake_pkg: + f.addStep(TestWithFakePkg(python=python, warnOnWarnings=True, flunkOnFailure=False, timeout=testtimeout)) + for (name, clientdir) in do_gridchecks: checkcommand = [MAKE, "check-grid", "TESTCLIENTDIR=%s" % clientdir] f.addStep(ShellCommand(command=checkcommand, haltOnFailure=True, hunk ./tahoe/bbgeneral.py 110 f.addStep(InstallToEgg()) if do_test_from_egg: # The following step isn't done on all builders because our tests take too long to run. - f.addStep(TestFromEgg(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) + f.addStep(TestFromEgg(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False, timeout=testtimeout)) if do_install_to_prefixdir: f.addStep(InstallToPrefixDir()) hunk ./tahoe/bbgeneral.py 116 # 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. if do_test_from_prefixdir: - f.addStep(TestFromPrefixDir(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False)) + f.addStep(TestFromPrefixDir(testsuite='allmydata.test', warnOnWarnings=True, flunkOnFailure=False, timeout=testtimeout)) if build_windows_exe: exe_command = [MAKE, "windows-installer"] Context: [comment-out test-from on mm zooko@zooko.com**20100923013333 Ignore-this: c605cb67be0bccc7466aa9887fc7aa23 ] [set the overall test step timeout higher for fdz's ARM system zooko@zooko.com**20100922204930 Ignore-this: 5e15c6e5884d4091ce9a9e0cfd27200 ] [disable test-from-foo on kyle's zooko@zooko.com**20100922182808 Ignore-this: d881166d44021cb24f8c293d43a4ff8d ] [attempt to turn on real upload of .deb's for tahoe-lafs zooko@zooko.com**20100922122603 Ignore-this: bb83e0a576925c1a36825ed467bc1bf7 ] [demote FranXois arm zooko@zooko.com**20100922121951 Ignore-this: 1808b2d7415cdaa4616455f74fa52168 ] [rename deb-lenny-i386 to deb-lenny-i386-arthur zooko@zooko.com**20100922121628 Ignore-this: 2c8f9ad2b13881d2e4ce637f27c494f9 ] [add egg zooko**20100922121907 Ignore-this: 9a023e61839fd8cbaf2462aaa2be2e9c ] [turn off some more test-from-foo's zooko@zooko.com**20100922064531 Ignore-this: f3e9c209e01bf437c18f12d55ae22f2c ] [zfec: turn off test-from-prefixdir on ruben's zooko@zooko.com**20100922061951 Ignore-this: 3af856ca273a31844ca15496e5432d9 ] [turn off test-from-egg and test-from-prefix on machines where those tests fail due to a bug in setuptools/distribute zooko@zooko.com**20100922052925 Ignore-this: 215f756601f48200e56267e6f5856446 ] [promote ruben's fedora zooko@zooko.com**20100922051602 Ignore-this: ac6d9b56854f3351c3de1eaa4a0d9730 ] [promote FreeStorm's CentOS zooko@zooko.com**20100922044559 Ignore-this: c284749db277cd2ff5338654073b9872 ] [don't upload deb from both arthur's and arthur's syslib zooko@zooko.com**20100922043809 Ignore-this: e12580570e67151dd7c12b54d9636e27 ] [mark Soultcer's as no-compiler zooko@zooko.com**20100922042603 Ignore-this: 355f54175b99862b46544b0f675908bb ] [promote FranXois's armv5tel zooko@zooko.com**20100922042336 Ignore-this: 63a7eed552c862f338a810b20e1da70c ] [fieldcircus is lucid now zooko@zooko.com**20100922041518 Ignore-this: dbc9f53e46084f11e3cecba00308479f ] [re-promote Arthur's buildslave since it is back zooko@zooko.com**20100922041507 Ignore-this: f58c309ad16c20d459c7a19144622eae ] [fix detection of platform string zooko@zooko.com**20100921071520 Ignore-this: 6c27f7e1f626fc3bcf3e31c044ea60e8 ] [demote arthur's due to disconnectedness zooko@zooko.com**20100921071010 Ignore-this: 64996eab47c231c91e57a9b213866ff6 ] [fix cutnpasto zooko**20100921070825 Ignore-this: 174917f9cc4c2ca2df88d90fb09b5f75 ] [show platform in waterfall zooko@zooko.com**20100921062252 Ignore-this: f676618884eb8775ad9603ff33a0f2a6 ] [zfec: rename Brian's linode from amd64 to i386 zooko@zooko.com**20100920224856 Ignore-this: c029e4bd3effd6bcd4aede48ef2a3f23 ] [tahoe-lafs: rename Brian's linode from amd64 to i386 zooko@zooko.com**20100920224841 Ignore-this: b49f3a331dd295ea49a814faf5c27d9d ] [pycryptopp: rename Brian's linode from amd64 to i386 zooko@zooko.com**20100920224830 Ignore-this: eadac537413599c3e05944acaac610e6 ] [Ocypete upload egg zooko@zooko.com**20100919073212 Ignore-this: 36c8639838b2a01c1ea4b9642bf2122e ] [remove syslib from zfec zooko@zooko.com**20100919071900 Ignore-this: eb62a9fe5906d04a6afa49a7b9956f46 ] [Ocypete for zfec zooko@zooko.com**20100919070152 Ignore-this: f78d8ab4cc4700d43ab4edc4899f86c ] [Ocypete tahoe-lafs secrets zooko@zooko.com**20100919070128 Ignore-this: 48d5388e50c37462f082f4c7365fca25 ] [add Ocypete for tahoe-lafs zooko@zooko.com**20100919070122 Ignore-this: 841884241fae044175c9ca1a3296c78b ] [add Ocypete for pycryptopp zooko@zooko.com**20100919070104 Ignore-this: 424a9ea73b8f19a5822688c575775f0c ] [fix names of steps zooko@zooko.com**20100919043941 Ignore-this: 36f9c6777612954aa96ea482d4d5a4ed ] [merge zooko@zooko.com**20100919013641 Ignore-this: a009dd1bab1e9fb767e7a6dc637bcdbb ] [merge zooko@zooko.com**20100919013220 Ignore-this: 3f9ef9f3b0706a5f68086ead744f83f1 ] [temporarily turn off code coverage zooko@zooko.com**20100919012507 Ignore-this: 82d4e0dd006770e723194efd6bae38bb ] [add commented-out call to invoke test-sha256 with valgrind zooko@zooko.com**20100919012015 Ignore-this: 7011b79f73326ebbdf8d6ee8d6f8c2d2 ] [add a bunch of upload-eggs zooko@zooko.com**20100905052851 Ignore-this: 8cae935a503ac2a54ec845af4886d87e ] [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 zooko@zooko.com**20100905041354 Ignore-this: 81546e641458dff184fc30febd54c80d ] [give nice descriptions to testdoubleload zooko@zooko.com**20100904195452 Ignore-this: e7b082ccb5bfa82ccec237a176a051a2 ] [turn on valgrind on FreeStorm's CentOS zooko@zooko.com**20100904193626 Ignore-this: be0900b7fa01842c02cc110bbf8d0a55 ] [test double load (gives glibc double free error on Ubuntu 64 bit) zooko@zooko.com**20100904162533 Ignore-this: 61bb626c55353a937e61d9f9399bfd2c ] [demote Ruben's because it just failed zooko@zooko.com**20100902210039 Ignore-this: 29600e8488e71d4334af6dfbb2360c9f ] [fix zfec for new parameterized TAR zooko**20100808150312 Ignore-this: d6cef9b0218df495ceea02e24aa74ec4 ] [decommission ootles zooko@zooko.com**20100808145445 Ignore-this: 6f819b981e2160fe9deb1820db3005f9 ] [fix bugs zooko**20100806064748 Ignore-this: ed44dc340ff13eef15b4437a41e87147 ] [promote FreeStorm WinXP-x86 py2.6 to Supported zooko@zooko.com**20100806064351 Ignore-this: 54638699f27134b2ac160721223bde06 ] [use gtar on *BSD zooko@zooko.com**20100806063811 Ignore-this: 38c738d44b68cc9ed624f8bf9e550cfd ] [remove broken lnk zooko@zooko.com**20100806061057 Ignore-this: 1fbc7ee3c37e17a73705489a3496f83f ] [turn off coverage on Ruben's zooko@zooko.com**20100806061043 Ignore-this: 3e85fe0c391949414934c6d45c9efcab ] [make test-from-egg and test-from-prefix nonfatal zooko@zooko.com**20100803150628 Ignore-this: 3c1166771c805eadfb6fb141ca3f4bef ] [don't stop coverage-generation even if "coverage html" returned non-zero zooko@zooko.com**20100803150429 Ignore-this: 35c9b4ca924d6e7f90de0624ec39809a ] [turn on cov on zomp for tahoe-lafs zooko@zooko.com**20100801183405 Ignore-this: a274e7b5e90d5d54e9fa624791a02681 ] [turn on coverage on ruben fedora zooko@zooko.com**20100801083159 Ignore-this: fe107b08e93da6b749266d3ee247dfef ] [full name zooko@zooko.com**20100801082352 Ignore-this: 476a147a5fdb36125d1484ac821e7261 ] [whee zooko@zooko.com**20100801081956 Ignore-this: 392f1600a3ffb647ce36551b436b18a0 ] [rename to no dot zooko@zooko.com**20100801075839 Ignore-this: 6e2ea2fee2e4f4dcd6ec82179c9927b8 ] [version number in cov arch fname zooko@zooko.com**20100801073127 Ignore-this: 7cec46215765944c91687e4cddca89f9 ] [fix typo zooko**20100801065346 Ignore-this: e07c97e6811a19da7ac06c6896d2c7de ] ["tar" -> "archive" and add furl args zooko@zooko.com**20100801065228 Ignore-this: 440d6b84a73ef16b21dc884ac773de79 ] [turn on zfec coverage on zomp zooko@zooko.com**20100801064446 Ignore-this: bea59220de82f3471decf9855b46a48f ] [fix workdir of zfec coverage zooko@zooko.com**20100801062721 Ignore-this: ecf2d486e0e164ee271d1201f99e3bc3 ] [turn on zfec coverage on ruben's zooko@zooko.com**20100801062516 Ignore-this: a8172d9285dd2c9980f36a11561b17aa ] [fix bugs in coverage for zfec zooko**20100801060554 Ignore-this: a6cf0055610e3775bc9a3b18e8124858 ] [code coverage for zfec zooko@zooko.com**20100801060226 Ignore-this: 92f76e65b7dc5db7be2b72e3680e10d2 ] [try new coverage upload features (probably incomplete) zooko@zooko.com**20100801055357 Ignore-this: a9e5454f5f1bbc4fa323f8b8b63c4627 ] [new freestorm box zfec zooko@zooko.com**20100728223707 Ignore-this: efc0b8327b2d1e18501508b22d60dd82 ] [new freestorm box pycryptopp zooko@zooko.com**20100728223650 Ignore-this: 1abfdec869263f5f21b8996b4e0b989c ] [freestorm-win7-64-mingw zooko@zooko.com**20100728223215 Ignore-this: 9eff06d651ea5e3bb3f843117949fcfd ] [fix missing detail of brian-linode zooko**20100726171736 Ignore-this: 6e45e8a6f09da2bf4bc8f071947ac8aa ] [brian linide zooko@zooko.com**20100726054124 Ignore-this: cb41d370719fe43a8143ad84dd80c96c ] [much simpler python version-and-path zooko@zooko.com**20100726052311 Ignore-this: d9475e2dd189b139d8b9076764f0f7ae ] [brian-linode zfec zooko@zooko.com**20100726051425 Ignore-this: 627d00ea2b1104ad0320bedec3fb6381 ] [missing piece zooko@zooko.com**20100726051414 Ignore-this: 7d713033ef1c75aa8537c9bc607195af ] [new style branching (zfec) zooko@zooko.com**20100726051301 Ignore-this: deb87ae92b63a5c6d4474834fa27336e ] [new style branching (pycryptopp) zooko@zooko.com**20100726050628 Ignore-this: e3beed6bd71723f63140cd460c6823e2 ] [add brian-linode (pycryptopp) zooko@zooko.com**20100726050615 Ignore-this: 5bf6d83857bdd0aca7702232780232ea ] [fix no-upload-non-trunk zooko@zooko.com**20100726044302 Ignore-this: 4750c1d3f8a01b303e765289d9ce8a26 ] [fix scheduler for any branch zooko**20100726040642 Ignore-this: 425068cf0f9462e9de7237bbe64b802a ] [simplify/fix upload-tarballs use of branch zooko@zooko.com**20100726024747 Ignore-this: a8b5e7c2213231ba31d5f457b9e2e761 ] [M-x whitespace-cleanup zooko@zooko.com**20100726022845 Ignore-this: 195132b0655c57466d33137f511ef2f5 ] [remove the machinery for old-style branches and the old "prod" and "server" branches zooko@zooko.com**20100726022616 Ignore-this: 1de7d4509de3875ffc0e799cb7791554 ] [make UploadTarballs a separate step so it will get "branch" set at runtime instead of setup time zooko@zooko.com**20100725193243 Ignore-this: 5636055e51a183ed05c94c24ff203314 ] [finish upping warp zooko@zooko.com**20100720225851 Ignore-this: fa5d494981492260dc9c23fe33299415 ] [upgrade warp zooko@zooko.com**20100720224555 Ignore-this: 13c0e808b41bd0dcc12801c2833eb0f3 ] [no more use_hashed_format zooko@zooko.com**20100718214927 Ignore-this: 32faf5e5254c3a84859afe52a13c7ede ] [fix Zomp html and promote Zomp to supported zooko@zooko.com**20100718201325 Ignore-this: 66d11d59b75405f3d5f0456915325bac ] [merge off-line and flakey zooko@zooko.com**20100718062522 Ignore-this: 9c7698ce211238e043155e21b1ce379a ] [promote Eugen lenny-amd64 to Supported zooko@zooko.com**20100718062355 Ignore-this: 211a5f0de02d85d69c141dfaaf7aed58 ] [new domain names zooko@zooko.com**20100718055528 Ignore-this: 9457a68e28118b76eae7653ffdc79955 ] [don't pass branch name on cmdline to gmake zooko@zooko.com**20100718055516 Ignore-this: c00634191fb68ad42196f44ed87efb22 ] [demote freestorm winxp due to offline zooko@zooko.com**20100718055314 Ignore-this: c49bf3190a8a04de4aec0cfac181d970 ] [remove clean from "supported" zooko**20100718011126 Ignore-this: e58773faade5b13afdfde75c3836e60c ] [set env BB_BRANCH zooko**20100718011104 Ignore-this: d5ae9ba11d3a589a5689ba0a1bdcab6 ] [fix the name of francois's builder zooko**20100718010935 Ignore-this: b317edda3bd90b9bf59e1c1a7021dd24 ] [change name of François's builder zooko@zooko.com**20100718010758 Ignore-this: f31ba2c84b82bd49b63f2d3c239a4744 ] [fix bug in html zooko@zooko.com**20100710185635 Ignore-this: 906fe9bab030b7a18d0231b4ed6c69e6 ] [add Windows waterfall to html, fix bug with FreeStorm CentOS zooko@zooko.com**20100710185451 Ignore-this: 2e40eb9b4ac7e7c8c22a258f0f1257a9 ] [add Randy's FreeBSD for zfec zooko@zooko.com**20100624223049 Ignore-this: fe1cc9a52ba2e27fe34e7a357c3b0d2 ] [add Randy's FreeBSD for pycryptopp zooko@zooko.com**20100624223033 Ignore-this: b4edf5be4c5f6645981f053a69991588 ] [add Randy Bush FreeBSD for Tahoe-LAFS zooko@zooko.com**20100624222456 Ignore-this: cbad5df39abc797fc16fa5ddb62440ad ] [secret for Randy Bush freebsd.psg zooko@zooko.com**20100624222445 Ignore-this: 6c157f002e0a854d013e258f64b08eb6 ] [tweak zomp congi zooko@zooko.com**20100609045338 Ignore-this: fa24eb350330d2261555d49adcea46c2 ] [fix typo zooko**20100609041829 Ignore-this: 26623f1bda2a416fe7d1b412027cd23f ] [add zomp zooko@zooko.com**20100609041617 Ignore-this: 91a75776753a31fe0f7538137afe150a ] [don't test from prefixdir on ruben's fedora zooko@zooko.com**20100609025718 Ignore-this: 7c4ab8c168d65aab5bde0e78341363f7 ] [don't test from prefixdir on opensolaris zooko@zooko.com**20100609015223 Ignore-this: b2d8400c69e7ee0c467e293c05ebfe62 ] [don't try to test from prefixdir or from egg on CentOS py2.4 zooko@zooko.com**20100609012900 Ignore-this: 6e6b9d62e2ce83b29ea52b6772a5cb81 ] [whoops Shawn jaunty was still in "supported" schedule zooko@zooko.com**20100608155313 Ignore-this: 14332dcdfa3e2eacd5452dd5486bd17d ] [freestorm centos zfec zooko@zooko.com**20100608143551 Ignore-this: ffe5fe8d703964b3dd5867f93808c6e1 ] [freestorm centos zooko@zooko.com**20100608143541 Ignore-this: cfc2fc3725ad00e7567b025e13f7933f ] [demote MM's slave due to flakiness zooko@zooko.com**20100608142946 Ignore-this: 53e720b13ec0b59fc2b333ccb39c273 ] [FS CentOS zooko@zooko.com**20100608142646 Ignore-this: 247b718917006a4ef94d29d7fe47eb2e ] [darcs v2 on all machines !! zooko@zooko.com**20100608054245 Ignore-this: dd705582f14d1e3b905b2bbee9aaeb85 ] [the last bugfix zooko@zooko.com**20100608053643 Ignore-this: ec16bd24b4fd738f55f3b83da6d00de7 ] [use fixes for zfec zooko@zooko.com**20100608053348 Ignore-this: 9e123b67e831d52b181e0c3d253b7345 ] [fixes zooko@zooko.com**20100608053315 Ignore-this: 3250a22c284b3b83b947c4fcc82995af ] [try to parameterize srcbase sep from buildbase and from installbase zooko@zooko.com**20100608052800 Ignore-this: de92c7e48854c9211149c8fa2fe25029 ] [demote ashton.laval zooko@zooko.com**20100608050320 Ignore-this: 6ffd53bb5b9856f2e549d443ecc1dca1 ] [untested attempt to make egginstalldir and prefixinstalldir parameterizable and to parameterize them appropriately for zfec zooko@zooko.com**20100608050225 Ignore-this: f971303aea21b3b37cf9c5fb7a900270 ] [promote David OpenSolaris, Ruben Fedora, and FreeStorm, WinXP to Supported! zooko@zooko.com**20100608043554 Ignore-this: 29a81a8bb45e678088f93ed13ba7422e ] [fix tabs zooko@zooko.com**20100607214028 Ignore-this: 801dea6f229569979ae5698fa517e76e ] [add MM zooko@zooko.com**20100607214022 Ignore-this: 49ad8808c7ad9eb5a563cc8038cb7b44 ] [invoke stdeb new way zooko@zooko.com**20100607114220 Ignore-this: afa4798e9faaa7a9f63019f3a99a5361 ] [valgrind path zooko@zooko.com**20100607064200 Ignore-this: a7df0f0faf99aa576642f4d56253cf3c ] [run_trial has moved zooko@zooko.com**20100607062558 Ignore-this: ba62dc16fb206929fe5784011d44875a ] [don't upload tarballs of branches zooko@zooko.com**20100607052916 Ignore-this: f9f540cf141f81cb906987afa366e43 ] [accomodate new reorg of misc/ zooko@zooko.com**20100607052634 Ignore-this: 8cf8a846f073648934c381bb4bc1ae28 ] ["clean" builder is supported again zooko@zooko.com**20100606181704 Ignore-this: f4bacb658875e2687b72aaa6b6189a53 ] ['pported zooko@zooko.com**20100604052640 Ignore-this: b022fab6364110450259bb145c4048d3 ] [demote ootles to flakey, finish demoting eugen lenny zooko@zooko.com**20100604045544 Ignore-this: 851fe38425d18ee8e8d0b60e06832779 ] [demote OpenSolaris and Lenny-amd64 until they reconnectv zooko@zooko.com**20100604040225 Ignore-this: 24b9966da465834b82bdc71480773596 ] [don't run pyflakes on all builders zooko@zooko.com**20100603221111 Ignore-this: 783cdf2d8e057a3984fd506bb7208618 ] [fix bug zooko**20100603191947 Ignore-this: f4bfd6b48ef83db9df0363019bf3b922 ] [detect win32 correctly zooko@zooko.com**20100603191736 Ignore-this: f4b232084eeb8b757af6a2c45bafdf58 ] [allmydata.org -> tahoe-lafs.org zooko@zooko.com**20100603060856 Ignore-this: 257713e626162b9d1eece5e6fec91a03 ] [turn off test_from_prefixdir on neju's for zfec zooko@zooko.com**20100603055438 Ignore-this: e638633bff8808edc3c3e2ceb9b7a09c ] [turn off test_from_prefixdir on neju's zooko@zooko.com**20100603055426 Ignore-this: fc3a266411d1f51e7494f945a7f53204 ] [fix bugs in nooxie zfec zooko**20100603053540 Ignore-this: a8b5049de893cc47acacec8cf2a3115d ] [put nooxie back in rotation zfec zooko@zooko.com**20100603053011 Ignore-this: 4d9e3778564c337662ec410bc59744d3 ] [put nooxie back in rotation pycryptopp zooko@zooko.com**20100603052959 Ignore-this: 13a1fec6486689ed7f6aaf8fa84c673d ] [schedule MM on pycryptopp buildmaster zooko@zooko.com**20100601051914 Ignore-this: 2eedbae21980a3e3630cb0df7139f1f2 ] [remove zfec working dir from pycryptopp buildmaster config zooko@zooko.com**20100601045240 Ignore-this: 311e4c34d88e6dd267d1d7ba642c27bc ] [fix the last bug zooko@zooko.com**20100524090826 Ignore-this: 85e4ebab2970cb1b603b013d6d7d21b2 ] [fixety fix zooko**20100524085817 Ignore-this: 7f974e9c13dc4274339daf99f7657972 ] [bugfix zooko**20100524084511 Ignore-this: c6ccd6caa64a593352a9a042ad89c98c ] [fix bug? zooko@zooko.com**20100524083834 Ignore-this: 6fd5c4a39153a1cc650cce18ba81c8bd ] [fix bug zooko@zooko.com**20100524080949 Ignore-this: 3b5df174b95c6c799cdeab2350c9af76 ] [specialize testsuite name "allmydata.test" for from-egg-test zooko@zooko.com**20100524080305 Ignore-this: 9d948edf77e5098877b93083a5efdca7 ] [fix bugs zooko**20100524072522 Ignore-this: 66a7e2b24272a692419febf2807b7979 ] [pass specific testsuite name for tahoe-lafs zooko@zooko.com**20100524071102 Ignore-this: 354a4d5527d04d3514db60e18ee9fa30 ] [zfec: osol doesn't do from-prefix since it doesn't have pyutil installed zooko@zooko.com**20100524060604 Ignore-this: 499d19ae4330fb55f6560e08d6665500 ] [fix bug in new from-prefix-install test zooko@zooko.com**20100524012845 Ignore-this: d73682da0ccda1883b44c2991a8441f3 ] [revamp install to prefixdir and test from prefixdir zooko@zooko.com**20100524005948 Ignore-this: 213e1d0365160e58ffd565108af8a7d4 ] [fix bug in executing run_trial.py zooko@zooko.com**20100523233952 Ignore-this: 5f74048be3cb86765f15f0afcd3c44f0 ] [use misc/find_trial.py instead of 'trial' zooko@zooko.com**20100523221507 Ignore-this: 508ddc0ab11f3e7f0b1f05232ae32de4 ] [add MM pycryptopp zooko@zooko.com**20100523203146 Ignore-this: 8da3f4fe22882c4254392d5b6c0e372e ] [run the tests for your package, not the tests for the "allmydata" package zooko@zooko.com**20100522185318 Ignore-this: c8d394870be4669307497f38a7ef8dd1 ] [add higher timeouts for compiling things that might involve compiling pycryptopp that can take longer than 1200 seconds with no output zooko@zooko.com**20100521224653 Ignore-this: af02decfe6d480e2903c9ef567d925a2 ] [if two hours elapse with no new data on stdout/stderr then kill the builder process zooko@zooko.com**20100521114626 Ignore-this: 3072f93b7bd65235b42044560eb4f865 ] [new URL base zooko@zooko.com**20100520051030 Ignore-this: 87347b7d8785e2de3f5d3f17b9e5c082 ] [fix typo zooko@zooko.com**20100520040954 Ignore-this: aaa04b513f612ee4cdb9176e81467375 ] [use the misc/run_trial.py script -- Brian's idea, FreeStorm's patch zooko@zooko.com**20100520034039 Ignore-this: dbc9e1740d1d62ac61cd6d68d3315e7f ] [fix typo zooko**20100515191258 Ignore-this: f7a5ebf862c4cfaeeb2eb0d148ef8af9 ] [tweakety zooko@zooko.com**20100510062830 Ignore-this: fd6a19c91e3adbadbb2a697489666b50 ] [hopefully fix bug in run-test-from-egg-inst-dir zooko@zooko.com**20100510060944 Ignore-this: 8e5d88753b9cd8b0e509010586df18eb ] [more better tests of installation and running unit tests from installations zooko@zooko.com**20100510060024 Ignore-this: d064bf7cd3595cf2c318e00d2703a125 ] [fix test-from-egg add install-to-prefixdir and test-from-prefixdir, turn it on on several buildslaves, add coverage on ootles zooko@zooko.com**20100510055700 Ignore-this: 6a27ab20e55c38f7b1e636a4f4337572 ] [fix (?) build scheduler zooko@zooko.com**20100510044538 Ignore-this: 8eb21f093d0884f014b0ab25907fec6d ] [add coverage.py and trialcoverage to the set of tools whose versions get reported zooko@zooko.com**20100510043830 Ignore-this: 403644df5feff988154fcad2599edc89 ] [greatly raise timeouts to see if MM's NetBSD can succeed given enough time zooko@zooko.com**20100507133829 Ignore-this: b8e2ef90a97cd192993d8161752f3297 Got exception invoking 'cl': [Errno 2] No such file or directory platform: NetBSD-4.0_STABLE-i386-32bit-ELF python: 2.5.2 (r252:60911, Mar 20 2009, 14:00:07) [GCC 4.1.2 20060628 prerelease (NetBSD nb2 20060711)], maxunicode: 65535 setuptools: [setuptools 0.6c9 (/usr/pkg/lib/python2.5/site-packages/setuptools-0.6c9-py2.5.egg)] buildbot: Buildbot version: 0.7.10p1 Twisted version: 8.1.0 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. 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. 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'. ] [add dcoder to zfec and pycryptopp zooko@zooko.com**20100505040704 Ignore-this: 8d6c84ff6a01327c282d3843e523cb60 ] [add decoder, fix omission of some items from packaging waterfall zooko@zooko.com**20100505032808 Ignore-this: 17494a20239d50ac52f3f7941f9a173d ] [dcoder secrets zooko@zooko.com**20100505032750 Ignore-this: 99738035995905d6ce5d905be45eb051 ] [bump up timeout zooko@zooko.com**20100505032310 Ignore-this: b2ea8c95d6d4f82b6f37241dfba49347 ] [more information about setuptools variants zooko@zooko.com**20100504095335 Ignore-this: 9d98fe67e67f9d758fae2c940ec9b99c ] [fix recent patch for gmake on bsd zooko**20100504094057 Ignore-this: 89e7fcd98940696c8ca30936129cf9ae ] [fix bugs caught by bb 0.7.12 zooko**20100504094044 Ignore-this: 4a01fffadb8e617d0b79d686a6e24565 ] [passs MAKE so it can be gmake on bsd zooko@zooko.com**20100504090506 Ignore-this: 53420678cc77e4a94bc7f8dcd39fb7bb ] [figleaf -> coverage zooko@zooko.com**20100504084723 Ignore-this: 86819b8eef3ddac0215c249a082c2f35 ] [remove francois-qemu-armv5tejl secrets zooko@zooko.com**20100504082313 Ignore-this: a122030407db0fd55e168355ea8b9705 ] [remove francois-qemu-armv5tejl zooko@zooko.com**20100504082256 Ignore-this: 2b24416b8a1beff29c7bcac5759da1be ] [invoke 'make' as 'gmake' on OpenBSD zooko@zooko.com**20100504052644 Ignore-this: 58ab2256d0c5fba7272b230a45833cba ] [memtest-64 is not a support platform. tahoe-lafs.org zooko@zooko.com**20100502045604 Ignore-this: df560b68b5aec913daeb31713ce62e75 ] [remove a lot of dead builders zooko@zooko.com**20100502045008 Ignore-this: f6c18e692c677661b27a802e1287296d ] [comment-out builders currently known to be busted zooko@zooko.com**20100502044950 Ignore-this: c1f7f7518a3acf59af0da2b39acb7aa0 ] [cross link buildbot web pages zooko@zooko.com**20100502043901 Ignore-this: a79dae8f27012e73c5815fe93bf7a481 ] [allmydata.org -> tahoe-lafs.org in pycryptopp zooko@zooko.com**20100502043011 Ignore-this: bbc28537f37f812e1270455d6fe1e076 ] [add Soultcer win7amd64 to pycryptopp zooko@zooko.com**20100502042959 Ignore-this: 4b5104158fbd7ce17720017a2a7c63e0 ] [remove more dead builders from the right list zooko@zooko.com**20100502042152 Ignore-this: 130085dcda148a3694bb27d39c4c369 ] [remove a lot of dead builders zooko@zooko.com**20100502042005 Ignore-this: c7f8274d72a3750f1f248c327a49d693 ] [Tahoe->Tahoe-LAFS zooko@zooko.com**20100502034912 Ignore-this: 590240592ce6924668d398c745eb1735 ] [fix whitespace zooko@zooko.com**20100502034900 Ignore-this: c5fe464a4badb097f354fe92f412310a ] [pycryptopp: add FreeStorm zooko@zooko.com**20100502033720 Ignore-this: 45467bb73765ba616b2d219fdc1c9068 ] [add soultcer's secrets zooko@zooko.com**20100502031340 Ignore-this: aa3bf8f3aba67d602b75c516500f62ba ] [add Soultcer Win7-64 py2.6 zooko@zooko.com**20100502031239 Ignore-this: df657d92c5a6d33af0fa4f26b7ca7533 ] [add ludo to index.html; remove some dead debs from index.html, edit text re: Policy and Nix zooko@zooko.com**20100502021005 Ignore-this: 66bab82692b1621968b8b9837c14300 ] [fix typo in previous secrets pattch zooko**20100502020304 Ignore-this: aaa35c8d184ac82ad5836a8d279acd97 ] [add freestorm-winxp, remove a lot of builders linked from index.html but long gone zooko@zooko.com**20100502015913 Ignore-this: 2bae43f00e977ea6b69504e7ceb13fa7 ] [add freestorm password secret zooko@zooko.com**20100502013456 Ignore-this: fc00eb42dff7b0cd438855e704c804d2 ] [fix bugs in previous patch zooko**20100502013440 Ignore-this: 9fcd1d93fa3fe3f4480d2eeb18e99532 ] [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 zooko@zooko.com**20100502004032 Ignore-this: 10b82ac85c164103821a20d8310732f2 ] [fix the patch to remove dead builders zooko**20100501183708 Ignore-this: e2896aab694ab4bd9cb2d2adac6c15af ] [remove a bunch of dead or dormant builders zooko@zooko.com**20100501181405 Ignore-this: 6e700d194d6abecce00b8277cf52bcc8 ] [add FreeStorm windows-mingw32-py26 zooko@zooko.com**20100501171234 Ignore-this: 65d0e20d1952d7cbc6de0948a8b0847e ] [marcus and neju upload binary eggs for zfec zooko@zooko.com**20100207184156 Ignore-this: 97603f5e06b12639cb87734919bb260 ] [marcus and neju upload binary eggs for pycryptopp zooko@zooko.com**20100207184145 Ignore-this: 2ffe81ec0fdf166efc3f9aec844996cb ] [fix zooko**20100206232107 Ignore-this: 4cdadaa2030a4135e14da54fe08d4300 ] [fix names of neju and marcus builders zooko@zooko.com**20100206231855 Ignore-this: 56fead55abe4f27fecd4cc2e84a4a359 ] [XXX zooko@zooko.com**20100206230256 Ignore-this: c72e7965235e6effdf79e78409298e1b ] [oops zooko**20100206230257 Ignore-this: 9bf9d3ada9d888217741ac095e109130 ] [add neju and marcus osx zooko@zooko.com**20100206230122 Ignore-this: 249e3e037a578332ce23c180e4e1fb3d ] [add fiona rename neju to py2.5 zooko@zooko.com**20100206225139 Ignore-this: a02e27b957bd97c762021c4f4591f83a ] [add fiona rename neju to py2.5 zooko@zooko.com**20100206225123 Ignore-this: a3d2b1ab2fbd7c1d04fa371b97d14159 ] [fix comment zooko@zooko.com**20100206224350 Ignore-this: 74972f594c9bf041ad4c0b929f09175d ] [add ashton.laval for pycryptopp zooko@zooko.com**20100206224332 Ignore-this: 5d9b5d5c715e9d339364f091fa8b461b ] [add ashton.laval zooko@zooko.com**20100206222744 Ignore-this: 336f90d095b2309ed31f8c87f5567d50 ] [fix links to François on html zooko@zooko.com**20100113170640 Ignore-this: beb764cde4312abeb1637558fb5125b1 ] [buildbot confused by unicode buildslavenames zooko**20100113170621 Ignore-this: 134bad01f076e93ce84767f8c1b75b08 ] [add Ludo Nixos zooko@zooko.com**20100113165432 Ignore-this: b55ddf8677bf449d6ecf5fe61966029d ] [mark as unicode strings which contain François's name, also replace 'ç' with 'X' for now zooko@zooko.com**20100113165402 Ignore-this: 297db2ed9a9846ffbeee71adbb2a57a7 ] [mark strings containing François's name as unicode zooko@zooko.com**20100113164050 Ignore-this: 711872b1fefe2a587ef4cbd1d85c27e6 ] [add ludo's nixos builer! zooko@zooko.com**20100113164042 Ignore-this: 3c7527688c99933b2c1531c557c5d1ae ] [pycryptopp: Mac builder should upload egg zooko@zooko.com**20100113164025 Ignore-this: 31d46f0b7c1538ce380e4beff6782e80 ] [pycryptopp: remove redundant, probably wrongly-used param named "upload_eggs" in favor of the one named "upload_egg" zooko@zooko.com**20100113163944 Ignore-this: a932fb8e96dc00bd2a6ac3594d2d0cf2 ] [raise timeout on stdeb (the little ARM box of François timed out) zooko@zooko.com**20100110235646 Ignore-this: 85b9f59226e7c186785beee5b0aa58e7 ] [pycryptopp: goodbye gutsy zooko@zooko.com**20100110235356 Ignore-this: a2c6bdcf6ee643e83b2522aaf61cc022 ] [remove deb-gutsy, remove deb-edgy and deb-feisty, merge conflicts, put speeds on the right Unsupported lis zooko@zooko.com**20100110181816 Ignore-this: c9fcf4ff9a94789401df4b4bdbf766bc ] [merge conflict and fix mistakes in demoting of edgy, feisty, and speeds zooko@zooko.com**20100110181447 Ignore-this: 691db303f97c6d0d21c15b4ebd7d4d41 ] [demote edgy and feisty zooko@zooko.com**20100110180950 Ignore-this: bd430dcaac2f91fd9b4de413f15ab1cb 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. ] [demote speed builders from Supported zooko@zooko.com**20100110053754 Ignore-this: a0b869b144756000d8cab4b6a6862748 ] [failing to push figleaf is also okay zooko@zooko.com**20100109195053 Ignore-this: 929d8caf4d9a8f044dcb4fbdea8443d9 ] [dont flunk on figl fail zooko@zooko.com**20100109175427 Ignore-this: f68e0bb6faf83c78632d5be2d89c36ac ] [mac-cleanup -- another step that can fail :-( zooko@zooko.com**20100109054423 Ignore-this: 875b8758b4e1b00495df297eeb854603 ] [fix wrong type of name zooko**20100109052910 Ignore-this: 74a5894122037dc7311e2f9524ee428e ] [move the tarballs builder from gutsy slave (gone) to yukyuk zooko@zooko.com**20100109052805 Ignore-this: 22ee32aa150dee04ad5b340c06ac2853 ] [let the mac_exe step fail without marking the builder as red. :-( zooko@zooko.com**20100109052146 Ignore-this: d2835a67d2c4e394905e3d12e2e85f1f ] [promote "Kyle OpenBSD-4.6 amd64" to Supported zooko@zooko.com**20100109051634 Ignore-this: 9559f130ea05b1c0a1a656fb0d4a94be ] [fix typo which hid ootles from the Supported web page view zooko@zooko.com**20100109051559 Ignore-this: 46d9dc8e85a1cd8af956ad635a36205c ] [promote "David A. OpenSolaris i386" to Supported zooko@zooko.com**20100109051540 Ignore-this: 4494f61258ec3458000102b7c1915eae ] [rename "solaris" builder to "Zooko Nexenta-amd64" zooko@zooko.com**20100109051410 Ignore-this: a824fce7cd931f7a3d467e08a9a7d6b4 ] [demote nooxie to unsupported, just cause it is offline zooko@zooko.com**20100109051245 Ignore-this: 41cee9697ea1e41f229c24d6d08c49ec ] [add cryptest.exe to show-tools parser zooko@zooko.com**20091223232015 Ignore-this: a4bd3b69fe55cae3733923226f3af00e ] [fix two typos in addition of François's ARM-in-qemu zooko**20091217191217 Ignore-this: 7083782ba6a3649d1a684bf4b0348410 ] [fix typo in addition of François's new ARM-in-qemu to pycryptopp zooko**20091217191102 Ignore-this: 47621ab426187b973003f162caf71d6c ] [add François's new ARM-in-qemu to zfec zooko@zooko.com**20091217190955 Ignore-this: 65c3a05c4773c7e48e03a998824c9c4e ] [add François's new ARM-in-qemu to pycryptopp zooko@zooko.com**20091217190939 Ignore-this: c8c6a2418e2b2cf025548e99da5ed2a5 ] [fix edit-o zooko@zooko.com**20091217190417 Ignore-this: 446874ec6fcf5d939f59d6f014dc4e1c ] [secret password for François's new ARM-in-qemu zooko**20091217190257 Ignore-this: 457df3826c29c7a4e8af53d52b3b7991 ] [fix bug in adding François's new ARM-in-qemu zooko**20091217185858 Ignore-this: e19a67bf3853e6bbfaabb19fea0f337c ] [merge Kyle and François changes and remove &branch= zooko@zooko.com**20091217185610 Ignore-this: f6747363526629975500a32ea2b5b2f8 ] [add François's new ARM-in-qemu to Unsupported and demote his real-ARM to Unsupported zooko@zooko.com**20091217184452 Ignore-this: 3583db5511d374a814bc6df06414cbd8 ] [add Kyle OpenBSD amd64 unsupported zooko@zooko.com**20091207163642 Ignore-this: eddaa779f2caf04a3d2a2c39e2f09ce3 ] [add the secret password for Kyle's OpenBSD-amd64 zooko@zooko.com**20091207163609 Ignore-this: 9636bbd9053e5cf128edac0b11b15906 ] [add Kyle to pycryptopp zooko@zooko.com**20091207162834 Ignore-this: 432a3fb0550caa90bea5e28bfa6b6bba ] [add Kyle to zfec zooko@zooko.com**20091207162537 Ignore-this: a64421e972652d86cae8ee3c4af5e37a ] [fix hyperlink on index.html to yukyuk, showing that yukyuk is Supported zooko@zooko.com**20091130200324 Ignore-this: ced72685c107d7b3ab59de8eb3239fdf ] [tahoe: remove gutsy from 'supported builders' HTML "Brian Warner "**20091128182911] [pycryptopp: remove gutsy, zooko decided to drop support for it "Brian Warner "**20091128182601] [tahoe: de-support gutsy, we no longer have pycryptopp debs for it "Brian Warner "**20091128182429] [fix shallow bug from previous patch zooko**20091121053902 Ignore-this: eeb0e853d8d5faff82894e16abd75846 ] [attempt to switch the Tahoe-LAFS config from repo-URL to base-URL+branch zooko@zooko.com**20091121053746 Ignore-this: 7098dbc47f161dc69bf1612d54efef84 ] [fix web page to show eugen's deb builder as supported zooko@zooko.com**20091029195646 Ignore-this: 644254ed82030ce66a96c7d56a0b8dd1 ] [promote François lenny-armv5tel to Supported and normalize caps in its name zooko@zooko.com**20091029195309 Ignore-this: 20cb84bb3ece1c022fc659a0fb7ddd4a ] [fix typo zooko**20091028021706 Ignore-this: 615c5d0c42171c76b97e1224014c05aa ] [promote MM's NetBSD to Supported zooko@zooko.com**20091028001209 Ignore-this: db98a02cf3832a9324f213d51ee4b159 ] [promote "Soultcer lenny-amd64" to Supported zooko@zooko.com**20091028000035 Ignore-this: cc87c8926f4e34c2d5cac766d7688146 ] [soultcer has valgrind too zooko@zooko.com**20091027202706 Ignore-this: ab35ddfb0dca629b0134e53a06210d22 ] [fix regex for as zooko**20091027155441 Ignore-this: 87b8c8e20399c43b9e5ea68d3165d756 ] [display as version if present zooko@zooko.com**20091027155135 Ignore-this: a6ed1d81ee19d19a3a61a92118e75c3c ] [arthur installed valgrind zooko@zooko.com**20091027151403 Ignore-this: 622eb5a950030aeede6cd642687c0606 ] [ruben installed valgrind zooko@zooko.com**20091026134831 Ignore-this: f4959323c487972a19ebcb7bea37a371 ] [fix bug in valgrind log file name, and turn off valgrind on 3 linuxes which don't (yet) have it installed zooko@zooko.com**20091026024742 Ignore-this: 1bc5af01b81b6d60c6e9385d15f75c55 ] [fix new g++ version checker zooko**20091026015358 Ignore-this: 6e65ac65453a948ea27a58b3cdeacd81 ] [add a valgrind step and turn it on for all linuxes zooko@zooko.com**20091026014727 Ignore-this: 7b9b4e16eabbb93d8fd26dae827f9bf1 ] [display g++ version if present zooko@zooko.com**20091025191324 Ignore-this: 4f801d10107c5557d191122d0b2fadad ] [yukyuk syslib zooko@zooko.com**20091023215011 Ignore-this: 34fc5832d6723dbe8a97c791c68ea259 ] [no more deb-hardy-amd64 zooko@zooko.com**20091023025805 Ignore-this: b9b3200700c591c84428b09a6074fa05 ] [deb0hardy064 dont u0pload zooko@zooko.com**20091023025246 Ignore-this: af156b5998cef91bfc90d0bb0c51a881 ] [deb-hardy is unsupported (gone for now) zooko@zooko.com**20091023013054 Ignore-this: f037672407c26640859ad095ea195c12 ] [deb-etch demote zooko@zooko.com**20091023004604 Ignore-this: 99c9d5aba3a32a17deeb286523df11f1 ] [virtualzooko gone for now zooko@zooko.com**20091022221752 Ignore-this: 33328aa495e9aaac5af9ffc88807c7a0 ] [virtualzooko gone for now zooko@zooko.com**20091022221745 Ignore-this: 3f4dd95898eaba6f7e02198973f6d1a9 ] [virtualzooko gone for now zooko@zooko.com**20091022221737 Ignore-this: a35eeb34a8587727e2e04b45c1441d93 ] [flakes b4 test zooko@zooko.com**20091022220920 Ignore-this: 67a8cb6e59919bbb5f01d26a6a4c7679 ] [fix passing haltOnFail etc. to wrong thing zooko@zooko.com**20091022220815 Ignore-this: 504f7c06fbb6f70dd2712eb5feb70088 ] [pyflakes before test (says Brian) zooko@zooko.com**20091022220758 Ignore-this: 50b80e8a33068b038996c6590aee17a6 ] [fix it to actually stop on failure of test (thanks PoVAddict and warner) zooko@zooko.com**20091022220500 Ignore-this: 457448f4d34a75e944addd3c3694b9c5 ] [ArchLinux is gone zooko@zooko.com**20091022215743 Ignore-this: 6ca0bed5b87a36deca3af350ac01ce49 ] [oops no more deb-jaunty zooko**20091022013802 Ignore-this: 3e48289c2fdbfeacaed321c0d5b7ddbd ] [this page is in utf-8 not iso-8859-15! zooko@zooko.com**20091022013102 Ignore-this: 31a6e9d6857f99ffa14ed8cfba6d2262 ] [hardy unsupported :-( zooko@zooko.com**20091022013034 Ignore-this: e37aa0cae73571912e1d5af6945bb5ea ] [hardy buildslave gone for now zooko@zooko.com**20091022003102 Ignore-this: 598293ff91d15d8686c131fbeaae732e ] [UploadEggToPyPI is a PythonCommand not a ShellCommand zooko**20091022000334 Ignore-this: 7688af877d5aa1116baa077aa1c5954b ] [cygwin offline zooko@zooko.com**20091021201025 Ignore-this: e39ab51ddba0f1c49b781e954e0b977c ] [cygwin offline zooko@zooko.com**20091021201016 Ignore-this: 15dccf6dac487f9c0ab96261a400e97f ] [cygwin offline for now :-( zooko@zooko.com**20091021200920 Ignore-this: ca79f8f75bee3a9a3c39cdca8a032692 ] [move offline builder etch to the end (right) of the list zooko@zooko.com**20091021200838 Ignore-this: fc88e1495c53e84afe3ab88959119886 ] [comment-out etch (off-line until further notice) zooko@zooko.com**20091021195945 Ignore-this: 8dcd49643d97596209f200e73f2fb73e ] [etch is unsupported zooko@zooko.com**20091021195755 Ignore-this: 430f263792a311305ae3512f753e6f29 ] [yukyuk is karmic now zooko@zooko.com**20091021193244 Ignore-this: 8da2660e2170b1dec97ed6c60398e590 ] [yukyuk is karmic now zooko@zooko.com**20091021193237 Ignore-this: 9a1b159182f9661687ebf2503b93f428 ] [yukyuk is karmic now zooko@zooko.com**20091021193224 Ignore-this: 5dc1af989d78cc1aadd44eca4251daee ] [fix python=None in PythonCommand "Brian Warner "**20091020002606] [fix use of addFactoryArguments: must come after upcall. Simplify use of kwargs. "Brian Warner "**20091020001954] [bbsupport.py: use PythonCommand in most places, fix up addFactoryArguments() "Brian Warner "**20091020001112] [switch from repourl to baseurl + branch (+ "-hashedformat") zooko@zooko.com**20091016200240 Ignore-this: 300e02553598b123cd8b1173c909c53e ] [no more DARCS1, not even for gutsy. yay. zooko@zooko.com**20091016195628 Ignore-this: 73e64f832a1200783ad073f94791cab3 ] [addFactoryArguments zooko**20091016193345 Ignore-this: e87f9cc3ae8eac617d131f960911c914 ] [fix our buildsteps to work with new buildbot version zooko**20091016185459 Ignore-this: b7a2b974cc8c560b4db440a517d71a87 ] [remove our params from kwargs before passing kwargs to superclass constructor zooko@zooko.com**20091016183741 Ignore-this: d06e0a2f6a44fed91297578c8430fc3 ] [fix bugs in base+branch patch zooko**20091016183406 Ignore-this: 8b5506043678a212c698b355f1f5f843 ] [switch from repourl to baseURL+branch (+"-hashedformat") zooko@zooko.com**20091016184657 Ignore-this: ed04b2d9ed4e65b6c5d1faa238192fab ] [gutsy no longer has DARCS1 zooko@zooko.com**20091016184219 Ignore-this: cf0ade25c9403a6638014b99e65867b ] [disable the build of windows exe, see comment for why zooko@zooko.com**20091006204105 Ignore-this: 9747440dbbcf9a89e764c2ada2d8f932 ] [fix oops in recent patch zooko**20090914034951 Ignore-this: 62f456b1a61e6daa8bec5760726ce3a8 ] [arch is "all" for Tahoe-LAFS zooko@zooko.com**20090914040414 Ignore-this: fe4ead3cc480999f29758d2fe3322ab3 ] [tell Eugen's deb builder not to upload .deb's zooko@zooko.com**20090914040357 Ignore-this: 3b13a7adbc038926ae2c345323d58c0f We already GOT one! ] [retire Zandr's linkstation from zfec service zooko@zooko.com**20090914034119 Ignore-this: e0b020a5258f27ddf1fa77575553a755 ] [retire Zandr's linkstation from pycryptopp service zooko@zooko.com**20090914034106 Ignore-this: cd23d2322c30af45815668460b69a020 ] [change Eugen's lenny amd64 to upload with furls zooko@zooko.com**20090914034007 Ignore-this: 9223e6de20cbc31935581ffe5927bbac ] [retire Zandr's lenny-armel box that was that little slow linkstation zooko@zooko.com**20090914033933 Ignore-this: e424b1ae48c65c6fd4a8fe2a8b525576 ] [yukyuk upgraded to jaunty and told to upload .deb's zooko@zooko.com**20090815215642 Ignore-this: 6dd70c1aebd1592091d5532999aec938 ] [add the new yukyuk deb-jaunty to scheduler and index.html zooko@zooko.com**20090815213650 Ignore-this: 6ae47fdc307e500753e583dc1325e5da ] [make default deb_arch == 'all' instead of 'i386' zooko@zooko.com**20090815213201 Ignore-this: eb7424c0c8ec64b676343a5287dc3da0 ] [rename David A/'s open solaris for zfec zooko@zooko.com**20090815195939 Ignore-this: d4a5561255be27cfaf88ac2ce6f1f32f ] [tell Soultcer's buildbot to use furl not scp zooko@zooko.com**20090815185816 Ignore-this: ecd0ce3c0462918a4113c4e04fdaf82c ] [Soultcer zooko@zooko.com**20090815182736 Ignore-this: 6aeeae3d03d511474b6754bc24a8e672 ] [Soultcer lenny-amd64 for zfec zooko@zooko.com**20090815181853 Ignore-this: c2f5f77c3d5e27393fca4096205cc472 ] [edgy has darcs-2 now zooko@zooko.com**20090815181708 Ignore-this: 6b6ca265db3f5cf4f2b835317a70d8af ] [add David Triendl == Soultcer's lenny amd64 and append op name to deb-lenny-amd64 builder name to distinguish Eugen's from Soultcer's zooko@zooko.com**20090815162809 Ignore-this: fc08d7bf2c6a32581e1d897e4e952b03 ] [add David A.'s solaris tahoe zooko@zooko.com**20090815155610 Ignore-this: cd68f6b6fe730be9a94f0e3b59dbe13 ] [change name and password of David A's opensolaris zooko@zooko.com**20090815135420 Ignore-this: 64eb3823cd21fb678c702eaa98bf59f4 ] [add Arthur debian-lenny-c7-i386 for zfec zooko@zooko.com**20090815134547 Ignore-this: af306c5cc212483cca1243d72d450aca ] [make yukyuk do the deb-jaunty job instead of mordsith (mordsith is unstable) zooko@zooko.com**20090815133454 Ignore-this: c5ce0f25361a97dd1ed53c73b613150 ] [make use_hashed_format the default for make_deb_factory() zooko@zooko.com**20090815133422 Ignore-this: 13a3a1379d0979bb4366b532ab284342 ] [zfec franXois zooko@zooko.com**20090805140058 Ignore-this: 4980b0dcfdff139337511245cf59303e ] [utf-8 zooko**20090805134517 Ignore-this: 8e8425e892ef5b79f2cdda6cef203755 ] [FranXois's box zooko@zooko.com**20090805135451 Ignore-this: 6ffe4047db6967a9c047e08f0e7c886e ] [add deb-lenny-amd64 to the set to be triggered whenever Supported Test Builders all pass zooko@zooko.com**20090805031608 Ignore-this: 695a601054f21df1cda3e2e5b686c46f ] [promote Arthur Lutz's lenny-i386 (via c7) to Supported and add Deb builder on it zooko@zooko.com**20090805031222 Ignore-this: 508573858150e6dc2e83c73f53ddf99f ] [fix spelling of "i386" for allmydata.com hardy zooko**20090805025343 Ignore-this: 5ac3fef036ae0befa69f9ffe68e4ac9e ] [remove non-ascii char from builddir of François's ARM box zooko@zooko.com**20090804134150 Ignore-this: c278f0ec02ee5ac2d3f0ed1b3997f33a ] [add hardy-i386 for pycryptopp zooko@zooko.com**20090803005633 Ignore-this: 9e10619e530e3ca08161aea311b30f ] [fix imports and paths and arg names zooko**20090728141201 Ignore-this: f3fe9afb1b46766c03dc263e15225fce ] [new auto upload of packages copied from pycryptopp zooko@zooko.com**20090728133122 Ignore-this: 9cba0b1557192bc1d4f1c5fc36ff6aa5 ] [arthur uploads debs for pycryptopp zooko**20090728130438 Ignore-this: a26a71f5d32b5866dd9f592ae283e3cf ] [configure bdew's debian-unstable to upload .deb's zooko@zooko.com**20090727130642 Ignore-this: 459118a3d55432df43d9c75e6a915ae5 ] [fix typos in new upload egg steps zooko**20090727023556 Ignore-this: 3543123be9e1b5938adf91d9c744d780 ] [upload eggs to allmydata.org and to pypi zooko@zooko.com**20090726155842 Ignore-this: 4f05d8128c78d42c5521fc9df2038eff ] [fix path to .deb for tahoe zooko@zooko.com**20090725223801 Ignore-this: c1a7fca7c29b1b7954cbe66206e71d37 ] [fix it up zooko**20090725222049 Ignore-this: 56111ddf9f702b4e22dc11591a0ed787 ] [fix bugs in refactoring zooko**20090725205606 Ignore-this: 8e17be8c55ecef391b5fb527b40c0722 ] [refactor pycryptopp and tahoe to use some flappy buildsteps for upload-deb and update-repo zooko@zooko.com**20090725205154 Ignore-this: 3ba31c9319a222893d00293d6cedee09 ] [now it works, but it isn't generic between pycryptopp and tahoe usages of flappclient zooko**20090725191502 Ignore-this: f49ce1d8c972b6f67df8aeb4fb244857 ] [add flappserver upload zooko@zooko.com**20090725183828 Ignore-this: 8e7693ba75f9d34f5b0329f33925baea ] [remove unused slave zooko@zooko.com**20090724173913 Ignore-this: 902f0d665146bacde80bbc7b00356f09 ] [add arthur c7 for pycryptopp zooko@zooko.com**20090724173904 Ignore-this: e037775b122928e4c705586c6f6ed454 ] [add slave-etc zooko@zooko.com**20090723131959 Ignore-this: ea52652f5e51b7b28fffaedbdce6d86c ] [rename yukyuk zooko@zooko.com**20090721131014 Ignore-this: 9357884aa8990dd803dd7e1b0bf40b6 ] [demote Zandr Lenny-armel and BlackDew debian-i386 zooko@zooko.com**20090720140815 Ignore-this: 738e0153242c560e8b7c8e9f3c3a8ad0 ] [set haltOnFailure=False, flunkOnFailure=False for test_mac_diskimage zooko@zooko.com**20090715023416 Ignore-this: f4f1e1b89e523544cb1c8c9b94de74e6 because mac diskimage is broken and i want to make progress toward v1.5 ] [fix new test dmg zooko**20090712232048 Ignore-this: 3e8cefcad7fc1d7b91ce0f77ee7af179 ] [add buildstep to test Mac dmg zooko@zooko.com**20090712232801 Ignore-this: e0d8d16ff5bf826e7575822993f502c7 ] [allow anyone to poke the ForceBuild button on tahoe-w32-client zooko@zooko.com**20090712232742 Ignore-this: 2d220f11519b88f8944821735d1ee37 ] [remove draco zooko@zooko.com**20090711195521 Ignore-this: 57f9784dc8260a62e40dc8caa56fbb95 ] [remove dead draco from zfec zooko@zooko.com**20090711193612 Ignore-this: d131c9fd437b5a80b9daaa67834bdc98 ] [remove dead draco from pycryptopp zooko@zooko.com**20090711193557 Ignore-this: 6ca195c84720207686547d8233848dfc ] [gutsy also requires darcs-1 zooko@zooko.com**20090710011644 Ignore-this: cd797794740570d027a1e48da7541855 ] [whoops, set *hardy* to darcs-1, not gutsy zooko@zooko.com**20090709125833 Ignore-this: 48270bc9c6f6c0547ba326aac971d15f ] [hardy requires darcs-1? zooko@zooko.com**20090709001154 Ignore-this: 6478ca563c94e571acb72df335fdb5ba ] [promote BlackDew debian i386 and Zandr Lenny armel, demote Shawn jaunty amd64, and remove draco (dead) zooko@zooko.com**20090708130610 Ignore-this: 235f0870fcc590634eef23ee6ba656b3 ] [add Arthur lenny c7 32bit to html zooko@zooko.com**20090708125458 Ignore-this: f3d18bb1df55c66beaad3d33f5537740 ] [simplify by making use_hashed_format default to True zooko@zooko.com**20090708124109 Ignore-this: 497c659f1724b480a74ad7efc275e721 ] [SECRET add Arthur's lenny c7 password zooko@zooko.com**20090708123748 Ignore-this: 430f4eb8aeb9fbfcf0ff51f3f8c3416 ] [add Arthur's lenny c7 zooko@zooko.com**20090708123726 Ignore-this: 1c1ef767067d0ae14e72ff772ad993c ] [increase timeout on windows upload, to allow for 3 installers uploading. [robk] robk-tahoe@allmydata.com**20090706030804 Ignore-this: 959370ae8f622ff3a06d42c3874ff6b7 ] [pass python=python to the TahoeVersion step zooko@zooko.com**20090624213824 Ignore-this: b9a7ef600873e4b7ad91f27dd2b49394 ] [rename netbsd builder to 'MM netbsd4 i386 warp' warner@allmydata.com**20090624011843 Ignore-this: 9852b6e67d35c9c84f524c446964fd7a ] [netbsd-warp: use 'python2.5', since netbsd systems install it under that name instead of 'python' warner@allmydata.com**20090624010004 Ignore-this: 785a5f2a2d29f0210c791cb09f37426 ] [temporarily turn off the trunk gridchecks: prodnet is full, and we plan to create a separate builder for this purpose warner@allmydata.com**20090624004004 Ignore-this: f406541ad604284f6a018efae809372d ] [add 'warp' buildslave, a netbsd4 box contributed by midnightmagic warner@allmydata.com**20090624003928 Ignore-this: 81ca9085c99d2c767c186e8b767be91c ] [ToolVersions: remove platform from waterfall display: it is much too wide. It remains in the stdio for people to check warner@lothar.com**20090621220403 Ignore-this: e7945830902a8ddb0ebad60aa5613f92 ] [add bdew's builders to schedule of pycryptopp zooko@zooko.com**20090621061241 Ignore-this: 9699ff1488c86b055e57ba0413199315 ] [turn off stdeb on gutsy -- gutsy is too old to build debs using the latest stdeb and debhelper zooko@zooko.com**20090621053950 Ignore-this: 1d52ce5965ac1d51cde2b0974e8e9d5b ] [tahoe/trunk: update index.html with Shawn's intrepid-is-really-jaunty update warner@lothar.com**20090617194314 Ignore-this: 1e408efeb6add459cebac02ff33146a8 ] [switch to flappclient for edgy, feisty, hardy, and etch warner@lothar.com**20090617193631 Ignore-this: be2c9d0d6ce88ee17bf1db2bdc3eec8d ] [switch .deb upload to flappclient, starting with deb-gutsy warner@lothar.com**20090617185512 Ignore-this: 9ba31347270fbf366b2e51114c8253be ] [rename Shawn's deb builder zooko@zooko.com**20090617183533 Ignore-this: 2283c483171c6495947a95ff3f1bd9fd ] [narrow parsing of setuptools version number zooko@zooko.com**20090617182156 Ignore-this: 4588651d8d09267572860d9e3638ad77 ] [scrape setuptools version from show-tool-versions zooko@zooko.com**20090617181931 Ignore-this: 2c3c2e2e23944e65362c0e7f24bed3e4 ] [fix bugs zooko**20090617180301 Ignore-this: aae1a5ccf5c1118d9d3a7c5f7fa3e50e ] [add bdew's builders to schedule zooko@zooko.com**20090617180945 Ignore-this: c7f0053b922263a39a9a51b2269d3f71 ] [gutsy is too old to build debs (with stdeb and setuptools) zooko@zooko.com**20090617180827 Ignore-this: a43ee8445ffa9d0256756a30fa27b8e1 ] [add BlackDew's buildslaves to zfec zooko@zooko.com**20090616224909 Ignore-this: e4ad7828ca026f6ff73b03ddf7f322fb ] [add BlackDew's builders to pycryptopp zooko@zooko.com**20090616224852 Ignore-this: 6721e74fb9f1142113caaddaf22d8f75 ] [fix name of Black Dew's i386 zooko@zooko.com**20090615225904 Ignore-this: 133f5eed7482f1923926e021df34688b ] [run flakes only on one builder zooko@zooko.com**20090614221347 Ignore-this: e86d25b8c992edfce424009b7d134805 ] [fix arg zooko@zooko.com**20090614010020 Ignore-this: a287c6277659420da715c94ba5f5365e ] [build/zfec zooko@zooko.com**20090614005437 Ignore-this: 44138ac11f8c18e311ea0da2c430a22d ] [zfec/zfec zooko@zooko.com**20090614005158 Ignore-this: 54d6bf0751e6cd3f5e29ec96b4420625 ] [use just Compile zooko@zooko.com**20090613223741 Ignore-this: ed4d045059254820ae6066f541c51ad5 ] [workdir = zfec zooko@zooko.com**20090613223415 Ignore-this: 787a8e8218c8f34363bfc23a84cd7834 ] [BD's deb-un is i386 not amd64 zooko@zooko.com**20090613223400 Ignore-this: 41ece2399d22eba54b4ffd52b89ad03a ] [change pblistener port zooko**20090613222429 Ignore-this: 88eff501f3be5849eb258028108dbc0f ] [oops, zfec source not pycryptopp source zooko**20090613213905 Ignore-this: bc5f25f4f261418fc922df2244e7c2a8 ] [fix bugs in new zfec config zooko**20090613211821 Ignore-this: 6a618a495f0e56d6d9ebe9d62d0f68bf ] [new zfec buildmaster config zooko@zooko.com**20090613212342 Ignore-this: 24c6d8d45f452906f241e77f831e3cf0 ] [SECRETS for Black Dew's buildslaves zooko**20090613194824 Ignore-this: 9a81218f8523ede7d18ed36f32842ad2 ] [add Black Dew's builders to Unsupported zooko@zooko.com**20090613180546 Ignore-this: b1b3c3747daa4506f83ac90301af7517 ] [rename yukyuk, promote Dan's ArchLinux to Supported zooko@zooko.com**20090609022851 Ignore-this: 9caca5c3e8ca65751a5ebd20b5b25719 ] [don't timeout if a single test takes longer than 1200 seconds. :-/ zooko@zooko.com**20090609005025 Ignore-this: 550996dff5a02ada785c702070c26c62 ] [it can take longer than 1200 seconds to build tahoe zooko@zooko.com**20090608225610 Ignore-this: bf5c54a563e989425f7e4f3ff41e07cc ] [mordsith upgraded to jaunty zooko@zooko.com**20090604135526 Ignore-this: b1c39673762d4be28f9af9bbe2fd057d ] [don't attempt to upload dmg unless an "upload_dmg_furlfile" arg was passed to the make_factory() zooko@zooko.com**20090604030342 Ignore-this: 70d78583438e734c14f90cb22fcfd366 ] [don't build the embedded-Crypto++ on linkstation (takes way too long) zooko@zooko.com**20090604030040 Ignore-this: ac9c27b6ed5e53fd21d7657d180fe9d4 ] [retire dapper zooko@zooko.com**20090604025958 Ignore-this: fb943fb2879a3be95ebe782c700449df ] [finish naming syslibs with " syslib" instead of "-syslib" zooko**20090530153115 Ignore-this: 8c2cd89472b2d90931a22cc4cfe7c256 ] [name syslib by appending " syslib" instead of "-syslib" zooko@zooko.com**20090530153604 Ignore-this: 9fd647b543dc9c99cdbb72cd5c20a7fa ] [add David Abraham's opensolaris zooko@zooko.com**20090530153539 Ignore-this: dcdcd09ba009c927db58cd94b2909755 ] [tool versions after checkout zooko@zooko.com**20090529053016 Ignore-this: 68421f69452e714f5fd5cf230c762ace ] [bump up timeouts on builds whether --disable-embedded-cryptopp or not zooko@zooko.com**20090529051629 Ignore-this: a712606b60539668a63c72e104420ed5 ] [no spaces in builder names zooko@zooko.com**20090529045808 Ignore-this: 7ea69e03dbf01d28eec92fe814baf2f3 ] [add syslib builder for linkstation zooko@zooko.com**20090529045110 Ignore-this: 9227046b250ca41a1195093ff21104b5 ] [bump up timeout by a factor of 10 zooko@zooko.com**20090529034158 Ignore-this: 32a6dced381cc0ce82adb61f87580b1f ] [turn off debs on ruben's with syslib too zooko**20090529015049 Ignore-this: 50254afea2d8d4f3889251036ca6062f ] [add Mac Mini under Brian's TV zooko**20090529015037 Ignore-this: bd850c868ad10c8ab8af7793814e95f0 ] [SECRETS mac mini under Brian's TV password zooko**20090529015020 Ignore-this: bf0a3aadb19ea242772935130c079bd6 ] [found this whitespace patch in the master repo zooko**20090529015005 Ignore-this: 39c9e4f0ce1952f0160826c8f18c0064 ] [up timeout to 3600 for build step, only if not using --disable-embedded-cryptopp zooko@zooko.com**20090529013015 Ignore-this: 9abcc8f0323e82af847adaf017523411 ] [move pyflakes to after build and test (hopefully this will make setuptools noise go away from the pyflakes step) zooko@zooko.com**20090529013000 Ignore-this: 34f93882102994625b41ee7e25d3959e ] [don't ask ruben's fedora box to build debs zooko@zooko.com**20090529004902 Ignore-this: 639ff04149bd5fc2d3aa5a6cb704c3b3 ] [parse "platform" from show-tool-versions.py zooko@zooko.com**20090523023332 Ignore-this: 9cb6f6d7251345be048770b6bca6cab2 ] [invoke ToolVersions in pycryptopp builder zooko@zooko.com**20090523022458 Ignore-this: 63c2528c97f9acbe2f6898ab1dd3d8bc ] [add draco zooko@zooko.com**20090523021831 Ignore-this: aa851c6da11615c7f781441428d583e6 ] [fix typo zooko**20090520221555 Ignore-this: 2a5f8365337ec55fcef682caba2ed814 ] [add zandr's linkstation for pycryptopp zooko@zooko.com**20090520221915 Ignore-this: 1574233ad8934f5aad4ccf65ef20b80 ] [fix capitalization of Zandr's Lenny-armel box in the unit test link zooko@zooko.com**20090507232011 Ignore-this: af8df024dc0c00f674c4d3382b92e751 ] [schedule François Lenny-armv5tel as an unsupported builder zooko@zooko.com**20090507230921 Ignore-this: ed866d63e6d1b43175483ebb893fb124 ] [link to François Lenny-armv5tel (as Unsupported) zooko@zooko.com**20090507230740 Ignore-this: 58533a85422e8a826aa14879a0e6688a ] [mark coding of python files as utf-8 zooko**20090507222553 Ignore-this: 559d4f9f4abf4be3f1db7789a80870a ] [secret password for François Lenny-armv5tel zooko@zooko.com**20090507165840 Ignore-this: e3f60d6842cba0a20a5416ed0bb13c8d ] [add François Lenny-armv5tel zooko@zooko.com**20090507165808 Ignore-this: 27d20a5b0397fab1b0d86b5d40c619a0 ] [build mac app on ootles, too zooko@zooko.com**20090501021015 Ignore-this: 728b68f58011e7eba1a60cb69e095c61 ] [don't warn on warnings for stdeb step? zooko@zooko.com**20090427160322 Ignore-this: 6a29bb1be180946c216615e2747f29c4 ] [dapper can't do the Stdeb trick. :-( zooko@zooko.com**20090427153823 Ignore-this: 5eb7a013a6792a75627af3aa7c9bd983 ] [try a nicer way to cd into the deb_dist subdir zooko@zooko.com**20090427153807 Ignore-this: a73a2a8be13ea688227cf71f5025fcb1 ] [add ruben's builders to the scheduler zooko@zooko.com**20090427020123 Ignore-this: 26a5564238e381813dffb799771b5e1d ] [halt on failure of tests zooko@zooko.com**20090426174922 Ignore-this: bb4ea37a0387ac2553305c880dbe12a9 ] [comment-in pyflakes zooko@zooko.com**20090426174917 Ignore-this: 69014ead8ad61c3af540fbd63e2bc126 ] [if tests fail, stop the builder zooko@zooko.com**20090426174237 Ignore-this: f83f3ea1dd31a3fec5af77f053f6bcb0 ] [refactor external-cryptopp and add Ruben's external-cryptopp builde zooko@zooko.com**20090426173923 Ignore-this: b5368bfd6bfe5e83b7d2a8c230958d93 ] [fix typo in addition of ruben's buildslave zooko**20090426145104 Ignore-this: cf7f8af26a2d9cca331ef36fac3add9a ] [add Ruben's buildslave zooko@zooko.com**20090426143839 Ignore-this: 812cdc95a40574435d28f7eb05412fa5 ] [will it work better if it is a string than a list? zooko@zooko.com**20090424015930 Ignore-this: ec4e2b61eab5ac68ef5b3759e49cf04b ] [fix typo in stdeb zooko@zooko.com**20090424011525 Ignore-this: a5772e699cb32be3099a85e9dd4a0d1a ] [stdeb needs shell interpretation zooko@zooko.com**20090423233408 Ignore-this: f19bd615773b455075a664c27b771a07 ] [fix missing import zooko**20090423230416 Ignore-this: 2b0e3d1e2dfc3bfff9b86784ee9914be ] [initial attempt to use the Stdeb tool to build .deb's for pycryptopp zooko@zooko.com**20090423230345 Ignore-this: ad4f7e88adde1c5726261c547b0db494 ] [mark Ruben Fedora as Unsupported on the html page zooko@zooko.com**20090413183513 Ignore-this: 69dfaf25644bdd775ef300c2f3781378 ] [demote Ruben Fedora buildbot to Unsupported zooko@zooko.com**20090413170856 Ignore-this: 707dccf2d50b4128c403a0b8fc89d4da ] [fix bug in addition of zandr-linkstation zooko**20090312025035 Ignore-this: 8e7b0ddfae77c9a3cfd64c2f3964f643 ] [SECRET SECRET SECRET password for zandr-linkstation zooko@zooko.com**20090312024700 Ignore-this: 24a5ef8a58b43eb375571486da115df1 ] [add zandr-linkstation slave and Zandr Lenny-armel builder zooko@zooko.com**20090312024643 Ignore-this: e6f319f78d9411d7e739fb05f01d0400 ] [SECRET SECRET SECRET password for Ben's OpenBSD-sparc64 zooko@zooko.com**20090311215117 Ignore-this: 8dbd53f440b46f5831fe1254213fd206 ] [add Benjamin Jansen's OpenBSD 4.4-sparc64 to Unsupported zooko@zooko.com**20090311215056 Ignore-this: abd8829063d3edd0aa0388b9e4e5d0cf ] [deb-lenny-amd64 uses hashed-format zooko@zooko.com**20090311165814 Ignore-this: 13c8763c8e37e6c1c7a80ef5a45a29ab ] [edit html explanation of buildbot policy zooko@zooko.com**20090311152856 Ignore-this: bce4cb44ce10badf172edce809a7a494 ] [promote Eugen lenny-amd64, zooko yukyuk jauntyish, Ruben Fedora, zooko draco Mac-PPC 10.4, and zooko ootles Mac-amd64 10.4 to Supported zooko@zooko.com**20090311152823 Ignore-this: 55261c1b4cb9c26a546b937ac13265dc ] [add line explaining policy about buildbot-created packages zooko@zooko.com**20090309034556 Ignore-this: fd1f64a0e609397db9f0e685058bfc90 ] [fix accidental URL-quoting of builder names zooko@zooko.com**20090307054258 Ignore-this: a0bdb8430f3a500de3dc7dff5511c5ea ] [refactor the scheduler and make package building contingent on supported test builders all passing zooko@zooko.com**20090307051450 Ignore-this: 492a1c46ecb39e4627fbb2e7a5399a5e ] [rename ootles and draco test builders zooko@zooko.com**20090306233456 Ignore-this: 51270bdcc0ad872ca33280fa7c4a88d0 ] [sort the builders and update the index.html to describe different subsets of them zooko@zooko.com**20090306233247 Ignore-this: 6c4b2b5fe41bd14af0ffcea90226288f ] [rename yukyuk builder in public_html/index.html zooko@zooko.com**20090306223808 Ignore-this: d666fd6aff3c654f2ee53820208fa117 ] [change the name of yukyuk builder and yukyuk slave zooko@zooko.com**20090306223452 Ignore-this: 71520fc36d2a3dbd1fbdee4187c84c7e ] [SECRET SECRET SECRET change the name of yukyuk slave in secrets file zooko@zooko.com**20090306223438 Ignore-this: 88e5346136ede597c82b37bc63ed898c ] [make slave3-dapper be a pycryptopp buildslave zooko@zooko.com**20090306001441 Ignore-this: 7a392e6fa161c78a86cb88f147f592df ] [fix typo in lenny-amd64 debian builder zooko**20090305214246 Ignore-this: 7529fb17f5721fd3c01ee0c1f553ebab ] [pycryptopp changes done by someone else in-place on hanford and not darcs recorded zooko**20090305214207 Ignore-this: f79fa523ec7a4d350807b35ec0b99292 ] [configure Shawn's buildslave to build debs for intrepid-amd64 zooko@zooko.com**20090305213653 Ignore-this: 7c2249b2b776573171c0a898d6d99340 ] [fix the way that we calculate which builders are which debian platforms and the way the server master.cfg uses this zooko**20090225225938 Ignore-this: 22af9e07a33d2b5234f64ffa72f58af7 ] [demote yukyuk to unsupported, since it has some internal flaw which causes segfaults and filesystem corruption zooko@zooko.com**20090225204145 Ignore-this: 23b1bdaf7e135f7171044b0aaa1b0617 ] [speed-colo: don't use hashedformat, since we're using darcs1 on the gutsy slave warner@allmydata.com**20090225052130 Ignore-this: fff6057a6a1209db6859c458288ad3f6 ] [add Ruben Fedora to Unsupported Builders zooko@zooko.com**20090224145326 Ignore-this: 4b25482769f95cdfde0a4ca432cf35c6 ] [add Ruben Kerkhof's Fedora buildslave zooko@zooko.com**20090224144714 Ignore-this: 9c8fa18098d387588a729b6baf831591 ] [SECRET SECRET SECRET password for buildbot.rubenkerkhof.com zooko**20090224145129 Ignore-this: 87a451ed427127f73c421369de861fb0 ] [fix some typos in the Eugen Leitl setup and add a debian builder for lenny-amd64 using his buildslave zooko**20090224001802 Ignore-this: 6be00d27083c11dd760f9fbdae9aa057 ] [add a builder for debian for lenny-amd64 (Eugen Leitl's contributed buildbot) zooko@zooko.com**20090223235715 Ignore-this: ea172e55f9d3df7de5229368385c125b ] [gutsy downgraded to darcs-v1 zooko@zooko.com**20090223220633 Ignore-this: 395cc1604759d20d0f763211a2ac207 ] [append -darcs1format to repo URL if not using a darcs-2 executable zooko@zooko.com**20090222213521 Ignore-this: 79d49b08e6dc6053c4dab6edf385f52f ] [ToolVersions: make the output even shorter: 'py2.5.0' instead of 'python: 2.5.0' warner@lothar.com**20090219200509 Ignore-this: 6edeca87dddb7e5fec27d359a6656e27 ] [ToolVersions: show summarized versions in step text warner@lothar.com**20090219184430 Ignore-this: 421aa22d4bb76e3c12555a41a5b87220 ] [rename lenny-amd64 to 'Eugen lenny-amd64' warner@lothar.com**20090219174606 Ignore-this: 64670ced2688e486e824bb96cc9867fd ] [add lenny-amd64 to the unsupported list warner@lothar.com**20090219174212 Ignore-this: e73be046d4929c692cff85125f2556d3 ] [add Eugen Leitl's lenny-amd64 buildslave warner@lothar.com**20090219173157 Ignore-this: 7350007ba61cb78486fecfa908dfb7de ] [moved show-tool-versions out of setup.py and into a separate script warner@lothar.com**20090219073822 Ignore-this: aaa366bf599b431a42f22d442384a8e1 ] [BuiltTest: oops, missed a parens in the regexp warner@lothar.com**20090219070616 Ignore-this: 2e66d3db5e4824bab1865aa96126c051 ] [BuiltTest: scan trial output for per-test timings, build a report sorted by elapsed time, to show which tests take the most time warner@lothar.com**20090219063922 Ignore-this: 259ea442bb4e257f3cbb45dc6cc61fbe ] [bbgeneral: doh, ToolVersions uses setup.py, so it must appear *after* the darcs checkout warner@lothar.com**20090219063359 Ignore-this: 3dae748c5d435f0353cfe77f4bf8fa64 ] [replace the four separate tool version steps with a single setup.py-based ToolVersions. Closes #624 warner@lothar.com**20090219062342 Ignore-this: a7951ad20d96e74ca9b835e9722f7d85 ] [bbsupport.py: further simplifications: ShellCommand subclasses can be configured with class-level attributes, which is less code than modifying the arguments to superclass __init__ warner@lothar.com**20090219055337 Ignore-this: 8928776f3439b92dd8687c6583d27ae9 ] [BuiltTest: use 'timing' reporter, which gives us per-test elapsed time data warner@lothar.com**20090219054016 Ignore-this: 6b539ec78a77ae6f53be0353f94934f5 ] [simplify BuildTahoe and BuiltTest, mark BuildTahoe haltOnFailure warner@lothar.com**20090219053922 Ignore-this: f43fb05ffd228d0c62e4e8ffcf203b04 ] [index.html: promote hardy-amd64 to supported warner@lothar.com**20090218023921 Ignore-this: fcf94067358588b853663c41dbc6136b ] [deb-hardy-amd64: don't use hashed format, the buildslave has darcs-1.0.9 warner@lothar.com**20090218015044 Ignore-this: d87d7cef3cf6f699e5ff97e873c42f33 ] [index.html: add hardy-amd64 to 'deb' and 'packaging' lists warner@lothar.com**20090218014047 Ignore-this: bf502d4478640a2deb0e1c28ccc44d0b ] [index.html: add deb-hardy-amd64 to Unsupported Builders warner@lothar.com**20090218012503 Ignore-this: fcb7a16099b507f20e3a463e20008f2f ] [index.html: add hardy-amd64 to Unsupported Builders warner@lothar.com**20090218012426 Ignore-this: bd7016f0e8eefcabad253ae01c108b4f ] [oops, new parameter is deb_arch=, not arch= warner@lothar.com**20090218012028 Ignore-this: ffa52b233171d96e57a734a0520451a9 ] [SECRET SECRET SECRET password for fieldcircus zooko**20090218005911 Ignore-this: 77531dd7a3bd507e4d5ee880421956ec ] [add fieldcircus slave as "hardy-amd64" builder and pass deb_arch=amd64 to the make deb builder function zooko@zooko.com**20090218005515 Ignore-this: bc13c4dffeb29596ae5e2571c6d82539 ] [parameterize debian "arch" field, with default value "i386" zooko@zooko.com**20090218005457 Ignore-this: 5b4d1c36e6722103bf2009a787f09f0d ] [FigleafDeltaHTML: strip lines, the CRLF pair from a real buildslave was breaking the counter-scanning regexps warner@lothar.com**20090213154730 Ignore-this: 45ce7b6aa321b5474490bbb56f2d24f0 ] [fix spelling of list of unsupported builders zooko@zooko.com**20090213142125 Ignore-this: 54e9c0acedee0692ed92d9374f6a2b36 ] [FigleafDeltaHTML: oops, fix regexp, tolerate missing counts warner@lothar.com**20090213071902 Ignore-this: a7796ce388c068a9875917c32b48f1a5 ] [modify render-figleaf step to include delta with previous build, and display lines gained/lost/uncovered in the step box warner@lothar.com**20090213062953 Ignore-this: 5ca41c8a1fb41b1f3c90fcf351d70dd2 ] [secrets.py: add password for 'ootles' warner@allmydata.com**20090213060225 Ignore-this: a5bbf1ac4ff6e0b18209a6cbb50037a ] [add link to ootles from Unsupported Builders zooko@zooko.com**20090213052719 Ignore-this: d071b054421ea67e0a200bee56351285 ] [add ootles zooko@zooko.com**20090213052448 Ignore-this: e229a5d3fcdf607258a1e9f702b29508 ] [fix spelling of draco zooko@zooko.com**20090212225148 Ignore-this: a7c2ef928f9de4cca13f75a72c8eb4cc ] [add draco to the standard scheduler zooko@zooko.com**20090212212617 Ignore-this: 3b6b1e4e9f3a64acb4bf1344875b0722 ] [try another fix for PythonVersion zooko@zooko.com**20090212184803 Ignore-this: 796f47f0f426a2205608aea5becf06d8 ] [try a fix for PythonVersion zooko@zooko.com**20090212184642 Ignore-this: 1a5efe154d221a753d3d56af4c38df0 ] [use the handy dandy PythonVersion buildstep in the standard allmydata builder zooko@zooko.com**20090212184429 Ignore-this: be7fb56dcceadc8f62b368f71d9fba71 ] [add the handy-dandy PythonVersion buildstep zooko@zooko.com**20090212184418 Ignore-this: 5c0df1f2f0698d011f5b3e67c07ff17b ] [edit public html zooko@zooko.com**20090212183855 Ignore-this: 614cac8c32aa17488240c8bd2ae8f089 ] [change name of MacPPC builder on index.html zooko@zooko.com**20090212183342 Ignore-this: 9e32d58b07fb63e2dace869779a12600 ] [maybe slashes in builder names cause problems? zooko@zooko.com**20090212183209 Ignore-this: ece906536b04bb91fcfff9e298a4063a ] [link to bb policy page zooko@zooko.com**20090212172544 Ignore-this: c532da1dfbf93759d4b7cb7fd3149b84 ] [edit public_html some more -- subtly edit the "Supported Builders" policy zooko@zooko.com**20090212170742 Ignore-this: baef41db27c7f74fbecef629983fe96e ] [put supported builders at the top (first link), describe "Full" as union of supported and unsupported, add draco to unsupported zooko@zooko.com**20090212170519 Ignore-this: a67bd4dc1354e745d2d4070d010d3b3e ] [add draco's secret SECRET SECRET SECRET password zooko@zooko.com**20090212170045 Ignore-this: 776bd62d97e32b059263d33702cde08f ] [add draco zooko@zooko.com**20090212170032 Ignore-this: ec97223d8862a013f7f7bc7c08d7ebfb ] [index.html: add 'supported' and 'unsupported' builder lists warner@allmydata.com**20090212012342 Ignore-this: c0695762105f288aa419db918cbe457f ] [SECRETS SECRETS SECRETS password for mordsith zooko@zooko.com**20090210044118 Ignore-this: 6c9b9e0e99ece27b2cf4032524ca6f1e ] [add Shawn intrepid amd64 zooko@zooko.com**20090210044105 Ignore-this: 2c4dec435cb23032dabf9f26d53f4c50 ] [Add (iTech) to public_html/index.html zandr@allmydata.com**20090209204924 Ignore-this: 374c7ab0193df98c463a3896ca62ba78 ] [update buildbot.tac and master.cfg for -itech buildbot zandr@allmydata.com**20090209204342 Ignore-this: 8a8303a389488caa33b2dec6783dbacc ] [create tahoe-w32-client-itech zandr@allmydata.com**20090209202734 Ignore-this: bdffee098f03878424de39cb432f2ca8 ] [don't try to easy_install the egg on etch zooko@zooko.com**20090205162137 Ignore-this: fb53095b6b34a764ca67910e23f577f7 A problem in the combination of setuptools and the Twisted and/or Nevow setup scripts is the likely culprit for why it fails. But anyway, being able to easy_install on etch isn't that important. ] [use tahoe --version-and-path to facilitate diagnosis of setup bugs through the buildbot, and use a different regex to recognize the version part zooko@zooko.com**20090129203042 Ignore-this: bfc2dcf10cbb1f23c65112c76f3903d9 ] [reporter=bwverbose zooko@zooko.com**20090120235716 Ignore-this: d2f4c3f7c3eacd85d20e816ecfce368d ] [change name of figleaf step to test-figleaf zooko@zooko.com**20090120225135 Ignore-this: 419e1686a1895cca99360c81475a4179 ] [whitespace-cleanup zooko@zooko.com**20090120203815 Ignore-this: 72d42d95738a46499a6ad92db5d9577d ] [fix missing import zooko@zooko.com**20090120203809 Ignore-this: c6a17f2fa6f98cb1faf5c7ab23f292d ] [use GenFigleaf buildstep instead of makefile "make test-figleaf" zooko@zooko.com**20090120201825 Ignore-this: 86d68dc5e2d1cb732cc0d0714e305941 ] [add GenFigleaf buildstep zooko@zooko.com**20090120201646 Ignore-this: 469755eab6b045a12c3112fa61e6515c ] [see if workdir="." makes "darcs exact-version" stop failing just because the dir it wants to run in doesn't exist zooko@zooko.com**20090120190939 Ignore-this: a376b460bec2027be11c65b9c9b77812 ] [we can use standard python-distutils names "build" and "test" now instead of "build_tahoe" and "trial" zooko@zooko.com**20090120183622 Ignore-this: e99965cd01b8e90cc055feec18325f59 ] [dapper's easy_install is too old to install tahoe zooko@zooko.com**20090120171032 Ignore-this: b0ab3e6241e01e5793b714c421cb6d09 ] [explicitly indicate -darcs1format for old-fashioned-format repositories zooko@zooko.com**20090120170952 Ignore-this: a56c5ab4a8558be320e133a830306e84 This is just an explicit indication of what we already do. There are symlinks on the servers mapping from "foo-darcs1format" to "foo". ] [fix bug with default value for "python" zooko@zooko.com**20090120143935 Ignore-this: 29dc9aa6168a8c218d957097385f65b4 ] [finish removing debugprint zooko@zooko.com**20090120142703 Ignore-this: b644c9774ff2faa7bfb6d55f9d7224d1 ] [rely on hasattr zooko@zooko.com**20090120142533 Ignore-this: aa21669bb9f17969c65e7168173700c0 ] [remove some debugprints zooko@zooko.com**20090120142525 Ignore-this: c31a3f9c04582758293576dff890ac33 ] [fix spelling of add-step-thing-halt-on-failure zooko@zooko.com**20090120130639 Ignore-this: 1c9c713e2f2268ff565a6ad43ff0805e ] [update names of things zooko@zooko.com**20090120130633 Ignore-this: 7aa6e37c5355718830da137c77b67153 ] [fix missing import zooko@zooko.com**20090120125840 Ignore-this: 92f520339f286fe0a2140ee2cc072723 ] [note XXX zooko@zooko.com**20090120125830 Ignore-this: dd51c603b2e751e6e1378d941a56e709 ] [configure edgy and cygwin not to try the "easy_install" step -- they don't have easy_install installed! zooko@zooko.com**20090120050257 Ignore-this: b8c503be76f485f25de41061665efabb ] [comment-out the TestEgg step -- it takes too long! (Also fails on Windows) zooko@zooko.com**20090120050238 Ignore-this: 5bb53cf3fe3ba5ff8c6d707fbbfa945d ] [add XXX comment about the TestEgg step zooko@zooko.com**20090120050214 Ignore-this: bda236c4fc2a84276ebffe445a6b2aad ] [the easy_install test have flunkOnFailure=false zooko@zooko.com**20090120043701 Ignore-this: 48feb1d3cbffe30d17f45fcdc9055ac5 ] [use the BuildTahoe step and the BuiltTest step *instead* of the "make build" and "make test" steps zooko@zooko.com**20090120043259 Ignore-this: c772ca5146382aa0849b35077c265851 ] [return the exit code from subprocess.call(), accept a 'python' kwarg for each BuildStep, move the mkdir of installdir inside the easy-install buildstep zooko@zooko.com**20090120043255 Ignore-this: 950525167b07cb8c23156cbda052a175 ] [fix the regex to detect tahoe version in the output of tahoe --version zooko@zooko.com**20090119212142 Ignore-this: 2916f2747a8ed39b3b26ef97f029cffb ] [fix another place where self.tahoeversion might not have been defined zooko@zooko.com**20090119212057 Ignore-this: 37994891aea78601da61c395c7c1cd33 ] [add log files to the install test and test egg steps zooko@zooko.com**20090119210719 Ignore-this: fb238406940072f1eff47b0ca3e14033 ] [signal failure of the code-under-test by returning FAILURE zooko@zooko.com**20090119024437 Ignore-this: a3e4dd7a9440e09c4b348063b192df62 ] [try the install egg and test egg on all slaves zooko@zooko.com**20090117003201 Ignore-this: 854427684ab3a7ffd267072ff698a4e4 ] [making InstallEgg and TestEgg buildsteps os-independent cgalvan@mail.utexas.edu**20090116214401] [fix os-independent tahoe-version step cgalvan@mail.utexas.edu**20090114204312] [os-independent tahoe version check cgalvan@mail.utexas.edu**20090114200930] [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) zooko@zooko.com**20090106024941 Ignore-this: d401fc0427dbc481a27756c4283a83e3 ] [temporarily comment-out the addition of InstallEgg() and TestEgg() build steps zooko@zooko.com**20090106024424 Ignore-this: 83a571dc8d2d979b2e4bc1f8ef2c8a36 ] [fix_test_egg_pythonpath cgalvan@mail.utexas.edu**20090105194359 Ignore-this: b3eb0d3b290a4d47b32350cd77ddc3f8 ] [fix_tahoe_pythonpath cgalvan@mail.utexas.edu**20090105181617 Ignore-this: cc357500d8ac25c7d0df17015467d043 ] [prepend_pythonpath_trial cgalvan@mail.utexas.edu**20090104194945 Ignore-this: 6d853ba61bf607d2a1b0de77a2da5b ] [more_install_tests.patch cgalvan@mail.utexas.edu**20090104190210 Ignore-this: 62207b01b3f0af9eaa9e249b64a547ca ] [allow unauthenticated users to press the "force build" button zooko@zooko.com**20090104185457 Ignore-this: bc11cfcfba7008c03ded334c3848c3a5 I need to let Chris Galvan do this for himself so I can spend my time on repairer instead of build and test automation. 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. ] [import zfec into fresh start darcs-2 repo zooko**20090104185146 Ignore-this: a4fc665e4a87e5fd3b42cc9ff681642 ] [import tahoe-w32-client into new fresh start darcs-2 repo zooko**20090104185058 Ignore-this: 9271988491c5120ef71caeee29449458 ] [import pycryptopp config into fresh start darcs-2 repo zooko**20090104184940 Ignore-this: 53df70ce974922e3838eb3bd79bb770 ] [SECRETS SECRETS SECRETS -- do not push to publicly readable repository zooko@zooko.com**20090102204312 Ignore-this: 3b0994c22d413f68bd418f1991c655bf passwords ] [test_install_step.patch cgalvan@mail.utexas.edu**20090103182105 Ignore-this: 8c70abfe2973d968e5d50b51c2576330 ] [bbsupport zooko@zooko.com**20090102215025 Ignore-this: d3e620870d722d7099cc7b506eeb05c3 ] [current buildbot config on 2009-01-02 zooko@zooko.com**20090102204426 Ignore-this: e84fa2f11e4961d599cc30d398a81d24 ] [tahoe dir zooko@zooko.com**20090102204256 Ignore-this: 44c7b8b34ab372433bc37d51a28e4d8f ] Patch bundle hash: f6c7533a4c03dff042d147f074b4f4655daea8fc