-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gyjrong
committed
Jan 22, 2017
1 parent
349133a
commit b1fa201
Showing
118 changed files
with
2,874 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,48 @@ | ||
language: swift | ||
osx_image: xcode8 | ||
env: | ||
global: | ||
- LC_CTYPE=en_US.UTF-8 | ||
- LANG=en_US.UTF-8 | ||
- WORKSPACE=DiffuseMenu(Swift).xcodeproj | ||
- IOS_FRAMEWORK_SCHEME="Alamofire iOS" | ||
- IOS_SDK=iphonesimulator10.0 | ||
- EXAMPLE_SCHEME="DiffuseMenu(Swift)" | ||
matrix: | ||
|
||
- DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="YES" | ||
- DESTINATION="OS=9.0,name=iPhone 6" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
- DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" | ||
|
||
before_install: | ||
- gem install cocoapods --pre --no-rdoc --no-ri --no-document --quiet | ||
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; | ||
else | ||
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -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 | ||
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty; | ||
else | ||
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty; | ||
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; | ||
fi | ||
|
||
# Run `pod lib lint` if specified | ||
- if [ $POD_LINT == "YES" ]; then | ||
pod lib lint; | ||
fi | ||
|
||
|
Binary file removed
BIN
-41.5 KB
...odeproj/project.xcworkspace/xcuserdata/gyjrong.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
39 changes: 0 additions & 39 deletions
39
DiffuseMenuDemo(Swift)/DiffuseMenu(Swift)Tests/DiffuseMenu_Swift_Tests.swift
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
DiffuseMenuDemo(Swift)/DiffuseMenu(Swift)UITests/DiffuseMenu_Swift_UITests.swift
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
DiffuseMenuDemo(Swift)/DiffuseMenu(Swift)UITests/Info.plist
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
platform :ios, '8.0' | ||
use_frameworks! | ||
|
||
target 'SDiffuseMenuDemo' do | ||
|
||
pod 'SDiffuseMenu','~> 1.2.1' | ||
|
||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
PODS: | ||
- SDiffuseMenu (1.2.0) | ||
|
||
DEPENDENCIES: | ||
- SDiffuseMenu (~> 1.2.0) | ||
|
||
SPEC CHECKSUMS: | ||
SDiffuseMenu: 3e1afc26344fb821e1a01e2712eb6fdc9b357dbf | ||
|
||
PODFILE CHECKSUM: 668df119f21511fdf768d20b1befa6a3c2099cfa | ||
|
||
COCOAPODS: 1.1.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.