作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只想在我的 repo 被标记为某些特定的发布标签时运行我的构建管道。我可以从 CODEBUILD_WEBHOOK_TRIGGER 环境变量中获取标签值,并且我可以在我的 BUILD 阶段使用一些 bash kung fu 有条件地执行代码:
build:
commands:
- echo ${CODEBUILD_WEBHOOK_TRIGGER##*/}
- |
if expr "${CODEBUILD_WEBHOOK_TRIGGER}" : '^tag/30' >/dev/null; then
git add *
git commit -am "System commit"
git push
git tag ${CODEBUILD_WEBHOOK_TRIGGER##*/}
git push origin ${CODEBUILD_WEBHOOK_TRIGGER##*/}
echo Pushed the repo
fi
最佳答案
使用 aws-cli 命令停止构建,使用提供的 CodeBuild 环境变量 ${CODEBUILD_BUILD_ID} 对我有用:
- aws codebuild stop-build --id ${CODEBUILD_BUILD_ID}
- |
if expr "${CODEBUILD_WEBHOOK_TRIGGER}" : '^tag/30' >/dev/null; then
. . .
else
aws codebuild stop-build --id ${CODEBUILD_BUILD_ID}
fi
关于continuous-integration - 根据条件提前终止构建规范,特别是在 git 标签上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53805534/
我已经可以在其中输入一些附加文本了mydomain/wiki/Special:UserLogin。我添加了一句话: In order to apply for an account send an m
有人可以解释以下脚本输出背后的逻辑吗? import numpy if(numpy.dtype(numpy.float64) == None): print "Surprise!!!!" 谢谢
是我还是 gmail bulls**t?在 outlook/浏览器上,我的电子邮件是完美的,但在 gmail 上,2 个表之间有一个空间,为什么?!?图片:http://i.imgur.com/srJ
我是一名优秀的程序员,十分优秀!