I have 1 gitlab-runner instance on my VPS. Whenever I cancel any previous job (for example, when I realize I don’t want something to run) all following jobs stay in pending way too long. That is, there are no running jobs anymore, yet there are pending ones. It takes about 5 minutes for the next job to start running and get out of pending mode.
I experienced this too. My gitlab-runner was a shell executor. When it runs a job it creates a process tree like that we can see with the pstree command. Here’s an example from my use:
D0han in the IRC channel informed me that hitting the Cancel button only kills the su process which is not passing on the SIGKILL signal to its children.
You can see by the process ID’s that this is the same process tree except that the gitlab-runner and su processes are no longer running.
What I’ve experienced is that my new jobs will remain pending until this entire process tree has completed. D0han indicated that other types of gitlab-runner executors have a different behavior when it comes to cancelling, so I’m going to move on to a different runner type.