aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/git/git_test.go
Commit message (Collapse)AuthorAgeFilesLines
* dashboard/app: extract fixing tags from commitsDmitry Vyukov2017-12-271-0/+48
| | | | | | | | | | | | | Support the new scheme of associating fixing commits with bugs. Now we provide a tag along the lines of: Reported-by: <syzbot+a4a91f6fc35e102@syzkaller.appspotmail.com> The tag is supposed to be added to the commit. Then we parse commit logs and extract these tags. The final part on the dashboard is not ready yet, but syz-ci should already parse and send the tags.
* pkg/git: provide more helper functionsDmitry Vyukov2017-11-161-0/+51
| | | | | Add Patch, Checkout, CheckRepoAddress and CheckBranch. Will be needed for patch testing.
* syz-ci: improve commit matchingDmitry Vyukov2017-11-071-0/+23
1. Fetch last 200K commits instead of commits for past year. For merged commits both author date and commit date can be arbitrary long in past (e.g. we got a commit dated by 2014). 2. Strip some commit prefixes from commits. We have some trees where backports are prefixed with "BACKPORT:". Previously we could no match such commits.