Dangerfile Swift给出文件名

时间:2017-11-24 20:27:02

标签: swift xcode bundle swiftlint

我目前正在将Danger整合到BuddyBuild中,以便为我运行预构建和后期构建。

我想要使用两种不同的Danger文件。

Buddybuild的整合危险的网站说要运行这条线:

bundle exec danger --fail-on-errors=true

有没有办法传入一个给它文件名的参数呢?从我正在阅读的内容来看,这基本上只会找到名为Dangerfile的文件并使用它来运行危险,但我想要两个不同的文件,即Dangerfile-prebuildDangerfile-postbuild

谢谢!

1 个答案:

答案 0 :(得分:1)

很高兴看到你正在使用buddybuild!

您可以运行danger --dangerfile=path来指定要使用的危险文件。在buddybuild的上下文中,这意味着在bundle exec danger --dangerfile=Dangerfile-prebuild中使用buddybuild_prebuild.sh,在bundle exec danger --dangerfile=Dangerfile-postbuild中使用buddybuild_postbuild.sh

如果这有帮助,请告诉我!