Trying to setup the webdriver agent from appium ( https://github.com/appium/WebDriverAgent.git ). I've:
- Cloned Webdriver agent repo ( https://github.com/appium/WebDriverAgent.git )
- Opened my terminal
- Navigated inside the Webdriver agent folder
- Executed
./Scripts/bootstrap.sh
in terminal
Build failed message appears saying "Task failed with exit code 1" . Error message i get in terminal is shown below:
Fetching dependencies
*** Checking out YYCache at "1.1.0"
*** Checking out CocoaAsyncSocket at "7.6.4"
*** xcodebuild output can be found in /var/folders/h5/2mqcmnb15y1g476q57tqt8km0000gp/T/carthage-xcodebuild.a5JJLX.log
*** Downloading CocoaAsyncSocket.framework binary at "Version 7.6.4"
*** Building scheme "YYCache tvOS" in YYCache.xcodeproj
Build Failed
Task failed with exit code 1:
/usr/bin/xcrun lipo -create /Users/cbb01/Library/Caches/org.carthage.CarthageKit/DerivedData/12.0_12A8169g/YYCache/1.1.0/Build/Intermediates.noindex/ArchiveIntermediates/YYCache\ tvOS/IntermediateBuildFilesPath/UninstalledProducts/appletvos/YYCache.framework/YYCache /Users/cbb01/Library/Caches/org.carthage.CarthageKit/DerivedData/12.0_12A8169g/YYCache/1.1.0/Build/Products/Release-appletvsimulator/YYCache.framework/YYCache -output /Users/cbb01/workspace/WebDriverAgent/Carthage/Build/tvOS/YYCache.framework/YYCache
This usually indicates that project itself failed to compile. Please check the xcodebuild log for more details: /var/folders/h5/2mqcmnb15y1g476q57tqt8km0000gp/T/carthage-xcodebuild.a5JJLX.log
I've also tried executing the following but get similar error:
carthage update --no-use-binaries --platform iOS
What could be causing the issue? Has anyone encountered this before?