我们如何将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
?
答案 0 :(得分:2)
只需使用此处描述的工作流程
https://circleci.com/docs/2.0/workflows/#branch-level-job-execution
你可以使用
branch:
only: ....
或
branch:
ignore: ...