Gitlab.com pipeline jobs stuck on pending status

All my pipeline jobs are getting stuck with pending status. Is there any geral failure on gitlab.com?

Thank you,
Pedro

Can you elaborate or share a link please ?

Hello
Must have been a shared runners unavailability issue. All fine now :slight_smile:
Tks

1 Like

It’s actually a recurring issue. Just now :
image
Just stays like this for hours…

Do you use tags ? if not try adding one

job:
  tags:
    - docker
1 Like

Hello,
Thanks.
I use tags to run some jobs in specific runners (eg. self-hosted runners)
How could that help me circumvent this issue with shared runners?

Thanks,
Pedro

It will make your jobs run in specific shared runners. This way we will be sure whether it is a “shared runners” problem or is it a scheduling problem or something else.

Edit: Try to add a default tag, so that all your jobs will be run on those specific runners.

default:
  tags:
    - docker

Thank you

1 Like

Have you come to solve your issue ?

Hello,

For now it seems like a very valid workaround :slight_smile:
Thanks,
Pedro