我可以在没有cocoapods的项目上构建项目并生成OCLint报告,但是当与cocoapods集成时,项目的构建成功了,但是 OCLint 的构建导致文件出现错误,这些错误出现在cocoapods中并且构建失败。

那么,如何使用OCLint使cocoapods成功构建?

任何帮助,将不胜感激。

最佳答案

以下是我用于为带有OCLint的cocoapods集成项目生成html文件的脚本。

OCLINT_HOME是oclint下载文件夹的路径。我已将文件夹重命名为oclintrelease。

OCLINT_HOME=/Users/Dheeraj/Downloads/oclintrelease
export PATH=$OCLINT_HOME/bin:$PATH

hash oclint &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 "oclint not found, analyzing stopped"
exit 1
fi

cd ${TARGET_TEMP_DIR}

if [ ! -f compile_commands.json ]; then
echo "[*] compile_commands.json not found, possibly clean was performed"
echo "Workspace Path : ${MY_WORKSPACE}"
echo "[*] starting xcodebuild to rebuild the project.."
# clean previous output

if [ -f xcodebuild.log ]; then
rm xcodebuild.log
echo "Oclint Clean performed"
fi

cd ${SRCROOT}

xcodebuild clean

#build xcodebuild.log
xcodebuild ONLY_ACTIVE_ARCH=NO -workspace ${PROJECT_NAME}.xcworkspace -scheme ${PROJECT_NAME} -configuration Debug clean build| tee ${TARGET_TEMP_DIR}/xcodebuild.log
#xcodebuild <options>| tee ${TARGET_TEMP_DIR}/xcodebuild.log

echo "[*] transforming xcodebuild.log into compile_commands.json..."
cd ${TARGET_TEMP_DIR}
#transform it into compile_commands.json
oclint-xcodebuild

fi

echo "[*] starting analyzing"
cd ${TARGET_TEMP_DIR}

oclint-json-compilation-database -e /Users/Dheeraj/Desktop/sampleCocoaPods/Pods/ -v oclint_args "-report-type html -o /Users/Dheeraj/NewHTMLREPORT.html" | sed 's/\(.*\.\m\{1,2\}:[0-9]*:[0-9]*:\)/\1 warning:/'

它将排除所有与Pods相关的文件。

如果您还想包含Pods文件,则将脚本中的最后一行替换为:
oclint-json-compilation-database -v oclint_args "-report-type html -o /Users/Dheeraj/NewHTMLREPORT.html" | sed 's/\(.*\.\m\{1,2\}:[0-9]*:[0-9]*:\)/\1 warning:/'

注意:
  • 请先尝试使用包含cocoapods的简短示例应用程序,一旦为示例应用程序生成了报告,然后将脚本集成到实际应用程序中,因为使用OCLint进行构建会花费大量时间来生成报告。
  • 始终清除应用程序,然后使用OCLint进行构建。

  • Link for reference

    07-26 09:21