-
Notifications
You must be signed in to change notification settings - Fork 88
Description
From @stephenfin on April 4, 2015 17:16
It should be possible to hook CI systems (like Jenkins) into patchwork. While the patchwork->CI element of this is currently possible with polling, this is inefficient. CI->patchwork communication, on the other hand, is not currently possible.
There are multiple ways to resolve the former of these issues. Gerrit does so by using an SSH service, but we could probably use a HTTP-based approach like Websockets.
If this is not possible, we should at least (a) minimise the amount of processing needed by the client and (b) cache as much as possible. The former can be solved through use of something like Activity Stream (via the django-notifications plugin). The latter can be resolved using ETags (provided by Django) or similar.
Copied from original issue: stephenfin/patchwork#13