CI: Add github-actions renderer options to xcbeautify

This commit is contained in:
PatTheMav
2023-10-27 00:09:40 +02:00
committed by Patrick Heyer
parent f674d17168
commit 40124892cf

View File

@@ -138,7 +138,11 @@ build() {
if (( debug )) {
xcodebuild ${@}
} else {
xcodebuild ${@} 2>&1 | xcbeautify
if [[ ${GITHUB_EVENT_NAME} == push ]] {
xcodebuild ${@} 2>&1 | xcbeautify --renderer terminal
} else {
xcodebuild ${@} 2>&1 | xcbeautify --renderer github-actions
}
}
}