For Scheduling Pipelines, I have:
* DEV: Tests for this environment kicks off at 8:00 am
* STAGE: Kicks off at 10:00 pm

Let's say I have two GitLab Runners: One for "dev", and one for "stage". 

Gitlab-ci.yml, I can call them via:

tags:
    - dev

or 

tags:
    - stage

... These two environments are not interconnected in the CI pipeline. 

I want to pass a scheduling variable, and include that into the tag so that 
the appropriate runner kicks off the tests. 

If the scheduling variable was "CI_TAGS: dev", could it be passed into the 
GitLab-CO.yml file as:

tags:
    - ${CI_TAGS}


... Hrm. That's not it. It can't find the runner that uses "${CI_TAGS}".

-T.J. Maher
 tjmaher.com

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/0b9d284a-8c74-4189-a453-610cdfee9690%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to