-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: Rebuilding a job doesn't cancel its childen jobs #625
Comments
Currently, it always lets a job run to completion once started (but it won't start any new jobs if noone wants the result). You could do some kind of mark-and-sweep in However, people sometimes expect to be able to see the results of builds, even if a newer build came along later. e.g. if I push a new commit to a PR, I might still want to know the result for the previous commit. |
If I'm not mistaken those logs do not appear anywhere. Can't we make this the default ? |
One thing that could also be done in the meantime as a temporary fix (but still maybe useful anyway) would be to have some sort of "cancel-all button" on the main page. Is that conceivable ? |
Even when no PR, tag or branch head still wants a result, it can still be accessed from many places, including:
|
TravisCI has an option to do that, that I find quite useful (as it frees up resources more quickly). In some cases you don't care about building every commit, you are just by the latest one on each tags/branches. |
When using the web UI from datakit-ci, if I rebuild a job, the jobs that are depending on it will still be in the resource pool unless they are cancelled one by one there.
Is there anything in the API that can help or can datakit-ci do that ?
The text was updated successfully, but these errors were encountered: