Is it possible to update Carthage to latest version for the Xcode 8.3.x stack?
From: https://github.com/bitrise-io/bitrise.io/blob/master/system_reports/osx-xcode-8.3.x.log
Because of our framework compiled with a later version our binary gets ignored and currently our bitwise runs are building all dependency every time
Thanks
1 Like
Hi @iamfabiomilano,
You can upgrade the preinstalled carthage version with a Script step (just add the Script step before carthage would be used / before the carthage step):
#!/bin/bash
set -ex
brew upgrade carthage
If you have any questions just let us know!
1 Like
Yep thatโs what I ended up doing, I thought it could have been something to mention for making default but I understand if current stack is fixed like it is unless not strictly needed.
1 Like
Indeed, thatโs the policy we use for the versioned Xcode stacks. Just a note: if you need the latest versions of the tools you can use the Xcode Edge stack where every preinstalled tool is updated every weekend.