Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run gitlab-runner for several steps

I'm using gitlab runner to test my CI locally.

I run it with:

sudo gitlab-runner exec docker godep  --docker-privileged

Where godep is the job I need to run

Now, the next step is gobuild, but this step is dependant of the previous step, as it will generate an artifact

Is it possible to run several jobs with gitlab-runner ???

like image 933
Juliatzin Avatar asked Oct 16 '25 09:10

Juliatzin


1 Answers

One of the limitations of gitlab-runner exec is that it can only run one job, not full pipelines with all stages.

A full list of limitations can be seen in the docs.

like image 93
BrokenBinary Avatar answered Oct 19 '25 14:10

BrokenBinary