This is my /etc/gitlab-runner/config.toml -
concurrent = 1
check_interval = 0
[[runners]]
name = “name”
url = “https://gitlab.com/ci”
token = “[tocken]”
executor = “shell”
[runners.cache]
But when I push to the repository it randomly runs docker instead of shell -
Running with gitlab-ci-multi-runner 1.10.4 (b32125f)
Using Docker executor with image ruby:2.1 …
Pulling docker image ruby:2.1 …
What I am doing wrong?
May be there is a way to specify shell executor in .gitlab-ci.yml?