Richard B.

Results 94 comments of Richard B.

I think I understand what carthage means by "Valid cache": ```` carthage bootstrap --no-use-binaries --cache-builds --platform iOS *** Checking out SVProgressHUD at "2.2.5" *** xcodebuild output can be found in...

So the aim of the PR adding option `--use-cached-builds` will be to copy `~/Library/Caches/org.carthage.CarthageKit/DerivedData/9.3_9E145/SVProgressHUD/2.2.5/....framework + dSYM` to `$PWD/Carthage/Build/iOS/` instead of running `xcodebuild archive` As I assume that `--cache-builds` do the...

Am I right when I say: > I assume that --cache-builds do the opposite (copy the builded framework + dSYM to ~/Library/Caches/Carthage...) I still like to have the `--use-cached-builds` (e.g....

To sum up: `--cache-build` doesn't use files from `~/Library/Caches/org.carthage.CarthageKit/DerivedData/`, but only compares `.version` files in `$PWD/Carthage/Builds` (https://github.com/Carthage/Carthage/blob/0ec71e1c91948291536f53ec6b54f8ba7a3ea552/Source/CarthageKit/Project.swift#L1016-L1026) When building, the DerivedData path used is generated: https://github.com/Carthage/Carthage/blob/0ec71e1c91948291536f53ec6b54f8ba7a3ea552/Source/CarthageKit/Project.swift#L1067-L1071 As `xcodebuild archive` makes...

Fixed, I was thinking anchor link on "local page" was working

Another point to add, a `carthage bootstrap --cache-builds` (with xcfilelists of Xcode 10) can be added to a run script build phase so that a new dev on the team,...

I've made some progress: ``` /Users/kenji/Library/Developer/Xcode/DerivedData/Carthage-agmunmwqujtmmjhdpfyprbnedsii/Build/Products/Debug/carthage bootstrap --cache-builds *** Checking out SVProgressHUD at "2.2.5" *** xcodebuild output can be found in /var/folders/7v/dfg0p2vj1z58n65d99l2n1lh0000gp/T/carthage-xcodebuild.9F3YK8.log *** Copying from shared cache for SVProgressHUD, skipping...

Just committed on my fork : https://github.com/openium/Carthage/commit/a9ac3dcf21cfbbb72ffe9246cd748705fd0a46f0 Refactored many times to do less possible modifications. I reused the "copyFramework" from binaries to put them in and out of the "shared...

See also issue #291, which manage "testing restarts" xcode does when a test crashes (swift fatalError for example)

same issue about the performance for me : https://github.com/supermarin/xcpretty/pull/293#issuecomment-332332506