I am trying to implement SignalR using SwiftR framework available here. The framework is integrated successfully into the iPad App. However, when i checkin the code into my private repository on GitHub, the greenhouse CI kicks in and the build fails. The CI is unable to find the SwiftR references.
Error1: use of undeclared type 'Hub'
Code: var hub:Hub! (problem statement in BOLD)
Error2: 'SignalR' is unavailable: cannot find Swift declaration for this class
Code: var hubConnection:SignalR! (problem statement in BOLD)
Error3: 'SwiftR' is unavailable: cannot find Swift declaration for this class
Code: hubConnection = SwiftR.connect(URL) { [weak self] connection in} (problem statement in BOLD)
The code builds fine on my local machine running Xcode 7.3.1 targeted for iOS 8.4 and over. CI environment too is running Xcode 7.3.1. However, CI build fails with the above errors.