aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/linux.go
Commit message (Collapse)AuthorAgeFilesLines
...
* pkg/vcs: fix git tag --points-at invocationDmitry Vyukov2019-03-201-4/+3
| | | | | | | Turns out older versions of git don't imply --list for --points-at and fail. So add --list explicitly. Update #501
* pkg/vcs: fix too long lineDmitry Vyukov2019-03-171-41/+43
| | | | Also restructure because we point to this file from syzbot docs.
* pkg/vcs: try to work around massive linux kernel build/boot breakagesDmitry Vyukov2019-03-171-7/+67
| | | | | | | | | Linux kernel is frequently build/boot broken. Even on release tags. Everything past 4.15 is broken with our config for multiple reasons. This makes bisection process almost infeasible. Try to work around some breakages by disabling configs are we go back in time. Update #501
* pkg/vcs: refactor bisection supportDmitry Vyukov2019-03-171-0/+154
In preparation for syz-ci bisection: - move bisection function into a separate interface they look out of place in vcs.Repo because most OSes don't implement it and most users don't case - extract author name and more CC emails for commits - move linux-specific PreviousReleaseTags into linux.go - fix inconclusive bisection (more than 1 potential commits) - add tests fr bisection - add maintainers returned from get_maintainers.pl for commits that don't have enough emails (e.g. only author email) Update #501