From ecb2c15df2050bba4b7ca2e357564eceb0c43242 Mon Sep 17 00:00:00 2001 From: "(Alfred)" Date: Mon, 22 Jan 2018 15:43:11 +0700 Subject: [PATCH] Remove tvOS (#1) * Remove tvOS support * Remove Travis CI --- .travis.yml | 77 ----------------------------------------- Readme.md | 2 +- RxASDataSources.podspec | 1 - 3 files changed, 1 insertion(+), 79 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d950f34..0000000 --- a/.travis.yml +++ /dev/null @@ -1,77 +0,0 @@ -language: objective-c -osx_image: xcode8 - -git: - submodules: false - -env: - global: - - LC_CTYPE=en_US.UTF-8 - - LANG=en_US.UTF-8 - - WORKSPACE=RxTextureDataSources.xcworkspace - - IOS_FRAMEWORK_SCHEME="RxTextureDataSources-iOS" - - IOS_SDK=iphonesimulator10.2 - - EXAMPLE_SCHEME="Example" - matrix: - - DESTINATION="OS=10.2,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" RELEASE_READY="YES" POD_LINT="YES" - - DESTINATION="OS=9.0,name=iPhone 6s" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" RELEASE_READY="NO" POD_LINT="NO" - - DESTINATION="OS=8.1,name=iPhone 5" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" RELEASE_READY="NO" POD_LINT="NO" - -before_install: - - gem install cocoapods --pre --no-rdoc --no-ri --no-document --quiet - - brew update - - brew outdated carthage || brew upgrade carthage - -before_script: - - sh scripts/bootstrap - -script: - - set -o pipefail - - xcodebuild -version - - xcodebuild -showsdks - - # Build Framework in Debug and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Framework in Release and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Example in Debug if specified - - if [ $BUILD_EXAMPLE == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Run `pod lib lint` if specified - - if [ $POD_LINT == "YES" ]; then - pod lib lint; - fi - -before_deploy: - - carthage build --no-skip-current - - carthage archive RxTextureDataSources - -deploy: - - provider: releases - api_key: - secure: - file: - - RxTextureDataSources.framework.zip - skip_cleanup: true - overwrite: true - on: - repo: RxSwiftCommunity/RxTextureDataSources - tags: true - condition: $RELEASE_READY = YES - - provider: script - script: pod trunk push - on: - tags: true - condition: $RELEASE_READY = YES diff --git a/Readme.md b/Readme.md index ecc55aa..e469f3e 100644 --- a/Readme.md +++ b/Readme.md @@ -49,7 +49,7 @@ $ pod install To integrate RxASDataSources into your Xcode project using Carthage, specify it in your `Cartfile`: ```ogdl -github "dangthaison91/RxASDataSources" +github "RxSwiftCommunity/RxASDataSources" ``` ## Usage diff --git a/RxASDataSources.podspec b/RxASDataSources.podspec index 83ec6e8..ad66dc8 100644 --- a/RxASDataSources.podspec +++ b/RxASDataSources.podspec @@ -9,7 +9,6 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/RxSwiftCommunity/RxASDataSources.git", :tag => s.version.to_s } s.ios.deployment_target = '8.0' - s.tvos.deployment_target = '9.0' # s.pod_target_xcconfig = { "SWIFT_VERSION" => "4.0" } s.requires_arc = true