Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

gitlab - Call specific runner for Git script

How I can call a specific runner for CI job. Problem: I have default runners and now I have to install my local runner and run tests on it. But I haven't a possibility to turn off runners on the Git because the whole project builds on remote drivers.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use tags to tag a runner, when you register it. And you can specify that your job will only run on runners with this tags.

eg. you tagged your runner with 'fancy-example' than you can use it like

build:
   tags:
      - fancy-example
   script:
      - echo Hello

See the gitLab docs for more detailed examples and explanations: https://docs.gitlab.com/ce/ci/yaml/README.html#tags


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...