我有一个基于Travis CI的Objective-C iOS库。我刚刚在我的.travis.yml
文件中启用了静态分析,它发现了一个问题(一个死的存储),但它并没有使Travis的构建失败。以下是我.travis.yml
中的相关行(为了便于阅读而换行):
- set -o pipefail && xcodebuild analyze
-workspace Example/BonMot.xcworkspace
-scheme BonMot-Example
-destination 'name=iPhone 6' ONLY_ACTIVE_ARCH=NO | xcpretty
我需要做什么才能导致此行中的警告无法在Travis CI上构建?您可以在我的项目here上看到相关的拉取请求。
答案 0 :(得分:5)
我能让这个工作的唯一方法是使用详细的方法here
将这两个参数添加到xcodebuild
或scan -x
命令
CLANG_ANALYZER_OUTPUT=plist-html \
CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang"
如果存在clang警告,这将生成HTML文件。所以检查这个文件是否存在。
if [[ -z `find clang -name "*.html"` ]]; then
echo "Static Analyzer found no issues"
else
echo "Static Analyzer found some issues"
exit 123
fi
答案 1 :(得分:1)
我设法找到了一种方法,可以在this blog post的帮助下完成这项工作。以下是示例.travis.yml
文件的相关部分:
language: objective-c
rvm:
- 2.2.4
osx_image: xcode7.3
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
- export PYTHONUSERBASE=~/.local
- easy_install --user scan-build
script:
# use scan-build with --status-bugs to fail the build for static analysis warnings per http://jonboydell.blogspot.ca/2013/02/clang-static-analysis.html
- export PATH="${HOME}/.local/bin:${PATH}" # I forget whether this was necessary. Try omitting it and see what happens!
- set -o pipefail && scan-build --status-bugs xcodebuild analyze -workspace MyWorkspace.xcworkspace -scheme MyScheme -destination 'name=iPhone 6' ONLY_ACTIVE_ARCH=NO | xcpretty
答案 2 :(得分:0)
我认为您要将-Wunused-value
添加到构建设置的其他警告标志部分,并设置"将警告视为错误"是的。