Xcode 11 install via SPM won't compile because of Nimble
Henriquedrdc opened this issue · 4 comments
When I try to install Fakery using Xcode 11 SPM it throws an error when trying to clone Nimble
Is there something we could do or we just have to wait for Nimble to get fixed?
I guess Quick and Nimble need updating to their last versions with Xcode 11 support.
Fakery
is using outdated version of Quick
and Nimble
:
.package(url: "https://github.com/Quick/Quick.git", from: "2.0.0"),
.package(url: "https://github.com/Quick/Nimble.git", from: "8.0.0"),
Quick is now at version 3.1.2
, and Nimble is at 9.0.0
. These latest versions also support iOS according to the SwiftPackageIndex:
Updating these dependancies would probably get this project building for iOS with SPM. Is there any plan to do this work?
Updated Quick and Nimble and setup Github Actions for CI. Everything should work as expected now.
Thank you! I can confirm that this is now working on iOS.