Skip to content

4.7.5

Compare
Choose a tag to compare
@lpusok lpusok released this 09 Aug 09:44
· 5 commits to master since this release
df755f3

What's Changed

Fixed fallback to xcodebuild when xcpretty/xcbeautify log formatter is unavailable.

Before:

Checking log formatter (xcbeautify) version
Failed to install Step dependencies:
  installing log formatter failed:
    failed to run xcbeautify command:
      executing command failed (xcbeautify "--version"):
        exec: "xcbeautify":
          executable file not found in $PATH
Switching to xcodebuild for output tool
Running the tests...
[16:58:43] $ set -o pipefail && xcodebuild "-workspace"[ ... ] | xcbeautify
xcbeautify command failed: executing command failed (xcbeautify): exec: not started
Exit code:  -1

After:

Checking log formatter (xcbeautify) version
Checking log formatter failed: failed to run xcbeautify command: executing command failed (xcbeautify "--version"): exec: "xcbeautify": executable file not found in $PATH
Switching back to xcodebuild log formatter.

Running the tests...
[16:57:02] $ xcodebuild "-workspace" [...]

Full Changelog: 4.7.4...4.7.5