当提交消息以以下特定字符串开头时,我希望我的Gitlab CI作业不运行:[maven-scm]
因此,我的 .gitlab-ci.yaml 文件中具有以下配置:
image: maven:3.6.3-jdk-11-slim
stages:
- test
test:
stage: test
cache:
key: all
paths:
- ./.m2/repository
script:
- mvn clean checkstyle:check test spotbugs:check
rules:
- if: '$CI_COMMIT_MESSAGE !~ /^\[maven-scm\] .*$/'
我的提交消息是:[maven-scm] I hope the test job does not run
但是测试工作仍然让我感到沮丧。我浏览了rules的GitLab文档,但找不到工作仍能运行的原因。我不确定是否丢失了一些东西。
如果有人可以指出我正确的方向,那就太好了。
更新:
我尝试了only / except子句而不是规则。我将yaml文件修改如下:
image: maven:3.6.3-jdk-11-slim
stages:
- test
test:
stage: test
cache:
key: all
paths:
- ./.m2/repository
script:
- mvn clean checkstyle:check test spotbugs:check
except:
variables:
- $CI_COMMIT_MESSAGE =~ /^\[maven-scm\] .*$/
当提交消息以[maven-scm]
开头时,作业仍在运行。
答案 0 :(得分:2)
这是一个棘手的问题,因为问题不在rules
部分中。问题实际上是正则表达式。您只需要在提交消息的开头指定所需的模式,即不需要以下通配符。以下作品已通过测试:
test-rules:
stage: test
rules:
- if: '$CI_COMMIT_MESSAGE !~ /^\[maven-scm\] /'
script:
- echo "$CI_COMMIT_MESSAGE"
这已通过以下提交消息进行了测试:
This commit message will run the job
This commit message [maven-scm] will run the job
[maven-scm] This commit message will NOT run the job
FYI GitLab文档指定rules
优于only/except
,因此最好坚持使用rules: if
。参见onlyexcept-basic。