forked from buildbot/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog-0.7.10
1814 lines (1235 loc) · 60.7 KB
/
ChangeLog-0.7.10
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 3f82bdf779ab16857667f450f11f0dc84049c015
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 13:35:37 2009 -0500
set BuildStatus.requests to an empty value in constructor
commit 48a0947ad8e829963f9564ab27848a66230f381a
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 13:22:05 2009 -0500
(refs #176) use buildmaster_service.master, not ..parent, so that cached web connections can still get reasonable info
commit cc9abfe46e718a3f91fec51c7091c8698f6f41bf
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 13:10:39 2009 -0500
(fixes #435) stub out BuildStepStatus.setColor
commit 5fc70886bef753aae96dbfa065e481017ee9b82a
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 12:55:30 2009 -0500
(refs #390) properly handle a return value of SKIPPED from step.start()
commit 865abf5d98dda8ee71d64b6b700a5f5f0601f62d
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 12:23:54 2009 -0500
(refs #302) start the missing-slave timer when buildbot starts up, so that we hear about slaves missing at startup, too
commit 9fd150f60ac717757273caaaddaebc9b8de46d31
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 13:02:11 2009 -0500
don't pickle BuildStatus.requests
commit 73c9a5df3b61e9d2743a9ffcdd8f4a6075cda7df
Merge: 1476fa7... 0f6a0f0...
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 11:51:27 2009 -0500
Merge commit 'catlee/request_status'
commit 1476fa7bba8fb80d24be94d6325d1394b0af2ed9
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 11:35:38 2009 -0500
remove refs to sf.net
commit d7f085e7e7a31824e268c0464a7b3da79fe3ecbf
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 25 11:21:30 2009 -0500
(refs #41) add ability to send username and password to the svn command
commit 2fcf745a96bfef89ac886b50e4ea0c8d6fdc692d
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 24 19:49:39 2009 -0500
(refs #41) add ability to obfuscate a ShellCommand argument on the slave side
commit 3738c26455bc8a25bee78672d3e51eb7313c83a1
Author: Neil Hemingway <[email protected]>
Date: Tue Feb 24 22:09:34 2009 +0000
Resolve #379 - Use makedirs rather than mkdir to create intermediate directories
commit 0f6a0f019f2259a00cfa7c8f87a7734ce3da504a
Author: Chris AtLee <[email protected]>
Date: Tue Feb 24 15:46:16 2009 -0500
Allow access to build requests from build status.
Also, allow status plugins to get notified when new build requsts
arrive.
commit 9c4712b11e05fef06796af5eacffd7648b943143
Author: Chris AtLee <[email protected]>
Date: Tue Feb 24 15:11:08 2009 -0500
Fix status where change object's comments field is None
Signed-off-by: Dustin J. Mitchell <[email protected]>
commit c42b681aad38bed2ae7ae952c5a465a9f70c62bf
Merge: 4ae3012... 436c2a6...
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Feb 23 16:57:21 2009 -0500
Merge branch 'bug388' of git://github.com/nhemingway/buildbot
commit 436c2a6cca8ef4943798cdaf6b0a4125c231fa5f
Author: Neil Hemingway <[email protected]>
Date: Mon Feb 23 21:54:06 2009 +0000
Resolve #388
builder events now have an exception firewall between them and the status plugins they call
commit 0f8c4061603bce5904f3192cfddb7134636a071f
Author: Neil Hemingway <[email protected]>
Date: Mon Feb 23 21:28:08 2009 +0000
Don't just subscribe when told via IRC - do so when configured via config file
commit 4ae30126d58ea6f0690a9bc482f65078c29adf32
Author: Scott Lawrence <[email protected]>
Date: Mon Feb 23 15:11:04 2009 -0500
(refs #376) prettify the ETA in the waterfall
commit 2ee1e9f05b0f89c599eb3417b656f2445426e9a7
Author: John Saxton <[email protected]>
Date: Mon Feb 23 14:55:28 2009 -0500
(fixes #170) add addLogs=[list] to MailNotifier
commit b79fbb8dad3dbc0f061dd08cb79ae641af86ca24
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Feb 23 14:22:42 2009 -0500
(refs #349, #85) reset a builder's status after a ping is done
commit 419470c07038cb55ed06faf07bc9d1f3eb7ac69c
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Feb 23 11:53:00 2009 -0500
(fixes #160) create parent dirs before invoking 'cp'
commit b9610e17915a69c7e7462a849035c2449702c0aa
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Feb 23 10:00:58 2009 -0500
fix typo
commit ca9fb9a865475c39039bfd01cb048f7051a5dd68
Author: Robin Eckert <[email protected]>
Date: Sun Feb 22 20:02:12 2009 -0500
(refs #312) only set LC_MESSAGES for source steps
commit 99a18de59ae61cf2198dac52a37d8e9606c269bf
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 22 19:08:31 2009 -0500
fix broken argument parsing
commit 35f44b1c2a14d1f20193f0357087501e2ee4def6
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 22 18:59:53 2009 -0500
fix non-2.4 syntax
commit 071564761f46ea7089bbd6301589eeb466c3ec31
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 22 13:23:53 2009 -0500
(refs #158) make usePTY a step parameter; change default to no
The default for --usepty becomes 0 (no), and by default, ShellCommands
obey that setting. Shell commands run from Source subclasses set this
to False, as it's seldom necessary to use a PTY for these commands.
Add a new command_version, 2.7, indicating slave support for this flag
commit bf24d16f1f163d386d0470e41fc2d0f954b9daf8
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 22 12:08:16 2009 -0500
(tweak) better debugging output
commit 5bd3d78c613ac9fff056e7e2c12783fc1fe9bd82
Merge: 6dab63a... 71c3097...
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 22 08:53:09 2009 -0500
Merge branch 'bug420' of git://github.com/nhemingway/buildbot
commit 71c309759447f7619779080c5848542e7c76e9af
Author: Neil Hemingway <[email protected]>
Date: Sat Feb 21 21:11:36 2009 +0000
Resolve #420 - urlencode builder names
commit 6dab63af9fc97d78f8968c92b9bdbc47a40aaa5c
Merge: 56cb1e4... f0ea815...
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Feb 20 17:05:27 2009 -0500
Merge branch 'bug314' of git://github.com/nhemingway/buildbot
commit f0ea815bf83b1c3d6daf0568f70ad7f1c9ba2f55
Author: Neil Hemingway <[email protected]>
Date: Fri Feb 20 21:44:16 2009 +0000
Resolve #314 by not setting expectations unless the build was successful
commit 56cb1e4dc77ab17c6854cbcd0f14ded3470d5792
Author: Gary Poster <[email protected]>
Date: Fri Feb 20 13:37:15 2009 -0500
add Canonical copyright messages, per discussion with Dustin.
commit a362a5b7788f7339e0aa1e8f7fdad64f7819a4dc
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Feb 19 00:03:27 2009 -0500
(fixes #279) document and clean up step argument parsing
commit 9879e94d540ea216debcfeac1c5dab0b72c077b1
Merge: cdefef4... 2335e76...
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 18 22:51:11 2009 -0500
Merge branch 'graceful' of http://atlee.ca/software/buildbot
commit 2335e76c1c2b34b84de015af6b667d9067c3a64b
Author: Chris AtLee <[email protected]>
Date: Wed Feb 18 15:24:10 2009 -0500
Making error handling clearer on the error callback from remote
shutdown.
Adding test cases.
Moving buildFinished from AbstractSlaveBuilder to SlaveBuilder.
remote shutdown callback needs to call reactor.callLater(0,
maybeStartAllBuilds) in order to get unittests to pass.
commit cdefef4eebd45cf6bc17b58f605cb24987ab619d
Merge: 620c248... d1190bd...
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 18 16:26:26 2009 -0500
Merge branch 'bug251' of git://github.com/nhemingway/buildbot
commit 620c2487bddc693a52368d4c9dcb5fd37e995a6c
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 18 16:23:29 2009 -0500
(refs #259) add docs for PyLint step
commit da4954b47a89a95ace7a6896c259ad4f812e568c
Author: strank <[email protected]>
Date: Wed Feb 18 16:21:04 2009 -0500
(refs #259) PyLink command, similar to PyFlakes
commit d1190bd358845fe38204e89d8399f95a83309334
Author: Neil Hemingway <[email protected]>
Date: Wed Feb 18 21:14:36 2009 +0000
Resolve #251 by removing colour setting from the internals of buildbot
Colour is now controlled with CSS for all areas of buildbot
presentation with the sole exception of the statusgui
commit 38810ee44a3169bfe801ae8036226b37bd22c471
Merge: 2f4c3f6... aa3a5bc...
Author: Chris AtLee <[email protected]>
Date: Tue Feb 17 08:51:58 2009 -0500
Merge branch 'master' into graceful
commit 2f4c3f6408cc2b2822ac24623039ddd991687aee
Author: Chris AtLee <[email protected]>
Date: Mon Feb 16 09:18:30 2009 -0500
Adding some documentation for graceful shutdown.
Also having the slave object add itself as a watcher of the graceful
status when the slave is attached, and removing itself as a watcher when
the slave is detached.
commit 25023479d910bdc9184d68a6cb4d0cb185608ebe
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Feb 16 10:32:25 2009 -0500
Revert "(refs #218) point buildbot.bat to the right python"
This reverts commit aa3a5bc6ee13859022b4ad13283b34f7ccf78781.
commit aa3a5bc6ee13859022b4ad13283b34f7ccf78781
Author: Marcus Lindblom <[email protected]>
Date: Mon Feb 16 10:04:33 2009 -0500
(refs #218) point buildbot.bat to the right python
commit 18876cf80207769ff180dc0a0964921a117e1536
Author: Chris AtLee <[email protected]>
Date: Mon Feb 16 08:54:21 2009 -0500
Restored call to maybeStartAllBuilds into a reactor.callLater call.
commit c4096f3e06d01167c860487068067c26bf1fbb07
Author: Chris AtLee <[email protected]>
Date: Sun Feb 15 19:15:56 2009 -0500
Use getGraceful() instead of slave.graceful_shutdown where appropriate
commit 350632aa2276350494b0b65107acbdfc4f6c63b2
Author: Chris AtLee <[email protected]>
Date: Fri Feb 13 23:44:32 2009 -0500
Adding graceful shutdown support for slaves.
commit fd47ba60dcdfdab2cdb70b62c30d8f130fe13d5b
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 15 23:44:24 2009 -0500
(refs #361) add docs
commit b97fd526c4b19d411fbcea6fc0b7520d339afc40
Author: Chad S Metcalf <[email protected]>
Date: Sun Feb 15 23:37:41 2009 -0500
(refs #361) add a logEnviron parameter to ShellCommand
commit cc8a6401f4eb5aa0b0ec632210c5ffcc25d6f69f
Author: Jeremy Gill <[email protected]>
Date: Sun Feb 15 23:34:04 2009 -0500
(refs #327) fetch git tags, too
commit 03b635a8d25efd63921d607fde30772b75f58f4d
Author: Christian Lins <[email protected]>
Date: Sun Feb 15 23:18:05 2009 -0500
(fixes #345) add CSS class for SKIPPED
commit cd6a16c614b8de9af7c6a2b978f48e64fa8cde20
Author: Charles Lepple <[email protected]>
Date: Sun Feb 15 22:00:07 2009 -0500
(refs #362) docs changes (fileIsImportant)
commit 5d057803fd13cc4e6bf43ae22347a355e2a9e611
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 15 20:54:10 2009 -0500
(fixes #353) revision and got_revision are strings; if no revision is gotten, don't set the property
commit 67b00c8459c1a6846f51a0dcb2ec007b39b3eb4a
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 15 20:10:36 2009 -0500
fix docs typo
commit 77b386426c2ee498e43185553b756224db74fea8
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 15 20:05:32 2009 -0500
Add MasterShellCommand
commit 4573cc224e7f8fc9df144e5c5ca33f86cc935cdf
Author: René Müller <[email protected]>
Date: Sun Feb 15 18:14:45 2009 -0500
(refs #393) add DirectoryUpload
commit 242e5836cc9fa35142d98e1a3904f494a322a10b
Author: Shimizukawa <[email protected]>
Date: Sun Feb 15 18:01:57 2009 -0500
(refs #307) allow missing svn author
commit 3bbab2da2597ae2537be3a6d17ef9be0f6ff5af3
Author: Ben Hearsum <[email protected]>
Date: Fri Feb 13 10:27:28 2009 -0500
Update documentation for real this time
commit f461caf049311f49354e0b87dc4e6f1639cb7e87
Author: Ben Hearsum <[email protected]>
Date: Fri Feb 13 10:17:01 2009 -0500
Updated documentation for new haltOnFailure behaviour; update existing BuildSteps that haltOnFailure to explictly flunkOnFailure.
commit b04b9f22eed91e64b018f49ecfe722ba6203051c
Author: Ben Hearsum <[email protected]>
Date: Thu Feb 12 17:48:25 2009 -0500
haltOnFailure shouldn't imply flunkOnFailure (ticket #425)
commit 4517900fe039fe64cb736a41e7bca5e5a94c6384
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Feb 12 17:08:41 2009 -0500
only attach the text of a patch, not the level
commit 999ba134b2a4847615ce0c45cffe93bca8e5afc0
Author: Gerard Escalante <[email protected]>
Date: Thu Feb 12 02:51:21 2009 -0800
Changed Git VC operations class to clobber less frequently.
Git now clobbers the repo only if the repourl changes.
As a part of doVCUpdate, it runs "git clean" if the branch has
changed (but not the repourl), which, combined with "git reset",
does effectively does the same thing as clobbering the repo.
commit addafaaa66c5fd040c6daad636cd50453a7ab700
Merge: ee1f1c8... c1ab365...
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Feb 11 12:53:08 2009 -0500
Merge branch 'master' of git://github.com/dustin/buildbot
commit ee1f1c8dee8a446809fa6b9123f643350bfa9ab8
Author: Albert Hofkamp <[email protected]>
Date: Tue Feb 10 23:37:19 2009 -0500
(refs #306) fix trigger documentation
commit 36438a46b808b9e83f09e54970c9bfa7e1186ab3
Author: Marcus Lindblom <[email protected]>
Date: Tue Feb 10 23:25:54 2009 -0500
(refs #272) use correct path to classic.css for windows setup
commit 894bb2a9f50949f8d97f496b27bb99cbfba3f261
Author: Julien Boeuf <[email protected]>
Date: Tue Feb 10 23:17:00 2009 -0500
(refs #256) allow COMSPEC to have spaces
commit 18f6700d42153501d22936045931757d0a49bb6a
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 22:58:30 2009 -0500
(refs #207) offline is now gray
commit 1213ad89fd88ac9219aba9a860d1999466143e67
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 22:51:47 2009 -0500
(fixes #202) don't save changes from a test ChangeMaster
commit 77d2abaaadce968db730871769ee7e17e2407ca0
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 21:34:40 2009 -0500
(fixes #165) remove references to --recursive from python_twisted docstrings
commit 44046f8d851d54c8dcd0325774e841f368362243
Merge: 7e3cc24... 1b42980...
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 21:27:32 2009 -0500
Merge branch 'master' of git://github.com/gward/buildbot
commit 7e3cc24c66e48b1cdd124459ca33d2fe76b754f7
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 21:21:01 2009 -0500
update rbosetti's patch to cover patches added since then
commit c1ab365b6ed986396831849e7bf37c53ee35526f
Author: Dustin Sallings <[email protected]>
Date: Fri Feb 6 20:32:45 2009 -0800
Added ping method to stats builders.
I had a lot of network instabilities that would cause my status client
to believe it was connected and functioning properly when it wasn't.
I started sending pings across periodically and flagging the
connection on the (error) result. That wasn't a big deal, but it ends
up dumping a bunch of stuff into logs.
This makes a simple ping possible without error.
commit e1479500f378f1793098f244ecde75c604257ca3
Merge: 7fb7fa4... 0a488bf...
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 19:11:14 2009 -0500
Merge branch 'master' of git://github.com/rbosetti/buildbot
commit 7fb7fa4210d1c9eff86c4f63835dc95ea6c5e937
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 19:05:27 2009 -0500
(refs #421) 'nightly_factory' instead of 'checkin_factory'
commit 37bae4efa8fd084201f0cb0cf2a7395a89df12aa
Merge: d5b417f... ee5c7b6...
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 19:04:02 2009 -0500
Merge branch 'bug421' of git://github.com/ashcrow/buildbot
commit d5b417f04710187250593c2698d0100c1c3fb8d9
Merge: be3c8d5... 36fc85c...
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 18:44:59 2009 -0500
Merge branch 'bug368' of git://github.com/nhemingway/buildbot
commit be3c8d5327796047d31204e645fe9ce3996e9212
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 18:43:08 2009 -0500
(refs #329) close the test config file before removing the temporary directory
commit 6d20b06f1e8af8025586be03a9714f277ef780a6
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 10 18:40:10 2009 -0500
(refs #182) documentation tweaks
commit 589b39c0708aecfaa1677dbc8fbc6fa8b73cd642
Author: Daniel Svensson <[email protected]>
Date: Sun Jan 11 22:20:22 2009 +0100
(closes #182) Add category support to Schedulers and Changes.
Signed-off-by: Dustin J. Mitchell <[email protected]>
commit ee5c7b61e6efc8dbbec841f740b924a4f492cfac
Author: Steve 'Ashcrow' Milner <[email protected]>
Date: Tue Feb 10 15:29:32 2009 -0500
fix for http://buildbot.net/trac/ticket/421 where documentation is missing code information
commit 36fc85cd80599a3d04a9a344dcd133d6a553d3f6
Author: Neil Hemingway <[email protected]>
Date: Tue Feb 10 19:37:05 2009 +0000
Add a test and a doc-tweak for bug368
commit 6a59c18982b6581b598fc7cf3489313906755011
Author: Neil Hemingway <[email protected]>
Date: Tue Feb 10 17:47:29 2009 +0000
BuildPrioritization tests failed unless CVS was installed
commit a0930b69ac2a8ba75fb1690e68b7df3a6af9dc72
Author: Greg Ward <[email protected]>
Date: Fri Feb 6 18:21:28 2009 -0500
Fix some typos in the manual.
Signed-off-by: Dustin J. Mitchell <[email protected]>
commit 1b42980f33b57bf333dbe423e94dc914581f209d
Author: Greg Ward <[email protected]>
Date: Fri Feb 6 18:21:28 2009 -0500
Fix some typos in the manual.
commit 57cccfd1edf2813c2c8083dac8ff7731f55d8d67
Merge: f03f8d1... cbdacb4...
Author: Greg Ward <[email protected]>
Date: Fri Feb 6 18:09:18 2009 -0500
Merge branch 'master' of git://github.com/djmitche/buildbot
commit cbdacb41fcf892587251c6e39e08958fc4a49f59
Author: Greg Ward <[email protected]>
Date: Thu Feb 5 11:02:19 2009 -0500
sample.cfg: fix out-of-date comments and typos.
Signed-off-by: Dustin J. Mitchell <[email protected]>
commit f03f8d105824ee89bac21490ab2dcfd0de3a074d
Author: Greg Ward <[email protected]>
Date: Thu Feb 5 11:02:19 2009 -0500
sample.cfg: fix out-of-date comments and typos.
commit 6edd056d6b81183c8f4692c964942eb66c58ba92
Author: Gareth Armstrong <[email protected]>
Date: Thu Feb 5 15:27:13 2009 +0100
Add provenance header to feeds.py
commit 82da60b668335080640bf2d0417eac703ef4506d
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Feb 5 08:46:56 2009 -0500
fix test_web failures where no projectName is specified
commit 0d12fff51af47503720840321054fb2408fdb2bc
Author: Gareth Armstrong <[email protected]>
Date: Thu Feb 5 10:48:47 2009 +0100
(refs #382) Add ATOM and RSS feeds to webstatus
The addtion of ATOM and RSS feeds to webstatus is based on "feeder.py" which
was part of the Buildbot configuration for the Subversion project. The original
file was created by Lieven Gobaerts and
later adjusted by API ([email protected]) and also here
http://code.google.com/p/pybots/source/browse/trunk/master/Feeder.py
All subsequent changes to feeder.py where made by Chandan-Dutta Chowdhury
<[email protected]> and Gareth Armstrong <[email protected]>.
Those modifications are as follows:
1) the feeds are now based on baseweb.WebStatus
2) feeds are fully validated ATOM 1.0 and RSS 2.0 feeds, verified with code from
http://feedvalidator.org
3) nicer xml output
4) feeds can be filtered as per the /waterfall display with the builder and category filters
5) cleaned up white space and imports
Finally, the code was directly integrated into the status/web/base.py and
status/web/baseweb.py.
commit e9f180c167a9e1ba8e1f8442b056eb48796d2599
Author: jpittman <[email protected]>
Date: Wed Feb 4 12:14:08 2009 -0800
Updated p4bin documentation to indicate that it's optional and what it defaults to.
commit 2249b70cdbcfbbf9117752a0a5aa52fbc86a9dd6
Author: jpittman <[email protected]>
Date: Wed Feb 4 12:06:48 2009 -0800
Fixed a comment in an example to represent the correct amount of time for a given variable.
Added documentation for an argument found in p4poller.
commit 966747f09029f8bbc267cff5e9b35d3853de855a
Author: Darragh Bailey <[email protected]>
Date: Tue Feb 3 15:10:13 2009 -0500
(fixes #39) patch to print the correct order
commit 265265830c19967b545cea2193195af1759add6d
Author: Greg Ward <[email protected]>
Date: Tue Feb 3 11:06:25 2009 -0500
(refs #210) render properties to FileUpload and FileDownload's workdir (patch updated by djmitche)
commit d554bff93efb780f6ad09c559bad2402fa1fd217
Author: Greg Ward <[email protected]>
Date: Tue Feb 3 10:42:37 2009 -0500
(refs #209) patch 3/3: factor out _TransferBuildStep for common workdir logic.
commit 4210d6c33a31df925a75b1903f5435a833243e9d
Author: Greg Ward <[email protected]>
Date: Tue Feb 3 10:41:35 2009 -0500
(refs #209) patch 2/3: add tests to ensure that calling setDefaultWorkdir() actually affects 'workdir' of FileUpload and FileDownload objects
commit 5a42c47726a91efec0fad46c91865f02bc7c9d45
Author: Greg Ward <[email protected]>
Date: Tue Feb 3 10:38:12 2009 -0500
(refs #209) patch 1/3: fix FileUpload and FileDownload to support setDefaultWorkdir()
commit 1ad3d25decd1cc4e563cd0fc82bd0aacbc8bee2a
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 3 10:36:28 2009 -0500
add .orig and .rej to .gitignore
commit bab759f199c583d669975d5410e02a89a58e570f
Author: Dustin J. Mitchell <[email protected]>
Date: Tue Feb 3 09:22:31 2009 -0500
(fixes #417) use 'call' with *.cmd on windows
commit 42eececea1158fbc525c0f0404bf04b183c616a4
Author: Marcus Lindblom <[email protected]>
Date: Mon Feb 2 10:17:56 2009 -0500
(fixes #185) (MercurialInRepo) send the branch from the changeset, not the working directory
commit 42d86154cbcb5e7e1c1faf1680aafa8ae3075e86
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 1 13:39:42 2009 -0500
fix version length check - 40 bytes lets git revisions appear, but nothing longer
commit 2825dbf3380732c0300a0934b9842783b80971aa
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 1 12:13:46 2009 -0500
(fixes #415) doc tweaks to Pike's patch
commit 38e7a00e1e4f1a6520a88abb89a444c51352e2e8
Merge: 6240a8f... a811624...
Author: Dustin J. Mitchell <[email protected]>
Date: Sun Feb 1 11:46:24 2009 -0500
Merge branch 'bug415' of git://github.com/Pike/buildbot into bug415
commit 6240a8f30fdd178f4331e63e1caa38982994721f
Author: Zooko Wilcox-O'Hearn <[email protected]>
Date: Sat Jan 31 17:57:39 2009 -0500
(fixes #215) log the usage of shutil.copytree() instead of a cp subprocess
commit 7f49a7b1cf5812f43befdef902821ec1770d6bb3
Author: Sergey Lipnevich <[email protected]>
Date: Sat Jan 31 17:41:56 2009 -0500
(refs #146) doc fixes
commit 7e348bc48c3d32c475f0daf7242b3a2535853079
Merge: 3aed3fe... 1649957...
Author: Neil Hemingway <[email protected]>
Date: Sat Jan 31 10:42:41 2009 +0000
Merge branch 'master' of git://github.com/djmitche/buildbot into bug368
commit 16499575e6777012e77b6cab6494c15efc97dd36
Merge: 80fac85... d2d57ef...
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jan 30 20:56:17 2009 -0500
Merge branch 'master' of git://github.com/ashcrow/buildbot
commit a811624c1fcd4b06298016cead6533fc22fa5214
Author: Axel Hecht <[email protected]>
Date: Sat Jan 31 00:16:12 2009 +0100
(fixes ticket #415) moving over to a configurable function on botmaster from the loadmaster concept
commit 80fac85380bdd98aaafe93bfc821449d3328e8d1
Author: Arkadiusz Miskiewicz <[email protected]>
Date: Fri Jan 30 22:39:19 2009 +0100
Example on how to run it from post-merge hook
Signed-off-by: Arkadiusz Miskiewicz <[email protected]>
Signed-off-by: Dustin J. Mitchell <[email protected]>
commit d2d57ef70fd5a95ebbbcde2bb92948f5b995d2a7
Author: Steve 'Ashcrow' Milner <[email protected]>
Date: Fri Jan 30 14:43:01 2009 -0500
Added a package module as well as rpm steps and a tests.
commit 46d08a75a263eb9d886195e21ad1b5a52a290d13
Author: Dustin J. Mitchell <[email protected]>
Date: Fri Jan 30 13:12:14 2009 -0500
allow a treeStableTimer < 1 second
commit 77a6cbeb32200e5fddba2a6a1d8c90e874facc37
Author: Chris AtLee <[email protected]>
Date: Fri Jan 30 11:34:57 2009 -0500
Adding docs for --maxdelay
Signed-off-by: Dustin J. Mitchell <[email protected]>
commit 73f2ee55f2f3cfdf104860e7021c278b8bb1bb46
Author: Chris AtLee <[email protected]>
Date: Fri Jan 30 11:11:52 2009 -0500
Make maximum delay between slave retries configurable
Signed-off-by: Dustin J. Mitchell <[email protected]>
commit 1e7ac29a4aac4ed896c40f0c353e11af000a6d56
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Jan 29 18:27:22 2009 -0500
(refs #407) encode unicode strings to ASCII using 'replace', so that any invalid characters don't cause the script to crash
commit 19cd2f50422e2c59d3741cdbd5e0d35abd8d2602
Merge: 5262a02... b34e5cb...
Author: Axel Hecht <[email protected]>
Date: Thu Jan 29 23:49:44 2009 +0100
Merge branch 'master' of git://github.com/djmitche/buildbot into bug415
commit b34e5cb43d2d24ce443cecabce6198d32bdefdca
Author: Gary Poster <[email protected]>
Date: Thu Jan 29 15:58:49 2009 -0500
fixes for running latent slave tests on mac
commit a8148a25469e6572838a564186e33573de36f2e8
Author: Gary Poster <[email protected]>
Date: Thu Jan 29 15:48:41 2009 -0500
add my name to the list of glory
commit 5262a02e88d4a4b63149eb7aad01e591814d9be7
Merge: 1954bae... dfb18e6...
Author: Axel Hecht <[email protected]>
Date: Thu Jan 29 18:07:06 2009 +0100
Merge branch 'master' of [email protected]:Pike/buildbot into bug415
commit fb2c1c6d745deadec357e4eda17629d5fcf344a0
Author: Dustin J. Mitchell <[email protected]>
Date: Thu Jan 29 00:14:38 2009 -0500
document onlyIfChanged
commit a8a4dfea8eafcb34b19760c62dd1f0aea5caff80
Author: claude vittoria <[email protected]>
Date: Thu Jan 29 00:14:28 2009 -0500
add onlyIfChanged support to the Nightly scheduler
commit dfb18e6c177d490da9dcab29e431eff22cfedfec
Author: Dustin Sallings <[email protected]>
Date: Wed Jan 28 20:26:00 2009 -0800
Allow users to specify the remote git branch.
This allows for a case where someone has a repository that tracks
someone else's repository, has arbitrary local branches, but wants to
run tries with the delta from the reference repository (i.e. the one
the master knows about) to the local changes.
Without this, it's likely the reference repository will not have the
necessary objects to pull down a base revision to be able to apply
patches for the try to succeed.
This also ensures that the current client's view of the reference
repository is honored. That is, if the reference repository has moved
forward, the trier's current tip of the remote is used to compute the
delta, and that's sent along as the baserev.
commit 38a9c7fc719b44e2cdfa47884182da7128b369d2
Author: Dustin Sallings <[email protected]>
Date: Wed Jan 28 16:30:08 2009 -0800
Added --dry-run (-n) support to buildbot try.
Need to be able to try try when I just want to know what it's even
going to consider doing.
commit f43143835cba3ca5963e07874da17c1416a031c2
Author: Dustin Sallings <[email protected]>
Date: Wed Jan 28 08:34:04 2009 -0800
Refactored try buildName validation for reuse.
commit a88238cae5000c3481877aa354e3c76fc45770b8
Author: Dustin Sallings <[email protected]>
Date: Wed Jan 28 08:25:52 2009 -0800
Don't require a list of builders for buildbot try.
This maintains the current restrictions around builder lists that
prevent one from trying a build that isn't in the list, but allows the
user to delegate the selection to the server by not listing the
builders at all.
I want my users to always try their builds on every build
configuration, but I don't want to be sending out buildbot options all
the time.
commit 5d0baa29aaa7dfd1344074fc72e214a8d10a8902
Merge: bd30ff1... deca9f4...
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jan 28 14:08:07 2009 -0500
Merge branch 'latentslaves' of git://github.com/garyposter/buildbot
commit bd30ff18d29a839f333a88cdea9b4ba9d55403dd
Merge: 7c37a7a... 12af51c...
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jan 28 14:02:56 2009 -0500
Merge branch 'master' of git://github.com/bhearsum/buildbot
commit 7c37a7a2b388f012fa9f59b2db0d2b35c4adf40b
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jan 28 14:00:58 2009 -0500
spell logCompressionLimit right
commit ad871a197c0a5ad93706249b0e9a5fca935e6f1c
Merge: 1754c3f... 3fa61ba...
Author: Dustin J. Mitchell <[email protected]>
Date: Wed Jan 28 13:15:48 2009 -0500
Merge branch 'bug26' of git://github.com/Pike/buildbot
commit 12af51c23e84f760627d362b3c027cadf8b8dc5f
Author: Ben Hearsum <[email protected]>
Date: Wed Jan 28 11:29:33 2009 -0500
Bump max steps-with-same-name to 1000, handle that failure better.
commit 3fa61ba3d9b00fd5c4be6ddcba92ae8d083e7b73
Author: Axel Hecht <[email protected]>
Date: Wed Jan 28 13:12:57 2009 +0100
(ticket #26) only try to remove compressed log on failure if it's actually there
commit deca9f41a08692ae194372c38fb46a92673e1b41
Merge: b3ad016... 1754c3f...
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Tue Jan 27 14:30:16 2009 -0500
merge from upstream master
commit b3ad016e13e2ef0c46f5085e3f3489c16363ef5d
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Tue Jan 27 14:17:03 2009 -0500
docs now render properly
commit 1095c1cc7729dd3775baf1259d7ea09961ad58f5
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Tue Jan 27 13:39:36 2009 -0500
texinfo is not formatting correctly in the ToC, but I do not want to lose the work while I try to fix it, so committing.
commit 2936e491ec11ead88de7a508b6f0864913198286
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Tue Jan 27 12:35:49 2009 -0500
add test for elastic ips
commit 5d0675d2e163818813022271b6c9a5d0b9980872
Author: Axel Hecht <[email protected]>
Date: Tue Jan 27 13:59:15 2009 +0100
(update to ticket #26) fix testcases to not use log compression, or to wait for compressed logs, otherwise reactors can close unlcean
commit ec51679762093a98b0adea472f713ad55ab2abc3
Author: Axel Hecht <[email protected]>
Date: Tue Jan 27 12:02:53 2009 +0100
(fixes #26) add bz2 log compression for LogFiles, triggered from stepFinished, by default for logs bigger than 4k. Configurable via logCompressionLimit in master.cfg
commit 0a488bf26aeb085a5ad2fa151b919b3b17574096
Author: rlb <[email protected]>
Date: Mon Jan 26 22:45:00 2009 -0800
Removed name=None from BuildRequest.
All tests have been cleaned up. All tests pass
commit 155e6f5d58b44a803a4b36287b8cdff19529c26f
Author: rlb <[email protected]>
Date: Mon Jan 26 21:06:18 2009 -0800
Fix repr for RemoteShellCommand. fixes #352
New testcase in test_buildstep.py, runs each case for repr
commit f93732c3aa0d8b5b28e52cccc033d5b4a2cb6ef4
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Mon Jan 26 16:41:45 2009 -0500
bugfix for bzr_buildbot poller: branch_name was not honored for initial branch in a given poll.
commit e29f183fa6945b068b3e4c14072798613dbaf285
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Mon Jan 26 15:22:07 2009 -0500
shut down ec2 instances when the reactor shuts down. at the same time, use constants for ec2 instance states.
commit c8334e7ea0010dd0e86cacebccc9124110ce9ea2
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Mon Jan 26 15:20:20 2009 -0500
fix typo
commit 53e44cefbae4d5c71024db9624623c743c19a2f1
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Mon Jan 26 15:19:12 2009 -0500
make the test not rely on Python 2.5 (and my editor did some whitespace cleanup).
commit 67f08a4addae5c9f4fef38473e000b4d512328f0
Author: Gary Poster <gary@gary-ubuntu.(none)>
Date: Mon Jan 26 14:51:43 2009 -0500
add mention of bzr_buildbot.py to PBChangeSource doc string.
commit 1754c3fdc5f412c94046aca1d9257d1a184432e0
Author: Marcus Lindblom <[email protected]>
Date: Mon Jan 26 13:38:18 2009 -0500
(fixes #418) correctly handle git versions that have hashes in them
commit 00bcee2a9899c6da06fbbe6de8d5b1ac3808dbe5
Author: Dustin J. Mitchell <[email protected]>
Date: Mon Jan 26 13:19:24 2009 -0500
remove unnecessary python-2.5 syntax
commit 3aed3fe9bdd73bf64b2c3e7dc3bed5f82d2ad28b
Author: Neil Hemingway <[email protected]>
Date: Mon Jan 26 09:45:45 2009 +0000
Resolve #368 - Enable IRC notification setup from the config file
This patch allows the config file to specify which events the
IrcStatusBot will notify you about. You can now have a notify_events
parameter to the constructor to IRC:
c['status'].append(words.IRC(
host="somehost.test.com",
nick="BobTheBuilder",