I have to migrate from jenkins to gitlab and I would like to be able to use dynamic job names in order to have some information directly in the pipeline summary without having to click on each job etc.... in jenkins we can immediately see the parameters passed to our job and this is not the case in gitlab-ci.
My test runner being on a windows I tried to define the yml as follows:
job_%myParam%:
stage: build
script:
- set>varList.txt
artifacts:
paths:
- varList.txt
When I start my job with %myParam%=true
, the variable is not interpreted in the job name and so it takes the name of job_%myParam% instead of expected "job_true".
Is that even possible?
thks :)