I'd like to be able to re-run CI just for what needs to be re-run without having to re-run everything to save CI cycles.
this works fine for sr.ht (if you have an account), and for github actions (when it fails, IIRC you can rerun at least if project member), but somehow not for azure pipelines. Anything can be done?
(related: https://github.com/nim-lang/Nim/pull/13556 which would enable [nimDocOnly] in commit msg ; but needs to be updated to reflect how CI is split amongst github actions and azure)
seems like you need special permissions to rerun from within azure pipelines UI (eg https://dev.azure.com/nim-lang/Nim/_build/results?buildId=5365&view=results), which I don't have, since it's possible for a PR against my nim fork but not a PR against nim repo.
However I found another way that works just as well: doing it from github UI works perfectly; this is explained in https://github.com/timotheecour/Nim/issues/211
It should probably be mentioned in docs as I'm sure a lot of ppl are not aware of this and they restart the whole CI (eg via a push or via a close/reopen PR)