Add Travis and podspec

This commit is contained in:
Louis D'hauwe 2018-04-02 20:28:11 +02:00
parent 5f83cb5b33
commit 94f45efde8
2 changed files with 63 additions and 0 deletions

49
.travis.yml Executable file
View File

@ -0,0 +1,49 @@
language: objective-c
osx_image: xcode9.1
branches:
only:
- master
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=HueKit.xcworkspace
- IOS_FRAMEWORK_SCHEME="HueKit"
- EXAMPLE_SCHEME="Example"
matrix:
- DESTINATION="OS=10.0,name=iPhone 7" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="NO" BUILD_EXAMPLE="YES" CODE_COV="NO"
- DESTINATION="OS=11.1,name=iPad Pro (9.7-inch)" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="NO" BUILD_EXAMPLE="YES" CODE_COV="NO"
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
# Build Framework in Debug and Run Tests if specified
- if [ $RUN_TESTS == "YES" ]; then
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty;
else
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty;
fi
# Build Framework in Release and Run Tests if specified
- if [ $RUN_TESTS == "YES" ]; then
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty;
else
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty;
fi
# Build Example in Debug if specified
- if [ $BUILD_EXAMPLE == "YES" ]; then
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty;
fi
# Build and report code coverage if specified
- if [ $CODE_COV == "YES" ]; then
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=YES ENABLE_TESTABILITY=YES -enableCodeCoverage YES test;
fi
after_success:
- bash <(curl -s https://codecov.io/bash)

14
HueKit.podspec Executable file
View File

@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = 'HueKit'
s.version = '1.0.0'
s.license = 'MIT'
s.summary = 'A UI framework for iOS that provides components and utilities for building color pickers.'
s.homepage = 'https://github.com/louisdh/huekit'
s.social_media_url = 'http://twitter.com/LouisDhauwe'
s.authors = { 'Louis D\'hauwe' => 'louisdhauwe@silverfox.be' }
s.source = { :git => 'https://github.com/louisdh/huekit.git', :tag => s.version }
s.ios.deployment_target = '10.0'
s.source_files = 'HueKit/**/*.swift'
end