Use Bitrise instead of Travis (#92)
This commit is contained in:
parent
e029225c05
commit
3bede018a9
|
@ -1,3 +0,0 @@
|
|||
language: swift
|
||||
script: ./bin/test
|
||||
osx_image: xcode8
|
|
@ -1,6 +1,6 @@
|
|||
# ![Logo](https://github.com/kaishin/Gifu/raw/master/header.gif)
|
||||
|
||||
[![GitHub release](https://img.shields.io/github/release/kaishin/Gifu.svg?maxAge=2592000)](https://github.com/kaishin/Gifu/releases/latest) [![Travis](https://travis-ci.org/kaishin/Gifu.svg?branch=master)](https://travis-ci.org/kaishin/Gifu) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Join the chat at https://gitter.im/kaishin/gifu](https://badges.gitter.im/kaishin/gifu.svg)](https://gitter.im/kaishin/gifu) ![Swift 3.0.x](https://img.shields.io/badge/Swift-3.0.x-orange.svg) ![platforms](https://img.shields.io/badge/platforms-iOS-lightgrey.svg)
|
||||
[![GitHub release](https://img.shields.io/github/release/kaishin/Gifu.svg?maxAge=2592000)](https://github.com/kaishin/Gifu/releases/latest) ![Bitrise](https://www.bitrise.io/app/a0eae2c9b6aa754c.svg?token=dDlRyPi2aOlZnvbl4kL8Kw&branch=master) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Join the chat at https://gitter.im/kaishin/gifu](https://badges.gitter.im/kaishin/gifu.svg)](https://gitter.im/kaishin/gifu) ![Swift 3.0.x](https://img.shields.io/badge/Swift-3.0.x-orange.svg) ![platforms](https://img.shields.io/badge/platforms-iOS-lightgrey.svg)
|
||||
|
||||
Gifu adds protocol-based, performance-aware animated GIF support to UIKit. (It's also a [prefecture in Japan](https://goo.gl/maps/CCeAc)).
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ public class Animator {
|
|||
var shouldResizeFrames = false
|
||||
|
||||
/// Responsible for loading individual frames and resizing them if necessary.
|
||||
private var frameStore: FrameStore?
|
||||
var frameStore: FrameStore?
|
||||
|
||||
/// Tracks whether the display link is initialized.
|
||||
private var displayLinkInitialized: Bool = false
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>119</string>
|
||||
<string>121</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
|
|
2
bin/test
2
bin/test
|
@ -2,4 +2,4 @@
|
|||
|
||||
set -o pipefail
|
||||
|
||||
xcodebuild test -project Gifu.xcodeproj -scheme Gifu -destination "platform=iOS Simulator,name=iPhone 6,OS=10.0" BUILD_ACTIVE_ARCH=NO | xcpretty -t -c
|
||||
xcodebuild test -project Gifu.xcodeproj -scheme Gifu -destination "platform=iOS Simulator,name=iPhone 6" BUILD_ACTIVE_ARCH=NO | xcpretty -t -c
|
||||
|
|
Loading…
Reference in New Issue