aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/updater
Commit message (Collapse)AuthorAgeFilesLines
* pkg/updater: fix autoupdateDmitry Vyukov2026-01-191-6/+9
| | | | | | Start update goroutine even in the case of early returns in UpdateOnStart. Fixes #6619
* syz-agent: add agentic serverDmitry Vyukov2026-01-091-1/+2
| | | | | Add server for running agentic workflows as part of syzbot. The architecture and use are similar to that of syz-ci.
* all: remove unused nolint directivesDmitry Vyukov2026-01-021-1/+0
|
* pkg/osutil: move Semaphore from pkg/instanceDmitry Vyukov2025-11-241-1/+1
| | | | | | | | Semaphore is a very low-level primitive type, while pkg/instance is a very high-level package with lots of deps. Semaphore does not belong there, and may lead to cyclic deps if we use it more. Move it to pkg/osutil. It's not really OS-specific, but we don't have a better package.
* pkg/updater: factor out of syz-ciDmitry Vyukov2025-11-241-0/+324
Factor syzkaller updating functionality out of syz-ci so that it can be reused in other binaries. No functional changes intended.