forked from buildbot/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog-0.7.12
2132 lines (1448 loc) · 68.3 KB
/
ChangeLog-0.7.12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 71584a4d81973d2a90300e9d46ccde1cb6b7c703
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Dec 31 19:21:48 2009 -0600
set version number
commit 7fa5137bbc449144d76334bd366920d8b6a7c2c0
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Dec 31 19:08:58 2009 -0600
(refs #632) Revert "Always clean the source tree before doing a fetch."
This reverts commit 4caa96ac83982a2444b7deb33a7bb00ade14f3bf
commit 2e875cedbcb52a0d85ce779131112c7db8abc664
Author: Aviv Ben-Yosef <[email protected]>
Date: Thu Dec 31 17:14:26 2009 +0200
Fixing ticket #609
The problem in the ticket is that Git does not checkout the wanted branch, but simply checks out master branch and resets it to the HEAD of the given branch. This means that any scripts in the build that rely on the name of the git-branch in the repo will not see the name they expect to see.
We do not want to simply checkout the branch every time, as that will leave a lot of "dangling" branches if the branch names are changed with time.
So, the decision is to do the same thing we did till now, but also add a step for renaming the branch to the expected name, and make sure the fetching will reset to the wanted revision.
commit a9fc66b44c6002f9467d321a6a1a66895a3023ba
Merge: 22f923d cbef2cd
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Dec 30 19:35:01 2009 -0600
Merge branch 'xmlrpc' of git://github.com/kzys/buildbot
commit 22f923d15b8a8b9dddfc81cd62bae7a3cc2328ec
Author: Tom Fogal <[email protected]>
Date: Wed Dec 30 11:41:24 2009 -0700
Make it clear that `workdir' is an option to ShellCommand.
commit 2b69157655f299d8459ecbc92637a6ffd0e9130f
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Dec 29 17:39:44 2009 -0600
refs #286, #492 - fix optionfile parsing for buildbot subcommands, with improved docs
commit 9296935cd849fcd600e55b392bcc0c79a3d50346
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Dec 29 11:21:44 2009 -0600
mention #buildbot
commit e9b44bfb18f7db96bdeb01de26641c72ed975ad2
Merge: 7e4e948 9bbedb5
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Dec 29 11:10:00 2009 -0600
Merge branch 'bug664'
commit 7e4e948a49b2f511367caac0ea91f91501fee546
Author: Marcus Lindblom <[email protected]>
Date: Tue Dec 29 11:45:02 2009 +0100
Remove user/passwd when comparing Mercurial URLs (fixes #640)
Thanks to Milton Pividon for doing most of the work. :)
commit 9bbedb5a02c55d0d97ddfee6d40576d254491762
Author: Daniel Dunbar <[email protected]>
Date: Mon Dec 28 15:53:23 2009 -0800
#664: Remove Builder.ping timeout support, the implementation was not robust enough and could cause the master to unexpectedly disconnect the slave.
commit 25729e4e57174b2fbaea23f09f938611f4e79e39
Author: Daniel Dunbar <[email protected]>
Date: Mon Dec 28 15:32:38 2009 -0800
Change RunMixin.killSlave to optionally take the slave and builder names as arguments.
commit bd845d3b18fc5760fee6e657b12d6cb43003e472
Author: Daniel Dunbar <[email protected]>
Date: Mon Dec 28 14:53:25 2009 -0800
Add a test for mixed exclusive/counting access on builders.
commit 6561a0802f2526f23e53cf4dd3038f99f62ef37c
Author: Daniel Dunbar <[email protected]>
Date: Sun Dec 27 17:09:41 2009 -0800
Tweak buildbot --help / doc for basedir change.
commit 9c37ea82e518de7524f572ac222922d9f794baa7
Author: Daniel Dunbar <[email protected]>
Date: Sun Dec 27 14:46:24 2009 -0800
LogWatcher: Create log files before trying to tail them; this makes the watch code work when twistd.log isn't preexisting.
commit af5c745b6a8a8332a4d73caaef5ba9c43491d60a
Author: Daniel Dunbar <[email protected]>
Date: Sun Dec 27 14:04:05 2009 -0800
Trac #527: make "buildbot start" directory optional.
commit 95a2433e397985d4705c647c789718ab2bddcf71
Author: Daniel Dunbar <[email protected]>
Date: Sun Dec 27 13:09:52 2009 -0800
Revert change to include SlaveLock.maxCountForSlave in compare_attrs, it isn't
hashable and we rely on this. This fixes several buildbot.test.test_locks.Locks
I introduced.
commit 801803f0e55adc70a175433e189c15ba596d2f81
Merge: c8b2133 5d65dc6
Author: Daniel Dunbar <[email protected]>
Date: Sun Dec 27 12:27:13 2009 -0800
Merge commit 'upstream/master'
commit 5d65dc65a03ec3a38648c42407f3163de3310aa6
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Dec 26 19:22:05 2009 -0600
document doStepIf
commit a70a00b22c920ae2c1e95f7bc614a7a94ded861a
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Dec 26 12:13:35 2009 -0600
(refs #10) add BuilderConfig class, use it in tests, and doc it
commit cbef2cde1940272881aff15c29ef9c4f48fb3e86
Author: KATO Kazuyoshi <[email protected]>
Date: Thu Dec 24 19:51:23 2009 +0900
Added tests of buildbot.status.web.xmlrpc.
commit a4b19bb3e96e14c32b446617faf3da306a3deaef
Author: Aviv Ben-Yosef <[email protected]>
Date: Wed Dec 23 01:27:43 2009 +0200
Removing the comment that is no longer true
commit 6c5ae79608a6db370a07cb44f7ca66bd4e4679b9
Author: Aviv Ben-Yosef <[email protected]>
Date: Wed Dec 23 01:22:39 2009 +0200
Adding flag for choosing ordering scheme
commit 939588b066b0b30dc52f0417196a35f07446b47b
Author: Aviv Ben-Yosef <[email protected]>
Date: Wed Dec 23 01:10:59 2009 +0200
Apparantly this is needed
commit 83a1c283cf17793f816aab1e2af1f75dc4ea4356
Author: Aviv Ben-Yosef <[email protected]>
Date: Wed Dec 23 01:06:23 2009 +0200
Using the created classes
commit 6fba2d38e1a8d86914d694f400227c191e8116f2
Author: Aviv Ben-Yosef <[email protected]>
Date: Tue Dec 22 23:54:23 2009 +0200
Adding ability to validate revisions
commit 4824989af1a9786c959c3f986733999d68535e19
Author: Aviv Ben-Yosef <[email protected]>
Date: Tue Dec 22 23:29:37 2009 +0200
Removing useless methods
At first, I saw that the changes list was being sorted by the revisions, and thought that because of that
it will be necessary to allow sorting by time for the other VCSs. But, then I realized that the sorting
was being done simply so that duplicate changes with same revision will be grouped for removing. This works
no matter if the revision is a number or not.
commit 98f39c12bb8cf60b7e003c2effc9a47def2c2645
Author: Aviv Ben-Yosef <[email protected]>
Date: Tue Dec 22 22:58:05 2009 +0200
Removing useless conversion to int
This simple comparison between revisions uses a conversion to int that breaks if the revision is not an int (like in Git). There's no difference simply comparing the strings directly, so I removed this.
commit 2835d4c7a33c4f1d47f9f5f5025b822ca5bee65c
Author: Aviv Ben-Yosef <[email protected]>
Date: Tue Dec 22 22:57:02 2009 +0200
adding comparators
commit 5264eda6284dcc8209f8e00a40b9698643bcfc47
Author: Aviv Ben-Yosef <[email protected]>
Date: Tue Dec 22 21:08:22 2009 +0200
removing unused imports
commit 3cfc460d40dca32cac2dac168cc51e9751da81a2
Author: Aviv Ben-Yosef <[email protected]>
Date: Tue Dec 22 21:04:34 2009 +0200
Removed unused import
commit 668c83e6e0082a3be1919aa9ed8e961d974071ce
Merge: c28838e e092d24
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Dec 20 19:26:30 2009 -0600
Merge branch 'master' of git://github.com/ddunbar/buildbot
commit c8b2133950e50e7a79dc3f67c945209fde940735
Merge: c28838e e092d24
Author: Daniel Dunbar <[email protected]>
Date: Sun Dec 20 17:01:31 2009 -0800
Merge commit 'origin/master'
commit c28838ef1d66bd7d39b806a9310780a977e52474
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Dec 20 15:57:58 2009 -0600
add colon
commit 864430a024d92d07ff4c012d14fcf3b3d4f50a6e
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Dec 20 14:49:16 2009 -0600
(fixes #638) add a requestCancelled method (that does nothing) to IRCContact
commit a901bfd6caf637731a894298fa6e7b6bcc2bb02e
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Dec 19 11:45:46 2009 -0600
fixes #464 replace customMesg with messageFormatter
commit 2ce63d429f8ce04b6aa57b8fa25a1c185f5263bc
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Dec 19 10:33:36 2009 -0600
(fixes #220) spell shlex right
commit fb70a1dd799ff16ef9b3002707ed3613c5780c0d
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Dec 19 09:52:55 2009 -0600
(fixes #645) remove tail recursion
commit 0c51ff9e5b3e358d3f2e268f5f3cf81a9ac1eb3f
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Dec 19 09:49:32 2009 -0600
(fixes #220) use shlex.split everywhere in the IRC bot
commit 79b289d5abe33a7183f4ac2da7476662c4b98fdf
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Dec 18 22:37:48 2009 -0600
refs #626 -- use -s submitted in p4 changes invocation
commit 1c030ed5c477feed5e1c15210d5d15f49e983bc3
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Dec 18 21:48:59 2009 -0600
refs #617 - add 'passing' to the list of possible modes
commit f6397a8a733f54ac808d086606f78a2101ea375e
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Dec 18 21:47:10 2009 -0600
refs #602 - use os.makedirs
commit 676b0c38115deb2edb19ade9dc02c406e310d4b3
Author: Dan Locks <[email protected]>
Date: Fri Dec 18 21:45:21 2009 -0600
(refs #620) Web status pages should use HtmlResource.footer
commit d1b2ea31841ee2daae9718c64e25d695d5966cf2
Author: Chris AtLee <[email protected]>
Date: Thu Dec 17 10:10:54 2009 -0500
Cleanup maybeStartBuild messages
commit 85a84d7f99cb463235849b150f91031cd5fec442
Author: Chris AtLee <[email protected]>
Date: Wed Nov 25 07:12:49 2009 -0500
Stop duplicate attach/detach messages
commit 53bff455df74b6127dcf6dee9006bc0acaa1646b
Author: Chris AtLee <[email protected]>
Date: Thu Dec 17 09:57:40 2009 -0500
Check that the change exists before returning it
commit 1d658d06ed6abc31222d1e7b6f76454709aeed25
Author: Chris AtLee <[email protected]>
Date: Thu Dec 17 09:30:31 2009 -0500
Handling cases where the builder directory on the master is gone
commit fa93c4907a54495d106983633a37473ab2da8139
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Dec 16 23:42:46 2009 -0600
(bug #646) remove the non-functional 'mode' argument from DirectoryUpload
commit ea17f9cf8c95867da1eb015ed07b7037b2232b3b
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Dec 16 23:33:13 2009 -0600
(fixes #641) change default style
commit fadc2b8611522c35364870e7ea398b716a61173f
Merge: 6748148 1c8c37d
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Mon Dec 14 10:48:25 2009 -0500
Merge commit 'upstream/master'
commit 674814844fda31c2e9d15a7044b785fa903a7f47
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Mon Dec 14 10:37:44 2009 -0500
Correct syntax error in source.py
commit 297e3e6465f3aef3139eecd78f143ecc812dad1b
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Mon Dec 14 10:26:22 2009 -0500
Correct syntax error in source.py
commit 3e395a187eb560c1f0d1d93a513a327b47fb8894
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Mon Dec 14 10:25:00 2009 -0500
Improve documentation for depth argument in SVN buildstep
commit 0fd7b31b562a444244f4ab03a0d0a866ef82de47
Author: Jonathan Romero <[email protected]>
Date: Sat Dec 12 02:48:40 2009 -0500
Specify that depth argument requires subversion 1.5 or higher.
commit 04302b410288107f17759d36f0191f23cc8e7d1d
Author: Jonathan Romero <[email protected]>
Date: Sat Dec 12 02:47:03 2009 -0500
Describe depth argument to SVN checkout step.
commit f29b5e8028b22b60f6a49958bdb5cff059d49da3
Author: Jonathan Romero <[email protected]>
Date: Sat Dec 12 02:39:27 2009 -0500
Attempt to check buildslave version properly when depth argument is specified to SVN checkout step.
commit 7a6ea4afbe8c607f36c78793ea60dc0bf17cc1c0
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Fri Dec 11 15:06:20 2009 -0500
Check that svn is not older than 1.5 before adding --depth argument
commit 1c8c37ddca5a347ae00bf138dbef370886cdb62b
Author: William Deegan <[email protected]>
Date: Fri Dec 11 11:55:37 2009 -0800
Fix issue with perforce submissions with no comment.
This currently causes p4poller to throw an exception, which hangs further buildbot builds on that branch.
Now blank comments are allowed.
commit e3f5d30cb0c507cd592e2467f5f3b1a060ffd54d
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Fri Dec 11 14:55:20 2009 -0500
Only set depth arg if not none
commit 080a25ee21f37838c8f2cb3bad723577c89dd5fe
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Fri Dec 11 14:42:11 2009 -0500
Fix depth argument in SVN source step
commit eae7d56bae3d5e3711fc470cac9a138ad7b47cbe
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Fri Dec 11 14:22:33 2009 -0500
Make sure the depth argument makes it into the args array for the svn command
commit 0e859e2396c7af54d9ecf9c299b75eef5c9600f7
Author: Jonathan S. Romero <jonnyro@jonnyro-desktop.(none)>
Date: Fri Dec 11 13:50:43 2009 -0500
Attempt to add depth argument to source checkout steps
commit acb279a3bbb484d1120f37e97ab7b69d8240cf04
Author: Kristian Nielsen <[email protected]>
Date: Tue Dec 8 12:48:50 2009 +0100
Fix ticket #643: extra rows and empty cells in grid displays.
Problem was that sourcestamp comparison was too fine-grained; we want
to assign builds to same rows if the underlying code version is the
same, even if there are minor differences in build properties or the
like.
commit 10e051422660c9d0b873991cb0890ebf55cfdc80
Author: Kristian Nielsen <[email protected]>
Date: Tue Dec 8 10:26:10 2009 +0100
Fix ticket #642: Specifying extra build properties for force/resubmit
build does not work.
Fix naming of form parameters to be consistent between the code that
generates the form and the code that handles the submitted HTTP request.
Implement code for resubmit build to handle extra custom build
properties in the submitted HTTP request (this was missing in the
existing code).
commit efac01b5d653443f11065a728f3bb5a7aee9e9a1
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Dec 8 10:02:24 2009 -0600
(fixes #630) stringify revision in mail formatting
commit 08172aba45ebd827fe3351329a310403ca0f42a5
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Dec 7 09:37:33 2009 -0600
trivial change to test notification
commit 0a26b31a14ffe2c0941b8fde9528a4fff2f01ea4
Author: Chris AtLee <[email protected]>
Date: Fri Dec 4 17:10:34 2009 -0500
Fix getChunks when reading gzip files.
Since gzip files are always finished, we don't need to freeze the state
of the logfile by determining where the end of the file is.
commit dcbf829e332577709d7b426fa411e746845943f4
Author: Chris AtLee <[email protected]>
Date: Fri Dec 4 15:16:00 2009 -0500
Fix viewing buildsteps when logfile.hasContents() is False
commit c34b07026d91f9c2904f261e916bf5600aab16f4
Author: [email protected] <[email protected]>
Date: Wed Dec 2 07:30:58 2009 -0800
Fix removal of files when purge try changes.
Was broken in f77caa6937e5f1e2e5e473187ca12fdc42816059.
commit 09260e6c0375a03b8148000e2362627e9905c4be
Author: [email protected] <[email protected]>
Date: Wed Dec 2 07:29:42 2009 -0800
Fix removal of symlinks in rmdirRecursive().
os.chmod fails on Mac with symlinks so skip this step.
commit cc174f0c20ca2a91c85f71328ca1cbd46f3110c9
Author: [email protected] <[email protected]>
Date: Tue Dec 1 13:49:15 2009 -0800
Add more unicode support and unit tests.
commit cd1a02e696629a21ff00e4f9b1c8d031916f5f98
Merge: 765c1da 99d65c9
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Dec 1 14:40:55 2009 -0600
Merge branch 'slavedir2' of git://github.com/maruel/buildbot
commit 99d65c9ad09e68327a758efe8eaf099051f8cc37
Author: [email protected] <[email protected]>
Date: Tue Dec 1 12:22:17 2009 -0800
Restore support for unicode builder name.
The regression was introduced in 0c60cf7040b6595766a6509be4faa47ce77fbe5b.
Add a regression unit test.
commit 765c1da7d71f3229881dc980609f2461572e00bd
Author: Marius Gedminas <[email protected]>
Date: Tue Dec 1 19:53:08 2009 +0200
Fix small Python syntax error in example in docs.
commit 34c1935c9e69392c1c5e0935173b027832a076e1
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Nov 27 10:41:55 2009 -0600
add an optional clickable access_uri for each slave
commit 5746904b70556eefee3636b5e6081b972f3332df
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Nov 27 10:21:50 2009 -0600
prevent HTML injection via buildslave host info
commit 2aec827cd7aa915b2a9bb16fa6434535a847e65a
Merge: 2b6f38a c829d3d
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Nov 24 16:19:31 2009 -0600
Merge commit 'c829d3d'
commit c829d3d651bf51dd8baa47741f124ae917a3d0e7
Author: [email protected] <[email protected]>
Date: Tue Nov 24 13:12:32 2009 -0800
Add documentation and flag accessibility on the master side.
commit 2b6f38ae0b7ac454bfdc274830ceba45e9211929
Merge: b8bf3d5 985c0bd
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Nov 24 14:46:50 2009 -0600
Merge branch 'epyrun' of git://github.com/maruel/buildbot
commit 985c0bd878df0e200853770bf16f31e317e956d6
Author: [email protected] <[email protected]>
Date: Tue Nov 24 12:36:01 2009 -0800
Fix docs/gen-reference to work with epydoc 3.0.1
commit b8bf3d5ef60f6158688f7aaeee186fe37ce64336
Author: Chris AtLee <[email protected]>
Date: Tue Nov 24 14:33:19 2009 -0500
Don't do os.fsync when we're done with a log.
commit f171c13c456a4cd418b9463138324c36945456ab
Author: Kristian Nielsen <[email protected]>
Date: Tue Nov 24 09:28:30 2009 +0100
Fix test failure in test_buildstep.SubunitLogObserverTests
Skip the test when the subunit module is not available.
commit 71f8aa9a01a9f858c5fec616375c108f56f587c4
Author: Kristian Nielsen <[email protected]>
Date: Mon Nov 16 20:16:22 2009 +0100
In clobber source step, if permissions prevent rm -rf from deleting all,
run a recursive chmod and re-try the rm -rf.
This avoids failures that require manual fixup if a step leaves behind
subdirectories with chmod 0 permissions.
This fixes ticket#29 for Posix systems (previous fix is blocking, and only
used on Windows).
commit 8d6d4b7001b6b52dd9be104abc0e0dd9cf2e7ea0
Author: Chris AtLee <[email protected]>
Date: Wed Sep 23 23:54:51 2009 -0400
Adding support for gz compressed log files
commit df5a96f1963f302c601a30f2e5b3771b2b2096f3
Author: Chris AtLee <[email protected]>
Date: Mon Nov 23 18:33:25 2009 -0500
Fixing typo
commit dfa162c82060b6d2b169ec892e397ba8702ed5b8
Merge: f8baa32 cadbb9d
Author: Chris AtLee <[email protected]>
Date: Mon Nov 23 18:24:58 2009 -0500
Merge branch 'master' of github.com:djmitche/buildbot
commit cadbb9df35b08a09fec895d0fc42f3cc55cb62af
Author: John Ford <[email protected]>
Date: Mon Nov 23 17:20:56 2009 -0600
specify a default num_events value for the waterfall in the master
config file instead of changing a hard coded value, and add a
configurable limit, too
commit f8baa326abef1b8b15a4bfb1d1c04e09e1f827cb
Merge: 2e5edf0 281207c
Author: Chris AtLee <[email protected]>
Date: Mon Nov 23 18:15:13 2009 -0500
Merge branch 'master' of github.com:djmitche/buildbot
commit f77caa6937e5f1e2e5e473187ca12fdc42816059
Author: [email protected] <[email protected]>
Date: Sun Nov 22 17:06:25 2009 -0800
Add patched checkout cleanup for SVN checkout. This removes the need to do a fresh svn checkout on each try job.
Add 'keep_on_purge', 'ignore_ignores' and 'always_purge' to SVN.
Add 'ignore_ignores' to Git.
Small cleanups.
commit e092d24fe9fdf4d01d2d9c8752c7036982973af1
Author: Daniel Dunbar <[email protected]>
Date: Fri Nov 20 12:40:09 2009 -0800
Switch Builder.compareToSetup function to just use a comparison on the locks list.
This is more uniform and fixes a crash trying to access the .name field of LockAccess variables; I'm not sure why this was doing the comparison manually in the first place...
commit a6081f8e361aea7765be8a0bac45fdf880cacc4d
Author: Daniel Dunbar <[email protected]>
Date: Fri Nov 20 12:38:19 2009 -0800
Add util.ComparableMixin to LockAccess, and also use
SlaveLock.maxCountForSlave as a compare attr for SlaveLock (since it
could conceivably be used independently from the
_maxCountForSlaveList).
commit 281207c6d3e5171bf0457bf86c1a48c69efaf8c1
Author: [email protected] <[email protected]>
Date: Fri Nov 20 12:25:02 2009 -0800
Replace self.srcdir to self.workdir where appropriate
commit d8fddfa5b0250204a0fa0820d6864e14f09e1bed
Author: Daniel Dunbar <[email protected]>
Date: Fri Nov 20 10:50:29 2009 -0800
Fix crash when viewing a step which hasn't started (invalid subtraction).
This also tweaks the output a bit, for unstarted steps:
--
Timing
Start Not Started
End Not Started
Elapsed Not Started
--
For in progress steps:
--
Timing
Start Fri Nov 20 10:48:47 2009
End Not Finished
Elapsed 39 secs
--
For completed steps:
--
Timing
Start Fri Nov 20 10:48:47 2009
End Fri Nov 20 10:48:47 2009
Elapsed 0 secs
--
commit 010f37dda88168c12b6f22895741a85312d513e2
Author: [email protected] <[email protected]>
Date: Thu Nov 19 11:28:28 2009 -0800
Added SourceBase.sourcedirIsPatched()
commit 0fc8eade38879945b0f2193e37a08a061b8569e0
Author: Kristian Nielsen <[email protected]>
Date: Wed Nov 18 10:58:27 2009 +0100
Fix transposed grid to not crash when specifying categories.
commit 138c831f1bc4340b7043dd74b3081d201abdef18
Author: Kristian Nielsen <[email protected]>
Date: Wed Nov 18 10:20:12 2009 +0100
Fix typo that breaks category argument to grid web status page.
commit 7db28fc8b69cb8d59dbf548cbb7493368fda0d15
Author: [email protected] <[email protected]>
Date: Mon Nov 16 13:37:48 2009 -0800
Fix multiple unit tests broken by 0c60cf7040b6595766a6509be4faa47ce77fbe5b.
commit 1688df9a0576dbcf63be2bb9c81d8898c393d830
Merge: 84a0c8a 2b00a49
Author: Matt Heitzenroder <[email protected]>
Date: Wed Nov 4 21:22:38 2009 -0500
simplified the code so it doesn't have to clone locally
commit 2e5edf03dfa6fc72ae353a4b5aabdd7fe2685077
Merge: 514823b 2b00a49
Author: Chris AtLee <[email protected]>
Date: Wed Nov 4 19:38:16 2009 -0500
Merge branch 'master' of github.com:djmitche/buildbot
commit 2b00a49451bad833f609b383747dcd1f9f947f3f
Author: [email protected] <[email protected]>
Date: Wed Nov 4 07:13:38 2009 -0800
Clarify documentation about builder's 'builddir' and 'slavebuilddir'.
commit 0c60cf7040b6595766a6509be4faa47ce77fbe5b
Author: [email protected] <[email protected]>
Date: Mon Nov 2 18:36:56 2009 -0800
Add support for slavebuilddir in builder's dictionnary.
builddir defaults to builder's name (escaped)
This permits sharing a slave checkout across multiple builders
Includes unit test update and doc.
commit 1d76022c164583bd81b206ecb715ee9105f8b9b9
Merge: 6785c24 c2dc58a
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Oct 30 21:25:48 2009 -0400
Merge branch 'attach2' of git://github.com/maruel/buildbot
commit c2dc58add0ca2efc7a804b71fef7cab9fba8ecc7
Author: [email protected] <[email protected]>
Date: Fri Oct 30 13:49:28 2009 -0700
Add 'addPatch' parameter to mail.MailNotifier, unit test and doc.
Defaults to True to keep previous behavior. Can be set to False to disable attaching patches to the emails.
commit d64156aa120fc756df198baae0b5e9e24d80a40e
Author: Nicolás Alvarez <[email protected]>
Date: Mon Oct 26 00:49:25 2009 -0300
Fix use of WithProperties in documentation example.
commit 7e458eda777f59ec1457dcb4eff75a07b60a2cf8
Author: Robert Collins <[email protected]>
Date: Sun Oct 25 21:11:34 2009 -0400
(closes #610) add subunit log watcher
commit c95253dd1e429f11bb0e5b71c64a8b06941fff5d
Author: Brian Warner <[email protected]>
Date: Thu Oct 22 15:23:02 2009 -0700
addStep(): reject spurious kwargs when using the BuildStep-instance form.
Without this, the args are silently ignored, which is a hassle to debug.
commit 910d7558ca0276af163685aa376f84107ac679a2
Author: KATO Kazuyoshi <[email protected]>
Date: Wed Oct 21 22:08:18 2009 +0900
Revert misc changes.
commit b8d2a5cad7d1abf1f9829bc39c9cddc6d7066cd2
Author: KATO Kazuyoshi <[email protected]>
Date: Wed Oct 21 21:59:44 2009 +0900
Cleanup.
commit df9cf59632b1a5db88dd0fa6eb3fc01d02668e11
Author: KATO Kazuyoshi <[email protected]>
Date: Wed Oct 21 02:44:42 2009 +0900
Be configurable.
commit 57607e8c7de3e944b79299861685915e53515003
Author: Kristian Nielsen <[email protected]>
Date: Sun Oct 18 07:32:26 2009 +0200
In MTR buildstep, use the type of test in the description and descriptionDone on the waterfall page.
This makes it easier to distinguish diffferent test runs in the same build.
commit a69297d5fdfd3f12f7660482a7a8ef1bc48014b0
Author: [email protected] <[email protected]>
Date: Wed Oct 14 18:47:44 2009 -0700
Update comment
commit 776deed181395407c33b17d94ab344bc57f6740b
Author: KATO Kazuyoshi <[email protected]>
Date: Fri Oct 9 08:18:37 2009 +0900
Show "blamelist" on failed to build.
commit 5c9202b8c1bbdfc67ad0aa6c438e78a0de4ce18a
Author: KATO Kazuyoshi <[email protected]>
Date: Fri Oct 9 03:10:51 2009 +0900
Cleanup.
commit 7f95beec26f19baf7c5de65f90f365d52ffcf257
Author: KATO Kazuyoshi <[email protected]>
Date: Fri Oct 9 02:40:12 2009 +0900
DRY
commit 3ba244d413013ee70d9c3a48554a250566e5dc1e
Author: KATO Kazuyoshi <[email protected]>
Date: Fri Oct 9 02:11:38 2009 +0900
Use "notice" to public messages.
commit 6e6fb276e9d139323d993b867909a5066651303c
Author: KATO Kazuyoshi <[email protected]>
Date: Fri Oct 9 01:53:52 2009 +0900
Extract a little method.
commit 25a6b1a86dbab09c6e23329b35a82d710c20df0d
Author: Brian Warner <[email protected]>
Date: Wed Oct 7 17:03:31 2009 -0700
builder.py: start cleanup by adding SlaveBuilder.prepare() and moving the
substantiate() call into it, rather than having Builder switch on the
slavebuilder's class
commit 514823b5bc23547c7f456a6b8fce81332fda161f
Author: Chris AtLee <[email protected]>
Date: Mon Oct 26 07:52:35 2009 -0400
Add a css class for when there are no results
commit 6785c245689c8cdfe7d5341b9bc1677a2207ce5f
Merge: 778f316 0236a3e
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Oct 26 00:09:15 2009 -0400
Merge branch 'master' of git://github.com/nicolas17/buildbot
commit 0236a3eaaa20cc6eb53fb6c99662d59a99f2506b
Author: Nicolás Alvarez <[email protected]>
Date: Mon Oct 26 00:49:25 2009 -0300
Fix use of WithProperties in documentation example.
commit 778f316fe30d8a17c7f2d541d502253038d69faa
Author: Robert Collins <[email protected]>
Date: Sun Oct 25 21:11:34 2009 -0400
(closes #610) add subunit log watcher
commit 3c372f4e360415322e8c01bc68879b73f403504d
Merge: db55e15 1d591e9
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Oct 23 18:13:40 2009 -0400
Merge branch 'irc' of git://github.com/kzys/buildbot into irc-stuff
commit db55e151a9e5a373a4b720b02099ac9e66ec73ad
Merge: 1974aef 265143f
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Oct 22 23:31:41 2009 -0400
Merge branch 'doRevert1' of git://github.com/maruel/buildbot
commit 1974aef0690fe52b37f8b4a7c331f9459cd518de
Author: Brian Warner <[email protected]>
Date: Thu Oct 22 15:23:02 2009 -0700
addStep(): reject spurious kwargs when using the BuildStep-instance form.
Without this, the args are silently ignored, which is a hassle to debug.
commit 5c516dacfa118434eaaca80072af5a8d0e18dcd0
Merge: 20c2099 11c59aa
Author: Brian Warner <[email protected]>
Date: Wed Oct 21 16:48:04 2009 -0700
Merge branch 'master' of github.com:djmitche/buildbot
commit 11c59aa0c41b554d7bcdc9866fb927fcba9ede02
Merge: 391b33d 62ddce3
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Oct 21 18:01:56 2009 -0400
Merge branch 'warner-cleanup'
commit 20c2099a07b72b7026d6d7099e2dfd7566b0837d
Merge: 62ddce3 391b33d
Author: Brian Warner <[email protected]>
Date: Wed Oct 21 14:28:07 2009 -0700
Merge branch 'master' of github.com:djmitche/buildbot
commit 1d591e945dfc518a2b547d387344cb539041787b
Author: KATO Kazuyoshi <[email protected]>
Date: Wed Oct 21 22:08:18 2009 +0900
Revert misc changes.
commit 95f7a0e4f86c9052236e195ead6346545db778fd
Author: KATO Kazuyoshi <[email protected]>
Date: Wed Oct 21 21:59:44 2009 +0900
Cleanup.
commit c56bd20cb96a2e363f5f85aa9a935187abab680a
Author: KATO Kazuyoshi <[email protected]>
Date: Wed Oct 21 02:44:42 2009 +0900
Be configurable.
commit 391b33dbae39b54689aedc345edf64e860d61a37
Author: Kristian Nielsen <[email protected]>
Date: Sun Oct 18 07:32:26 2009 +0200
In MTR buildstep, use the type of test in the description and descriptionDone on the waterfall page.
This makes it easier to distinguish diffferent test runs in the same build.
commit 29c61a55a54bfcc7a1dbf831ca10ebd99f33d9ab
Author: [email protected] <[email protected]>
Date: Thu Oct 15 08:21:01 2009 -0700
Update SourceStamp doc
commit 5cd289ba4762b5ca146dfdbe64b19782a75362dc
Author: [email protected] <[email protected]>
Date: Thu Oct 15 08:02:25 2009 -0700
Revert "Add buildbot try support code, untested"
This reverts commit 9137a5c0d107ac97b2ba6bf373e984096178c9c8.
Better to not add untested stuff in.
commit 265143fce8f4375e58598389ca1f3bb6df7cfa30
Author: [email protected] <[email protected]>
Date: Wed Oct 14 18:47:44 2009 -0700
Update comment
commit 1bf0ddaaff54e2e55af1c96f56e178d37177cfed
Author: [email protected] <[email protected]>
Date: Wed Oct 14 17:19:03 2009 -0700
Add tests for --root and for --patchlevel.
commit 9137a5c0d107ac97b2ba6bf373e984096178c9c8
Author: [email protected] <[email protected]>
Date: Tue Oct 13 11:52:35 2009 -0700
Add buildbot try support code, untested
commit 17e919571571e5c0428b42133f7695fe0029ee90
Author: [email protected] <[email protected]>
Date: Tue Oct 13 07:54:53 2009 -0700
Add support for 'root' option for self.patch, used as the third parameter.
Add these flags to patch invocation: --remove-empty-files --force --forward
commit 11dc5912ce79b10caf28e325fc3f247b5a161ce2
Author: William Siegrist <[email protected]>
Date: Wed Oct 14 09:57:01 2009 -0400
(fixes #627) add category support to AnyBranchScheduler
commit be1431f727129133ce86ed61021469f387dc9644
Merge: 33a0d6a 791014d
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Oct 9 18:10:53 2009 -0400
Merge branch 'master' of git://github.com/gldnspud/buildbot
commit 791014d99c5b7f440419ef8325d58a91d6f1403a
Author: Matthew Scott <[email protected]>
Date: Fri Oct 9 21:57:14 2009 +0000
Change source forwarder for bitbucket.org POST service
commit 33a0d6a76f83a6c3464db7cc8a27b0e65a8b2e41
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Oct 9 10:57:18 2009 -0400
(closes #607) make revision a string
commit 74bdccc691c9be31464111f919851f13ce4b24bd
Author: KATO Kazuyoshi <[email protected]>
Date: Fri Oct 9 08:18:37 2009 +0900
Show "blamelist" on failed to build.
commit ee197b5bc2ac331226753d92074be230f5762ce6
Author: Nicolas Sylvain <[email protected]>
Date: Fri Oct 9 00:48:23 2009 +0800
Fix a regression introduced in 32ebee2a2adf0a1824c21982f50ca18648073d64 where
projectURL is used but not defined.
commit f77912c9d5dfc6576a94ad08a6783a91d1468cbc
Author: Lital Natan <[email protected]>
Date: Wed Oct 7 22:53:24 2009 +0800
use os.makedirs in the git source step, to create intervening directories
commit 4b8c68c068a1c54711878f5e6abff7df575838c2
Author: Brian Warner <[email protected]>
Date: Wed Oct 7 05:29:22 2009 +0800
cleanup: remove dead code from the era of pickled BuildMasters
(remove __setstate__, __getstate__, and styles.Versioned calls from
everything but Status and Change classes)