ci: make `xcodebuild` logs more legible with `xcbeautify` (#2863)

This commit is contained in:
Tommy Nguyen 2023-11-30 13:27:37 +01:00 коммит произвёл GitHub
Родитель d14b918058
Коммит aca8e9378d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,2 @@
---
---

Просмотреть файл

@ -87,6 +87,9 @@ if [[ "$CCACHE_DISABLE" != "1" ]]; then
ccache --zero-stats 1> /dev/null
fi
if ! command -v xcbeautify 1> /dev/null; then
brew install xcbeautify
fi
cd ios
export RCT_NO_LAUNCH_PACKAGER=1
@ -97,7 +100,8 @@ xcodebuild \
-destination "generic/platform=iOS Simulator" \
CODE_SIGNING_ALLOWED=NO \
COMPILER_INDEX_STORE_ENABLE=NO \
"${build_actions[@]}"
"${build_actions[@]}" \
| xcbeautify
if [[ "$CCACHE_DISABLE" != "1" ]]; then
ccache --show-stats --verbose