I am migrating from .gitlab-ci.yml
to azure-pipelines.yml
In one of the lines inside the .gitlab-ci.yml
, there are variables
$CI_PROJECT_ID
,$CI_PIPELINE_ID
, $CI_JOB_ID
.
I have figured out the equivalent for $CI_PROJECT_ID
. In azure it is $(System.TeamProjectId)
However, need help in figuring out : $CI_PIPELINE_ID
and $CI_JOB_ID
Looking forward for some suggestions