如何在CircleCI 2.0中使用RegEx比较分支

时间:2017-07-19 08:31:24

标签: circleci

我们如何将CIRCLE_BRANCH与正则表达式进行比较? 在1.0我们通过以下方式完成:

branch: /feature.*/
commands: 
  <your commands here>

在'2.0'master分支中进行如下比较:

if [ "${CIRCLE_BRANCH}" != "master" ]; then
    <your commands>
fi

如何处理/feature.*/中的CircleCI 2.0

1 个答案:

答案 0 :(得分:2)

只需使用此处描述的工作流程

https://circleci.com/docs/2.0/workflows/#branch-level-job-execution

你可以使用

branch:
  only: ....

branch:
  ignore: ...