Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
/LinkedTabs/LinkedTabs.xcodeproj/project.xcworkspace/xcshareddata/
.DS_Store
# https://github.com/github/gitignore/blob/master/Objective-C.gitignore
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
/LinkedTabs/.DS_Store
*.xcuserdatad
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
/LinkedStoryboards/.DS_Store
/LinkedTabs/Pods/

/LinkedStoryboards/Pods/

.DS_Store
# CocoaPods
Pods/
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: objective-c
before_install:
- gem update cocoapods
env:
- XC_SDK=iphonesimulator7.0
- XC_SDK=iphonesimulator7.1
- XC_SDK=iphonesimulator8.1
install:
- pushd LinkedStoryboards; pod install; popd;
- pushd LinkedTabs; pod install; popd;
script:
- xcodebuild -workspace LinkedStoryboards/LinkedStoryboards.xcworkspace -scheme LinkedStoryboards -sdk $XC_SDK build test | xcpretty -c && exit ${PIPESTATUS[0]}
- xcodebuild -workspace LinkedTabs/LinkedTabs.xcworkspace -scheme LinkedTabs -sdk $XC_SDK build test | xcpretty -c && exit ${PIPESTATUS[0]}
Loading