-
Notifications
You must be signed in to change notification settings - Fork 307
Conversation
Thank you very much! I will look into this 👍 |
The Travis build is failing though, not sure why because I run the same command on my mac and it works 😢 |
@@ -4,5 +4,5 @@ osx_image: xcode7 | |||
script: | |||
- xctool | |||
-project SwiftGif.xcodeproj -scheme SwiftGif | |||
-sdk iphonesimulator build test | |||
-sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6" build test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is the line that is causing Travis to fail. When I run this command on my Mac, the tests still pass, but only after I get the following warning:
[Warning] Tried to install the test host app 'me.arne.SwiftGif' but failed. (3132 ms)
[Info] Preparing test environment failed; will retry 2 more times (0 ms)
[Info] Verified iOS Simulators... (0 ms)
[Info] Shut down iOS Simulator... (0 ms)
[Info] Stopped any existing iOS simulator jobs to get a fresh simulator. (364 ms)
[Info] Reset iOS simulator content and settings at path ...
Travis is failing at the same step: https://travis-ci.org/bahlo/SwiftGif/builds/93796224#L202
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I may have broken something when I moved target around. Didn't notice the warning, thought.
I'll have a look, thanks 😄
I also saw your tweet and I'm curious and happy to hear what kind of application you use this in (if you can disclose). |
I'm using it to render Gif in an iOS extension, I'll put it on Github when it's done! |
Merged in v1.6-beta.1 (soon to be master) thank you so much 👍 |
Hello,
I've added Carthage support for this project I started using. I know it says "Carthage compatible" but it
actually didn't provide a shared Framework scheme. This is the error you'd get if you tried using it:
Here is what I've done:
Hopefully the travis build should still pass. Let me know what you think about this 😄