Let me create the first test job, its status is always "stuck", then I realized that I needed a "runner" and installed one in the Gitlab project. I chose the most suitable one for the job I am using (it is merely a test and a single shell command).
Nothing else to create the runner, its been the locked. I understand that it is "blocked" but I do not really understand why it is.
I've also been doing test commits, and the job is launched but always blocked, I never get to see anything by console and I just do a "hellow world" to the shell.
gitlab version: GitLab Enterprise Edition 10.3.3-ee.
gitlab-runner version: 10.3.0.
My gitlab-ci.yml code is:
before_script:
- echo "echo 'hola" | /bin/bash --login
- echo "echo 'Paco" | /bin/bash --login
#test
stages:
- test
job1:
stage: test
script:
- bash echo 'hellow world'
only:
- master
tags:
- runner
- testPrimerJob