CI: Add zsh-based build framework files for macOS

This commit is contained in:
PatTheMav
2023-02-02 22:20:03 +01:00
parent c33fa8bfa2
commit 1cfa06a2aa
31 changed files with 554 additions and 100 deletions

View File

@@ -0,0 +1,7 @@
if (( _loglevel > 1 )) {
xcodebuild ${@}
} else {
local -a xcbeautify_opts=()
if (( _loglevel == 0 )) xcbeautify_opts+=(--quiet)
xcodebuild ${@} 2>&1 | xcbeautify ${xcbeautify_opts}
}