Skip to content
Snippets Groups Projects
Commit b71f8fbd authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Simplify xcodebuild’s output filter regex

parent a307728a
Branches
Tags
No related merge requests found
...@@ -40,7 +40,7 @@ pod install ...@@ -40,7 +40,7 @@ pod install
# xcodebuild is very verbose. We filter its output and tell Bash to fail if any # xcodebuild is very verbose. We filter its output and tell Bash to fail if any
# element of the pipe fails. # element of the pipe fails.
set -o pipefail set -o pipefail
XCODEBUILD_FILTER='^(/.+:[0-9+:[0-9]+:.(error|warning):|fatal|===|\*\*)' XCODEBUILD_FILTER='(^===|^\*\*|\bfatal\b|\berror\b|\bwarning\b|\bfail)'
xcodebuild \ xcodebuild \
-workspace Tests.xcworkspace \ -workspace Tests.xcworkspace \
-scheme AllTests \ -scheme AllTests \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment