Questions tagged [gitlab-ci-runner]

GitLab Runner is the open source project that is used to run your jobs and send the results back to GitLab. It is used in conjunction with GitLab CI, the open-source continuous integration service included with GitLab that coordinates the jobs.

103 questions
3
votes
2 answers

This job is stuck because you don't have any active runners online

I try to use Gitlab-CI and create the runner, but when jobs start, the job with the needed runner doesn't start: But this runner exists in the list: How to use a runner? And an additional question: all works fine with the "automatic" runner when I…
2
votes
1 answer

No space left on device when running job on photon-os

I'm using gitlab and gitlab-ci along with gitlab-runner. Gitlab-runner is choking on my build jobs for a day now and I can't find a way to solve the problem. The problem appears when the npm install command runs : npm WARN tar ENOSPC: no space left…
Armel Larcier
  • 141
  • 1
  • 6
2
votes
0 answers

How to use tags to use a specific gitlab-runner?

How to use tags to use a specific gitlab-runner? I wrote tag in .gitlab-ci.yml: appBuild: stage: build tags: - android I wrote "android" tag in runner config. But job is in pending state and is waiting to be picked by a runner. What is…
Epic555
  • 121
  • 3
0
votes
1 answer

Can a server used for GitLab runners be used as a deployment server?

I have a relatively simple understanding of GitLab CI: There is a GitLab server (server A) There is a separate server with GitLab runners (server B) And there is some other server - the 'prod' server (server C) From prior experience, I understand…
Zach Smith
  • 103
  • 4
0
votes
1 answer

how to deploy same job on all my runners?

I have several VMs running gilab-runner, and I'm using gitlab-ci to deploy microservices into those VMs. Now I want to monitore those VMs with prometheus and grafana, but i need to setup node-exporter/cadvisor etc. service into those VMs. My idea is…