summaryrefslogtreecommitdiffstats
path: root/script
Commit message (Collapse)AuthorAgeFilesLines
...
* land: Force always emailing when there is no other mechanism of progress ↵Jelmer Vernooij2010-10-031-2/+8
| | | | reporting.
* land: Attach tarball of logs rather than individual logs to keep theJelmer Vernooij2010-10-031-19/+11
| | | | mail size reasonable.
* land: Some cosmetic fixes.Jelmer Vernooij2010-10-032-30/+55
|
* land: Attach test output files to result emails.Jelmer Vernooij2010-10-031-11/+43
|
* land: Add --revision argument.Jelmer Vernooij2010-10-032-8/+29
|
* land-remote: Run remote land command unbuffered.Jelmer Vernooij2010-10-032-2/+2
|
* land-remote: Pass extra arguments on to land.Jelmer Vernooij2010-10-032-3/+3
|
* land: Implement --fail-immediately directly in Python, provide subunit file.Jelmer Vernooij2010-10-021-26/+96
|
* land: Add separate treestagebuilder for subunit.Jelmer Vernooij2010-10-021-12/+41
|
* land: Cherry-pick tridges changes to autobuild.Jelmer Vernooij2010-10-021-3/+22
|
* land: Move stage building into a separate class so we can have subclasses ↵Jelmer Vernooij2010-10-021-35/+64
| | | | (e.g. subunit-specific).
* land: Only pass shell=True if necessary.Jelmer Vernooij2010-10-021-19/+22
|
* land: Add --fail-slowly option.Jelmer Vernooij2010-10-022-6/+13
|
* Several smaller cleanups, use python coding style.Jelmer Vernooij2010-10-021-17/+16
|
* land: Avoid running things in a shell where not necessary.Jelmer Vernooij2010-10-021-4/+9
|
* land-remote: Checkout repository first.Jelmer Vernooij2010-10-021-2/+3
|
* land-remote: Use --repository option.Jelmer Vernooij2010-10-021-1/+1
|
* land: Add --repository option.Jelmer Vernooij2010-10-022-4/+12
|
* land: Move more functionality onto builder.Jelmer Vernooij2010-10-021-9/+23
|
* land: Avoid more uses of chdir().Jelmer Vernooij2010-10-021-8/+2
|
* Split land.py back out of autobuild.py, so I can change it withoutJelmer Vernooij2010-10-022-0/+473
| | | | risking to break the autobuild system.
* bisect: more bisection optionsAndrew Tridgell2010-10-021-6/+12
| | | | | | | and fixes for the old ones Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Oct 2 06:14:46 UTC 2010 on sn-devel-104
* script: added bisect-test.py git bisect scriptAndrew Tridgell2010-10-011-0/+85
| | | | this can be used to work out what commit broke a set of tests
* autobuild: show top commit in emailsAndrew Tridgell2010-10-011-2/+20
|
* autobuild: include autobuild.log in logs.tar.gzAndrew Tridgell2010-10-011-0/+1
|
* autobuild: fixed tuple count for retryAndrew Tridgell2010-10-011-1/+1
|
* autobuild: revert a bit more of the subunit changesAndrew Tridgell2010-10-011-2/+2
| | | | still not quite right - we can enable this again once its fully tested
* autobuild: disable the subuit changes for now - they break error checkingAndrew Tridgell2010-10-011-2/+2
|
* autobuild: fixed the tuples in the retry_taskAndrew Tridgell2010-10-011-2/+3
| | | | | | | Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Fri Oct 1 18:22:22 UTC 2010 on sn-devel-104
* autobuild: cwd is needed on all command typesAndrew Tridgell2010-10-011-2/+2
|
* autobuild: Avoid unnecessary chdir() calls.Jelmer Vernooij2010-10-011-11/+7
|
* autobuild: Output test results in subunit.Jelmer Vernooij2010-10-011-3/+5
|
* autobuild: Provide more information about build sequence, stage name and ↵Jelmer Vernooij2010-10-011-51/+54
| | | | output mime type (all plain text for now).
* autobuild: Add --always-email option.Jelmer Vernooij2010-10-011-0/+33
|
* autobuild-remote: Support autobuild.py rather than land.py.Jelmer Vernooij2010-10-011-0/+70
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Fri Oct 1 09:46:37 UTC 2010 on sn-devel-104
* autobuild: Add --daemon option.Jelmer Vernooij2010-10-011-0/+31
|
* autobuild: Remove autogen step for projects that have checked in configure.Jelmer Vernooij2010-10-011-6/+3
|
* autobuild: Simplify find_git_root.Jelmer Vernooij2010-10-011-11/+6
|
* autobuild: fixed the --tail option for new log locationsAndrew Tridgell2010-09-301-1/+1
|
* autobuild: push of ref/notes/commits isn't allowed in masterAndrew Tridgell2010-09-301-1/+3
| | | | | | | metze may enable this later Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu Sep 30 22:25:02 UTC 2010 on sn-devel-104
* autobuild: added much better email reportingAndrew Tridgell2010-09-301-10/+48
| | | | logs are now accessible via http://git.samba.org
* autobuild: fixed exit statusAndrew Tridgell2010-09-301-1/+1
| | | | this should fix the case where we don't send logs on failure
* autobuild: use git notes for autobuild messagesAndrew Tridgell2010-09-281-1/+1
| | | | | | | This avoids changing the commit ID when we add a note that the autobuild has passed thanks to Jelmer for this suggestion!
* selftest: enable FAIL_IMMEDIATELY in autobuild make testAndrew Tridgell2010-09-281-2/+2
| | | | | | | this should reduce the time we wait for previous failing builds. Right now this will only work for s4, as we need a makefile change for s3 support
* autobuild: use killbysubdir if availableAndrew Tridgell2010-09-261-2/+4
| | | | | this will reduce the spurious test output while processes are being killed
* autobuild: exit immediately if no changes from masterAndrew Tridgell2010-09-261-1/+9
| | | | we don't need to test master in autobuild
* autobuild: fixed detection of master changesAndrew Tridgell2010-09-261-3/+4
|
* autobuild: added --retry optionAndrew Tridgell2010-09-261-26/+68
| | | | this allows the build to auto retry if master changes
* autobuild: enable ccacheAndrew Tridgell2010-09-261-0/+2
|
* autobuild: added --fix-whitespace optionAndrew Tridgell2010-09-261-1/+7
|