forked from buildbot/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-0.7.11
1722 lines (1176 loc) · 54.9 KB
/
ChangeLog-0.7.11
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 310110318db06fdba7e03239331760b03b93a8b8
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jul 15 15:26:12 2009 -0400
inc version number
commit 6a5d73d6be3454709a7647e96739ee7f65610546
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Jul 13 12:28:01 2009 -0400
add a default value for branchType, per Marcus and Marijn
commit 3208e2b58d8ddf601df980474238fd1ae4642b2e
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Jul 12 20:09:58 2009 -0400
disable buggy test
commit 66c92bbe78b57af05ccf75fa2f3c7e46c3cbd7de
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Jul 12 10:25:54 2009 -0400
inc to 0.7.11p1
commit f3aa8c78aba7e0ae1a193b49d44efe158278bc68
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Jul 12 10:25:16 2009 -0400
remove accidentally merged test change
commit f5400aa136442ad5c2c2faba18d3368190cab319
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Jul 5 16:23:47 2009 -0400
fix tests to reflect new behavior
commit 6bef012f58925b40bfcb9939732eea2d4ba208c2
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 10 22:49:42 2009 -0400
new version #
commit 66d20cda094340d4a5dafb9477d5607a92c368de
Author: Stefan Seefeld <[email protected]>
Date: Fri Jul 10 22:45:50 2009 -0400
(fixes #582) This patch fixes the test failures by injecting an extractall method into TarFile if not already present.
commit 86c41f28bca73f6e1b81dbaae7bf607eb9501dd4
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 10 22:43:08 2009 -0400
(refs #585) try adding an __init__.py to see if it fixes RPM builds
commit 494ad2f5299245fd60be969900a48771a703fa68
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Jul 9 21:34:42 2009 -0400
fix always-true assertions
commit 94c3fcb398a1db500098fdf134faa47b5e450341
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jul 8 15:22:54 2009 -0400
fix typo: getUpstreamScheduler vs findUpstreamScheduler
commit 685cf09a661e62b0e8e7a8d856388646c7ae3e54
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jul 8 17:33:37 2009 -0400
update NEWS
commit fed8b33c305a5884991942b9272ba36e89d1460a
Author: Benjamin Smedberg <[email protected]>
Date: Wed Jul 8 11:53:29 2009 -0400
(fixes #584) add default value for clobberOnBranchChange
commit ccb20186449e12ba7bcdfe86c8ee380df292b036
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Jul 5 16:19:09 2009 -0400
fix texinfo typo
commit 0a3e2d5e6f010884716c4bae23fbe624350f77a2
Author: Dustin Sallings <[email protected]>
Date: Sat Jul 4 00:33:29 2009 -0700
Fix for log URL generation.
commit 1b80f86cdea1b3c271fa7a9be10477a4e6d05ef6
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Jul 4 15:45:24 2009 -0400
next RC
commit e6394ce9445ac49ab85ae1554dbe230da7ffb352
Author: Dustin J. Mitchell <[email protected]>
Date: Sat Jul 4 01:16:52 2009 -0400
inc version #
commit 22461696998e1e7399750a57669028782fb1f6d2
Author: Sidnei da Silva <[email protected]>
Date: Fri Jul 3 22:43:01 2009 -0400
close the tarfile before removing it
commit ecab6139b85ed59f61a98be3b12b547f73346f59
Merge: 9f32d6e 577f998
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 22:35:06 2009 -0400
Merge branch 'newcss' of git://github.com/nsylvain/buildbot
commit 9f32d6e5ef929801655953642bf7cf680491297a
Merge: e00f34d a312727
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 22:34:46 2009 -0400
Merge branch 'categories' of git://github.com/dustin/buildbot
commit e00f34d00f082d0e6a53d4ea99cf05bccd63f587
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 22:34:29 2009 -0400
version 0.7.11-rc1
commit a312727fbe15b5e6b73b50d9e67aac5c0619422b
Author: Dustin Sallings <[email protected]>
Date: Fri Jul 3 01:14:46 2009 -0700
Support categories from BzrPoller
commit 6979e585b1df13d3227160e8ac0c963fa319a135
Author: Dustin Sallings <[email protected]>
Date: Wed Jul 1 14:41:44 2009 -0700
More category filtering.
commit 30db5e0b7b158a8dd96efde38a25db89b5a3313a
Author: Dustin Sallings <[email protected]>
Date: Wed Jul 1 11:08:38 2009 -0700
Allow git_buildbot to specify a change category.
commit eb5fb01bc8b0fc70234aeda06e40eaba6c85e99a
Author: Dustin Sallings <[email protected]>
Date: Tue Jun 30 13:59:52 2009 -0700
Add category to builder status.
commit 4066acfdd6477e59b00767c1c5607e4666e15d6d
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 17:54:04 2009 -0400
(refs #35) fix dependent scheduler re-checking: make calculation of upstream lazier
commit 0c97e6e56f2e6c5976afdd8a65f48588b647034a
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 17:52:44 2009 -0400
fix typo, remove outcommented debug stuff
commit 715f729b88f439d02c2d04234856c1fe248c8033
Author: Dustin Sallings <[email protected]>
Date: Fri Jul 3 17:31:57 2009 -0400
(fixes #489) make got_revision work for perforce builds
This only works in the case where a build was attempted under a
specific revision, but that is the most common use case at least where I
am.
commit c4de4851668847e9235a363f706a2634489e6f28
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 17:26:38 2009 -0400
(closes #493) convert remaining GET form to use POST
commit 1a5ff348ccdabe89618330412d2698030575c811
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 15:30:58 2009 -0400
(refs #318) simplify slave shutdown; doesn't fix dangling reference
commit 4b66939bd836f16455384800771a1b3a7f689658
Author: Darragh Bailey <[email protected]>
Date: Fri Jul 3 12:45:41 2009 -0400
(closes #576) use a list comp, not a generator, for py2.3
commit 4403e6c1fe364e6782dc18e1a5861c08974cfdb3
Author: Darragh Bailey <[email protected]>
Date: Fri Jul 3 12:43:49 2009 -0400
(closes #575) explicitly import set() on py2.3
commit 02c2d2468842ef6802f41c39bb5b609e0c8ccc20
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 12:39:49 2009 -0400
(closes #574) don't use keyword arguments to List.sort
commit 6a773f6697c398c43d330dfa1e151ed2e5ae4a55
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jul 3 12:31:15 2009 -0400
(fixes #573) fix documentation typos
commit 577f99813b8a249323b2e62b5c56b53c1f3c04c9
Author: Nicolas Sylvain <[email protected]>
Date: Thu Jul 2 12:57:22 2009 -0700
Add a new css file. It is similar to classic.css, but has less bright colors, and
does border rounding if the browser supports it. build.chromium.org and build.webkit.org
are using a similar css file.
Copying this css to public_html/buildbot.css should work.
commit b4f187dc07682d865fdf47edf74ea6604c9327dc
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jul 1 10:15:42 2009 -0400
fix Trial step use in sample.cfg and fix texinfo documentation of same to match the docstrings
commit d33d7d884ac6c28bd60fb0d227118744e73d7e44
Merge: 88d1548 b303acb
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Jun 30 14:36:08 2009 -0400
Merge branch 'master' of git://github.com/bbangert/buildbot
commit b303acbe73b6f4a61436b4885ffa67df8a4ac2c5
Author: Ben Bangert <[email protected]>
Date: Tue Jun 30 11:22:44 2009 -0700
Updated xmlrpc patch to address comments
commit 88d15481f17fb61ffa2708836a2dd576ab999a0a
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Jun 30 11:29:09 2009 -0400
rename old extra_args in commands.py to svn_args to avoid confusion
commit 66d3453b04fae019ce7c19b01b14dcd0dfb2d39c
Merge: bf4ef54 595160b
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Jun 30 11:17:57 2009 -0400
Merge branch 'master' of git://github.com/zellyn/buildbot
commit 0fc76a1fca3603a1ac91d5c62eb4ab01a96b6126
Author: Ben Bangert <[email protected]>
Date: Mon Jun 29 20:24:12 2009 -0700
Updating for custom xmlrpc functions and additional info used for
PylonsHQ queries.
commit 595160b9db79b168417fbebbed7e13e920212ab1
Author: Zellyn Hunter <[email protected]>
Date: Mon Jun 29 15:34:36 2009 -0400
added extra_args to SVN docs
commit 68b66bf19ffb2e61716390cfc7f7d25537225312
Author: Zellyn Hunter <[email protected]>
Date: Mon Jun 29 15:16:30 2009 -0400
Added extra_args parameter to SVN buildstep.
commit bf4ef54b4bf47e576953c40b14cb282937c4c3e0
Author: Nicolas Sylvain <[email protected]>
Date: Fri Jun 26 14:20:31 2009 -0700
Add a new argument to the waterfall page: "failures_only". If this
argument is set to True, the waterfall will be showing only the
builders that are failing.
This is useful when you have many builders and want to monitor
only the failures.
A builder is "failing" if:
- If the last build is not successful, or
- A step for the current build(s) failed, or
- The builder is offline.
commit 4c4df020732a9acb19451bfa3cff5a4d34f8e241
Author: Nicolas Sylvain <[email protected]>
Date: Wed Jun 24 16:31:06 2009 -0700
Add a new status resource "BuildStatus" that shows a waterfall-like
display of a single build for a single builder. This is to be used
by the console view that I am working on. (It appears when you click
on a box for a given build.)
Example: http://build.chromium.org/buildbot/waterfall/buildstatus?builder=Vista%20Tests&number=8013
Also add the documentation, and my name to the CREDITS file.
commit 3a95b1107d23a0baf06f0075319ec6b774291690
Author: Chris AtLee <[email protected]>
Date: Fri Jun 12 15:14:14 2009 -0400
Adding tests for changeHorizon parameter
commit 27e0b4426aaed8da386378e1ac4fb287d1311feb
Author: Chris AtLee <[email protected]>
Date: Fri Jun 12 15:14:08 2009 -0400
Fixing docs
commit 8efdfd9cd4937d344d34f3e50ebb6dd8c1110b0c
Author: Chris AtLee <[email protected]>
Date: Fri Jun 12 15:13:54 2009 -0400
Adding some simple tests
commit b87e59e450b0bffeb64868940c62c170334b9d2a
Author: Chris AtLee <[email protected]>
Date: Fri Jun 12 14:49:45 2009 -0400
Adding docs for changeHorizon parameter
commit fe750e3a2c9cdb1fa11da3241363caa7a950d17b
Author: Chris AtLee <[email protected]>
Date: Fri Jun 12 13:28:34 2009 -0400
Implement changeHorizon
commit 1890c7ae3b7b4500f6971c53e6b89a1f3cf2ab1f
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Jun 22 12:11:04 2009 -0400
insert a cross-reference to allowForce to help users find the option
commit 6f7ea917fc5cc3e2d2bdf7aaabdc1c8bf7e0ba8f
Author: Stefan Seefeld <[email protected]>
Date: Mon Jun 22 11:42:25 2009 -0400
(closes #577) users can add a 'compress' attribute (either None, 'gz', or 'bz2') to the DirectoryUpload step
commit 635e107e20596b848682a1910591601f6298fac5
Merge: 42a690c 2932ebd
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Jun 21 15:02:49 2009 -0400
Merge branch 'master' of git://github.com/geraud/buildbot
commit 2932ebd6c51151f38e78f8c13c72e97594db34b3
Merge: 33cf574 6b18471
Author: Geraud Boyer <geraud@sparkle.(none)>
Date: Fri Jun 19 18:03:51 2009 -0700
Merge commit 'djmitche/master'
commit 33cf57462396807e6d9e23c17054651b0f666b46
Author: Geraud Boyer <[email protected]>
Date: Fri Jun 19 17:43:40 2009 -0700
fixed typo
commit 42a690c4e2af19cee8e8a7cefd1f09b5cfa906da
Author: Nicolas Sylvain <[email protected]>
Date: Fri Jun 19 16:07:57 2009 -0700
Fix mail.py to be backward compatible with python 2.4. In python 2.4 the "x if y else z" syntax is not supported.
commit 6b184718ee9576c0577c4fd9fb8dda7a2edf8754
Author: Chris AtLee <[email protected]>
Date: Wed Jun 17 21:06:38 2009 -0400
Fix unicode handling in waterfall
commit b93ff4719b4ea4f8a85bbf3059a6484524c70844
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 15:40:25 2009 -0400
make *horizon update on restart and reconfig
commit 4ff018e9817b63fc901ebf3d0a158f7504d1dee5
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 15:18:41 2009 -0400
add config for the BuilderStatus *Horizon options
commit e05ef33118fb4ac756bc4096369c711b6a57092e
Merge: 742aa73 75b1b51
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 16:21:15 2009 -0400
Merge branch 'horizonconfig'
commit 75b1b517d07c9d553e992347ed9c158583f62705
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 15:40:25 2009 -0400
make *horizon update on restart and reconfig
commit 742aa73b2e7d5763db89c29e5e74b05f67ca704b
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 15:22:13 2009 -0400
fix typo
commit 40d989095d3fa49f6e81588402736a9a8bd3821e
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 15:18:41 2009 -0400
add config for the BuilderStatus *Horizon options
commit a88fca767b12cfaa72d4a103973308195eb533a2
Merge: c46e007 2ff2739
Author: Chris AtLee <[email protected]>
Date: Fri Jun 12 14:13:42 2009 -0400
Merge branch 'master' of [email protected]:djmitche/buildbot
commit 2ff2739aa936c5d9ef212861111aea1dc1ba01c4
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 13:04:49 2009 -0400
make the 'force build' option a little more obvious
commit d9a3212a9f3eef0ee2aeec7bc8dc1badc8cbf4d5
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 12:56:28 2009 -0400
add para about grid/
commit 8430a9fd113d3184cf07bb69a3e89a57417c5385
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 12:53:07 2009 -0400
point people to buildbot.net, not buildbot.sourceforge.net
commit 9fb4486a4f74085122a6a15b482d66dceb0b9ff9
Merge: ffd553b c462bf8
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 12:34:03 2009 -0400
Merge branch 'web-improvements' of git://github.com/catlee/buildbot
commit ffd553b859572da55b626570133b84d893cfa887
Merge: 2f32e15 53075cc
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 12 11:49:01 2009 -0400
Merge branch 'master' of git://github.com/geraud/buildbot
commit c46e00762df4aa63995f641039b9bdf97ef3243a
Author: Chris AtLee <[email protected]>
Date: Fri Jun 12 11:09:20 2009 -0400
Fixing up whitespace
commit 53075cc177b0c442f3714c9762209075c5c03a4f
Author: Geraud Boyer <geraud@sparkle.(none)>
Date: Thu Jun 11 21:46:35 2009 -0700
Added substantiating state for Latent slaves.
The problem is that a booting EC2/Latent instance could be chosen more than once
since its state while booting is still latent
commit 2f32e1558d7ad40fbc385c3822059ed88d57089c
Merge: f826187 6286468
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Jun 11 20:52:06 2009 -0400
Merge branch 'master' of git://github.com/geraud/buildbot
commit f8261872a9aecdfef7d5c93f265b0ba2bb4155b1
Merge: 964bcb3 b4de984
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Jun 11 20:45:14 2009 -0400
Merge branch 'master' of git://github.com/bdbaddog/buildbot
commit 964bcb3facf6263ae249a1a25b978bae87086550
Merge: f857fdb 75e2cf7
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Jun 11 20:43:41 2009 -0400
Merge branch 'master' of git://github.com/roder/buildbot
commit 62864685e7a24f2040ce36830867ff56be881b76
Merge: 92fb825 f857fdb
Author: Geraud Boyer <[email protected]>
Date: Thu Jun 11 13:27:02 2009 -0700
Merge commit 'djmitche/master'
commit 92fb825b799245e7f39d412e5343805446465917
Merge: fe39c5f b7d66f0
Author: Geraud Boyer <[email protected]>
Date: Thu Jun 11 13:18:07 2009 -0700
Merge commit 'mirkoboehm/master'
commit f857fdb82ba9af3d095d4acd3c95c7f629464fb0
Author: Chris AtLee <[email protected]>
Date: Wed Jun 10 19:54:34 2009 -0400
If allowForce is False, don't allow graceful shutdowns
commit b4de984bb8a0c5db5d1aa01f826692c266bb6789
Author: William Deegan <[email protected]>
Date: Sun Jun 7 19:20:52 2009 -0700
More changes for cvs checkout_options
commit acd56acd7dbfebf1aa0f28f78b6942f2ac6ca3b8
Author: William Deegan <[email protected]>
Date: Sun Jun 7 18:48:31 2009 -0700
Add checkout_options argument to CVS build step.
This will allow adding cvs checkout specific arguments.
This is needed to add -N to the cvs checkout command line when the user has a cvs module alias.
commit 75e2cf7ce75c6b3ff9e9f138175311ccd9c22360
Author: Matt Heitzenroder <[email protected]>
Date: Fri Jun 5 19:19:16 2009 -0400
switched from subprocess to commands, added logging
commit c462bf85fc86c1710c23026231f56deb90b317f3
Author: Chris AtLee <[email protected]>
Date: Fri Jun 5 16:58:06 2009 -0400
Distinguish between requests being removed because they've been started,
and requests being removed because they've been cancelled.
Create a new function on the status plugin that receive the
requestCancelled notification.
commit 76f4ebd3dbafb9231cc435fb93b962c862aa7922
Author: Chris AtLee <[email protected]>
Date: Tue Jun 2 12:40:10 2009 -0400
Return a "No Resource" page if requesting to view a non-existent slave
commit b9d93c391369d24f6bb36b3d17075c80dd45bb97
Author: Chris AtLee <[email protected]>
Date: Tue Jun 2 12:31:29 2009 -0400
Adding a "Cancel All" button for pending builds
commit 2f44d5d3129070aa212feea0aca24636405f9478
Author: Chris AtLee <[email protected]>
Date: Tue Jun 2 12:21:37 2009 -0400
Add reload= support to one_line_per_build page
commit ab7716e4387e116eaecd5c39b1309f756607943d
Author: Chris AtLee <[email protected]>
Date: Fri May 29 13:16:33 2009 -0400
Fix up current build display on per-slave page.
Also rename 'builds' parameter to 'numbuilds' to be similar to other
pages
commit 0dffaf24e05429b18dce168e83ff9b716a08b259
Author: Chris AtLee <[email protected]>
Date: Fri May 22 22:29:02 2009 -0400
Punting on BuildRequestControl.subscribe/unsubscribe
commit cd93b20f3dbf847de08d06bd2ddf0b071a4d54ba
Author: Chris AtLee <[email protected]>
Date: Fri May 22 22:19:16 2009 -0400
Clean up display of pending builds with changes
commit d4da984c0cb18adebee5e52624b4dcce3b7c316e
Author: Chris AtLee <[email protected]>
Date: Fri May 22 22:09:14 2009 -0400
Adding support for cancelling pending build requests
commit 6acb528c1ca5a3aa44a5b5e2b7c130f865a88063
Author: Chris AtLee <[email protected]>
Date: Fri May 22 17:48:42 2009 -0400
Add elapsed time for incomplete steps and builds
commit a5dbadf03862d2f399b654a8309acecdc68df3a2
Author: Chris AtLee <[email protected]>
Date: Tue Apr 7 11:26:15 2009 -0400
Web page tweaks
- Don't throw an exception when trying to stop an already stopped build
- Display pending builds on builder pages
- Show Stop Build button on buildslave page
commit 2f1b0744c724b91f7abf77847163acb270c72b93
Merge: c13c9e8 3b99ed9
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 5 13:44:20 2009 -0400
Merge branch 'master' of git://github.com/roder/buildbot
commit c13c9e886a0db3af60ce612d1241ed17629c87a7
Merge: cc53ddf b7d66f0
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jun 5 13:42:28 2009 -0400
Merge branch 'master' of git://github.com/mirkoboehm/buildbot
commit b7d66f05e55ff26ca5735fcded4df03a18820d9f
Author: Mirko Boehm <mirko@celeron-400.(none)>
Date: Fri Jun 5 15:31:55 2009 +0200
- path for the undefined global variable in web/builder.py
commit fe39c5fd5f0d4af2078638766d7384f9dea98ad5
Author: Geraud Boyer <[email protected]>
Date: Thu Jun 4 15:45:32 2009 -0700
Added user_param as a param for an EC2LatentSlave
commit 3b99ed96e13a0d7aa8480ef8bd00cd196a77054f
Author: Matt Heitzenroder <[email protected]>
Date: Thu Jun 4 09:28:11 2009 -0400
added remote & branch to the pull
commit cc53ddf043cad572b0451e9e4a8eb11877bbd092
Author: Kristian Nielsen <[email protected]>
Date: Thu Jun 4 10:50:28 2009 +0200
Fix reloading of configuration file with new mail change sources.
Some significant object attributes were not being compared, causing
reload to not realise that the new config contained changed change
sources.
commit 2cf869b3c96e8c0394047e599d3137232e938f05
Merge: b19e6c5 8b4388b
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 17:01:41 2009 -0400
Merge branch 'myfixes' of git://github.com/mlyle/buildbot
commit 8b4388b198e63007478a050022722dfd18ef4bf9
Author: Michael Lyle <[email protected]>
Date: Wed Jun 3 12:45:42 2009 -0700
Add appropriate documentation for the revlinktmpl parameter to svnpoller. -mpl
commit b19e6c5c16b73ae7cbe550578f9520b595722c64
Merge: f6b012f 9ae29f5
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 12:28:19 2009 -0400
Merge branch 'master' of git://github.com/roder/buildbot
commit 9ae29f5c22bc6b49998881155f09ffba53913fb5
Author: Matt Heitzenroder <[email protected]>
Date: Wed Jun 3 12:04:40 2009 -0400
changed payload from an object property to an parameter for process_change()
commit f6b012ffc2f49b43780470904aacfe530f102c59
Merge: 0d0a8fc 790577a
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 02:53:37 2009 -0400
Merge branch 'myfixes' of git://github.com/mlyle/buildbot
commit 790577a52823299e605c2de924f8354fa6509945
Author: Michael Lyle <[email protected]>
Date: Tue Jun 2 23:32:11 2009 -0700
Add infrastructure so that revisions may have an associated URL, that displays
in the web interface and elsewhere. This is so buildbot can integrate against
things like websvn which present very nice views of changes in a revision.
1) Update changes.py constructor to take a revlink string -- containing an
url to a webpage for the revision.
2) Update changes.py HTML generation to link that from where revision numbers
occur; also was careful so that if past objects exist without that property
everything remains OK.
3) Update svnpoller to take a revision link template-- a pattern to build
URLs for specific revisions when creating new changes.
-mpl
commit 0d0a8fc9c7b7267b4adf346ade973949b3cfdc99
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 02:14:19 2009 -0400
refs #552 - detect 'http:' prefix in create-slave invocation and fail
commit 0839deb2dd349f7df172524900bff672f83c704d
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 02:07:58 2009 -0400
(refs #499) make testNightly more resilient to DST funniness
commit b9cf37ec576a54e0611958b363bda2c4cdd168c1
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 02:04:05 2009 -0400
fixes #493 - use POST method; thanks to Minesh Patel (mpatel20 on SourceForge)
commit 82fec61ffbab69a154f5c10b55255da595ec9f5e
Merge: e8f292b f0b1311
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 01:54:00 2009 -0400
Merge branch 'master' of git://github.com/adamv/buildbot
commit e8f292ba89fba6fb1731a1bb33aa5fb62e6ac829
Author: Jose Dapena Paz <[email protected]>
Date: Wed Jun 3 01:49:10 2009 -0400
(refs #476) Add a link in builder view to get the waterfall view of just one builder
commit f5ad08fab97bd3f3ea17654f6a81b363238e8bf0
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jun 3 01:45:17 2009 -0400
(refs #475) automatically create workdir if it doesn't exist
commit f0b1311801a1c5c7b7caefeb6d4933425b7f10ef
Author: Adam Vandenberg <[email protected]>
Date: Mon Jun 1 15:20:42 2009 -0700
Fix p4poller import in sample code.
commit f16742cfd7a9255ce4364adee7579748eaaaabb5
Author: Matt Heitzenroder <[email protected]>
Date: Sat May 30 15:00:39 2009 -0400
Added service for github's post-receive service hook
commit 259012aed1f94213e398823173bb5816f9d10937
Author: Dustin J. Mitchell <[email protected]>
Date: Wed May 27 10:39:29 2009 -0400
remove .stgit-edit.txt and add it to .gitignore
commit 0cae8a1711aa153ac7e0b226ea742333a540aaec
Author: Chris AtLee <[email protected]>
Date: Wed May 27 11:48:34 2009 -0400
Fixing bad identation from 77ca3ff84ffc8a2f40d060ef628984e1b684cffe
commit fae36ba27d5262cf6bc6a099e80a6bde2ac067a8
Author: Chris AtLee <[email protected]>
Date: Tue May 26 17:41:44 2009 -0400
Preserve unicode strings in commands
commit e6b00e9cc02e0bd797b0cc0f37847435acc62326
Author: Chris AtLee <[email protected]>
Date: Mon May 25 07:38:29 2009 -0400
Force commands to be composed of strings.
Fixes: #569
commit a421d38875b41e38d9a7a976235d80a1e9cd2415
Author: Marcus Lindblom <[email protected]>
Date: Mon May 25 21:27:41 2009 +0200
Fixes #267. Add 'change' mode to MailNotifier to notify on all build status changes
commit 77ca3ff84ffc8a2f40d060ef628984e1b684cffe
Author: Stefan Seefeld <[email protected]>
Date: Sun May 24 22:09:00 2009 -0400
(refs #557, #559) use tarfile to upload multiple files from the master
commit 900816e30f37199019e83a0247b9bb957367b853
Author: Kristian Nielsen <[email protected]>
Date: Sat May 23 07:25:57 2009 +0200
Add the missing sample test emails for the testing of class
BzrLaunchpadEmailMaildirSource.
commit 6cd1fc4528c562ea7c0a542c8f3fe029acb9b88d
Merge: 99fec93 530c657
Author: Dustin J. Mitchell <[email protected]>
Date: Fri May 22 17:36:32 2009 -0400
Merge branch 'myfixes' of git://github.com/cpeyer/buildbot
commit 530c65792e6b4dbea952b936c952ed7216bfcfd5
Author: Chris Peyer <[email protected]>
Date: Fri May 22 14:12:16 2009 -0700
Fix "TypeError: cannot concatenate 'str' and 'NoneType' objects" error when repourl is None and branch is None.
commit c389208618ca4eb026cf3b3d7c9c87859bb86ca1
Author: Chris Peyer <[email protected]>
Date: Fri May 22 14:00:06 2009 -0700
When dealing with multiple changes, set the branch and revision to the last change in the tuple instead of the first in case the changes are from different branches.
commit 99fec93331026348dda885a36ac0364807051d65
Author: Dustin J. Mitchell <[email protected]>
Date: Fri May 22 16:59:24 2009 -0400
don't fail when launchpad emails are missing (like they are now)
commit a121e67925839023eb8f93ad0b75307d6c1a3be6
Merge: 9b4ede2 3896d0c
Author: Dustin J. Mitchell <[email protected]>
Date: Fri May 22 16:55:31 2009 -0400
Merge branch 'bzr_launchpad_mail' of git://github.com/knielsen/buildbot
commit 9b4ede2f3f646323b9f5723f5a10b23b1031685b
Merge: e60bc33 fb62037
Author: Dustin J. Mitchell <[email protected]>
Date: Fri May 22 16:51:59 2009 -0400
Merge branch 'myfixes' of git://github.com/adamac/buildbot
commit e60bc33375c876a8526797aad528d7eb98c7865e
Author: Nicolas Sylvain <[email protected]>
Date: Fri May 22 16:47:34 2009 -0400
(fixes #560) chromium patch to show step times
commit b1fbfff9ac8d413ffb538384be03468dd8d6b7e8
Author: Dustin J. Mitchell <[email protected]>
Date: Fri May 22 16:41:14 2009 -0400
whitespace fix
commit 52d1ccc30d25f28051f3724e0ab49ebc6757f44c
Author: William Siegrist <[email protected]>
Date: Fri May 22 16:34:38 2009 -0400
Add support for logfiles to contain dicts with the follow option
Enable LogFileWatcher to "follow" only logfile entries added during
a buildstep's execution, ignoring previous contents.
commit bad05d51ce35c54b850c9222fb8597d2d5edd01e
Author: Neil Hemingway <[email protected]>
Date: Fri May 22 21:30:04 2009 +0100
getResults can return 5 differen status(es). Resolves #567
commit 0d445057e07937e1aa8f8a0719d11f622b333e77
Author: Dustin J. Mitchell <[email protected]>
Date: Fri May 22 14:21:32 2009 -0400
don't kill a non-integer pid
commit eee8d5cce2991d535d12eb5703537774d4c88a0e
Author: Dustin J. Mitchell <[email protected]>
Date: Tue May 19 21:57:52 2009 -0400
Revert "xmlrpc_getLastBuilds now returns the correct number of builds when the current build is not finished."
This reverts commit eb6c3a4b37cddd175fe2843ebe4013216939e4af.
commit fb62037664ffc91145a2e7b3108493d60eb1fbd0
Author: adam <[email protected]>
Date: Tue May 19 16:14:36 2009 -0700
xmlrpc_getLastBuilds now returns the correct number of builds when the current build is not finished.
commit c6bffbce006177310930756c97a711fe116555e5
Author: Dustin J. Mitchell <[email protected]>
Date: Tue May 19 11:54:57 2009 -0400
include docs/Makefile in the source dist
commit eb6c3a4b37cddd175fe2843ebe4013216939e4af
Author: adamac <[email protected]>
Date: Mon May 18 21:41:23 2009 -0700
xmlrpc_getLastBuilds now returns the correct number of builds when the current build is not finished.
commit 2c197929544210b7e88ccf92234f66a87b02c45b
Author: Ben Hearsum <[email protected]>
Date: Tue May 19 10:29:29 2009 -0400
Properly iterate throw MailNotifier's extraHeaders dict.
commit 3896d0c64af6c2b9758d9ad13c5b9f008f9425ae
Author: Kristian Nielsen <[email protected]>
Date: Tue May 19 16:07:06 2009 +0200
Implement class BzrLaunchpadEmailMaildirSource
This is a change source that picks up changes from email subscriptions
to Launchpad-hosted bzr branches.
commit 617bc8d4f4aa1eddd750c3ada0dee8068c4ed717
Author: adamac <[email protected]>
Date: Mon May 18 21:41:23 2009 -0700
xmlrpc_getLastBuilds now returns the correct number of builds when the current build is not finished.
commit 483a6043ed2cab2436009eeb7465269b7a48e65f
Author: Marcus Lindblom <[email protected]>
Date: Sun May 17 11:19:38 2009 +0200
See #446. Mercurial should clone to specific rev when in clobber and dirname-branch mode
commit f120bbacc35d6cec11e96a2307b852d412fcbcd4
Author: Chris AtLee <[email protected]>
Date: Fri May 15 07:38:09 2009 -0400
Fix logging calls from build prioritization code.
Was using log.err(None, "message...") to log exceptions. Older versions
of twisted do not support this, so switched to use this format:
log.msg("message...")
log.err(Failure())
commit 9b228778b5fe57d537b07ce31a966472f3c63400
Merge: 003c6fd 56f439b
Author: Dustin J. Mitchell <[email protected]>
Date: Thu May 14 14:23:52 2009 -0400
Merge branch 'bzr_puller_fix' of git://github.com/knielsen/buildbot
commit 56f439b542f00e223e3c5dacdf941c0ac03f602f
Author: Kristian Nielsen <[email protected]>
Date: Thu May 14 19:35:38 2009 +0200
Fix two bugs in the BzrPoller:
- When re-loading a configuration file where an extra BzrPoller is added,
there was a race condition that would cause the poller to run before
initialisation was done, causing an exception and failing to add the
new poller.
- When specifying an explicit branch name for the BzrPoller, it used
the wrong branch name when looking at old revisions during restart,
causing it to think that the tip of every branch was new and consequently
re-build every branch at every restart (the code for when branch_name is
specified as SHORT also looks wrong, but is not fixed in this commit. I
don't know if everyone uses SHORT anywat).
commit 003c6fd89c54f4fc0090c25dbcb531e663eec97d
Merge: fd2ed11 cc98611
Author: Ben Hearsum <[email protected]>
Date: Thu May 14 11:00:40 2009 -0400
Merge branch 'master' of [email protected]:djmitche/buildbot
commit fd2ed117457bca374b23a7232c7cf40f1761b15a
Author: Ben Hearsum <[email protected]>
Date: Thu May 14 10:58:54 2009 -0400
Adding extraHeaders parameter to MailNotifier
commit cc98611d9416da0116844aa9dd0a81f340097245
Author: Chris AtLee <[email protected]>
Date: Sat May 9 18:05:04 2009 -0400
Adding docs for hook functions
commit 44376b8a91241d1b780fb1ffc5fc56fcc09fefa3
Author: Chris AtLee <[email protected]>
Date: Sat May 9 18:04:51 2009 -0400
Handle returning None from nextBuild
commit 9158117ce62e0d9a4e7c4008fc7c14969b5755f5
Author: Chris AtLee <[email protected]>
Date: Sat May 9 11:34:04 2009 -0400
doc fixes
commit 8850f0b18f22b34a9b225cd0af4c7a984a4c03d1
Author: Chris AtLee <[email protected]>
Date: Sat May 9 01:25:52 2009 -0400
Adding test cases for slave, build, and builder ordering
commit a29752ca27f3ba173baf9587ce3f2bf75ec1e96b
Author: Chris AtLee <[email protected]>
Date: Fri May 8 23:44:49 2009 -0400
Change builderOrder to prioritizeBuilders
Hooks are now called with extra information like the builder object or
buildmaster.
Hooks are now updated after a reconfig
commit 69f4453c8d9d67cd31284bf5027f6b99b701818c
Author: Chris AtLee <[email protected]>
Date: Fri May 8 22:12:31 2009 -0400
verify that nextSlave is callable