如何在Xcode Bot中使swiftlint报告错误而不是触发构建脚本错误?

时间:2019-02-19 07:41:41

标签: ios swift xcode xcode-bots swiftlint

我已经将swiftlint作为预集成脚本集成到Xcode bot。

#!/bin/sh

export PATH="/usr/local/bin:$PATH"
export LANG=en_US.UTF-8
cd repo-name
pod install
swiftlint lint

问题在于,如果衬布出现错误,则摘要不会在Errors下显示该错误。相反,它显示为触发器问题和修复脚本的选项。

trigger script error

如何在摘要中显示swiftlint错误和警告?

0 个答案:

没有答案